/**
 * Notifal single event landing page styles.
 *
 * Seasonal campaign master template (Back to School and future events).
 *
 * @package Notifal
 * @since   1.4.0
 */

.notifal-event-page {
  --ink-950: #10002b;
  --ink-800: #1a0140;
  --violet-900: #240046;
  --violet-700: #5a189a;
  --violet-600: #7b2cbf;
  --violet-500: #9d4edd;
  --violet-400: #c77dff;
  --lilac-50: #f8ebff;
  --white: #ffffff;
  font-family: "Raleway", sans-serif;
  color: var(--ink-950);
  -webkit-font-smoothing: antialiased;
  /* Keep overflow visible so .nev-funnel position:sticky can stick to the viewport. */
  overflow-x: visible;
  background: #fff;
}

/* Hero */
.notifal-event-page .nev-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink-950);
  color: #fff;
  padding: 72px 24px 80px;
}

.notifal-event-page .nev-hero__noise {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 22px 22px;
}

.notifal-event-page .nev-hero__blob {
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.notifal-event-page .nev-hero__blob--1 {
  width: 28rem;
  height: 28rem;
  left: -10rem;
  top: -10rem;
  background: radial-gradient(circle, #5a189a, transparent 70%);
}

.notifal-event-page .nev-hero__blob--2 {
  width: 26rem;
  height: 26rem;
  right: -8rem;
  top: 2.5rem;
  background: radial-gradient(circle, #7b2cbf, transparent 70%);
}

.notifal-event-page .nev-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.notifal-event-page .nev-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.notifal-event-page .nev-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.notifal-event-page .nev-breadcrumb a:hover {
  color: #fff;
}

.notifal-event-page .nev-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e9d5ff;
}

.notifal-event-page .nev-hero__title {
  margin: 24px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.notifal-event-page .nev-hero__accent {
  display: block;
  color: #d8b4fe;
}

.notifal-event-page .nev-hero__sub {
  margin: 24px auto 0;
  max-width: 40rem;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.notifal-event-page .nev-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.notifal-event-page .nev-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.notifal-event-page .nev-btn--light {
  background: #fff;
  color: var(--ink-950);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.notifal-event-page .nev-btn--light:hover {
  transform: translateY(-2px);
}

.notifal-event-page .nev-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: transparent;
}

.notifal-event-page .nev-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.notifal-event-page .nev-hero__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 40rem;
  margin: 56px auto 0;
}

@media (min-width: 640px) {
  .notifal-event-page .nev-hero__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.notifal-event-page .nev-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px 20px;
  text-align: left;
}

.notifal-event-page .nev-stat__value {
  display: block;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.notifal-event-page .nev-stat__label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Funnel nav — sticks below the fixed site header while sections scroll. */
.notifal-event-page .nev-funnel {
  position: sticky;
  top: var(--site-header-height, 68px);
  z-index: 40;
  border-bottom: 1px solid rgba(36, 0, 70, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Admin bar pushes the sticky funnel down so it stays clear of both bars. */
.admin-bar .notifal-event-page .nev-funnel {
  top: calc(var(--site-header-height, 68px) + 32px);
}

@media screen and (max-width: 782px) {
  .admin-bar .notifal-event-page .nev-funnel {
    top: calc(var(--site-header-height, 68px) + 46px);
  }
}

.notifal-event-page .nev-funnel__inner {
  display: flex;
  gap: 0;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.notifal-event-page .nev-funnel__inner::-webkit-scrollbar {
  display: none;
}

.notifal-event-page .nev-funnel__group {
  flex: 0 0 auto;
  padding: 12px 24px 12px 0;
}

.notifal-event-page .nev-funnel__label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(16, 0, 43, 0.4);
}

.notifal-event-page .nev-funnel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.notifal-event-page .nev-funnel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.notifal-event-page .nev-funnel__chip {
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid rgba(36, 0, 70, 0.1);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(16, 0, 43, 0.7);
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.notifal-event-page .nev-funnel__chip:hover {
  border-color: rgba(123, 44, 191, 0.4);
  background: var(--lilac-50);
  color: var(--violet-700);
}

.notifal-event-page .nev-funnel__divider {
  width: 1px;
  align-self: stretch;
  margin: 12px 4px;
  background: rgba(36, 0, 70, 0.1);
  flex: 0 0 auto;
}

/* Campaign sections */
.notifal-event-page .nev-section {
  /* Clear fixed header + sticky funnel when jumping via funnel chips. */
  scroll-margin-top: calc(var(--site-header-height, 68px) + 88px);
  background: #fff;
}

.notifal-event-page .nev-section--tinted {
  background: rgba(248, 235, 255, 0.55);
}

.notifal-event-page .nev-section__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 24px;
}

.notifal-event-page .nev-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 1024px) {
  .notifal-event-page .nev-section__grid {
    grid-template-columns: 5fr 7fr;
    gap: 56px;
    align-items: start;
  }

  .notifal-event-page .nev-section__copy {
    position: sticky;
    /* Sit below fixed header + sticky funnel while the section scrolls. */
    top: calc(var(--site-header-height, 68px) + 96px);
  }
}

.notifal-event-page .nev-section__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.notifal-event-page .nev-section__index {
  font-size: 12px;
  font-weight: 800;
  color: rgba(36, 0, 70, 0.3);
}

.notifal-event-page .nev-section__kicker {
  border-radius: 999px;
  background: rgba(123, 44, 191, 0.1);
  color: var(--violet-600);
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.notifal-event-page .nev-section__title {
  margin: 16px 0 0;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink-950);
}

.notifal-event-page .nev-section__text {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(16, 0, 43, 0.6);
}

/* Large preview slides with a peek of the next template. */
.notifal-event-page .nev-preview-carousel {
  position: relative;
}

.notifal-event-page .nev-preview-carousel__viewport {
  /* Size slides against this box, not the growing flex track. */
  container-type: inline-size;
  container-name: nev-carousel;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.notifal-event-page .nev-preview-carousel__viewport.is-dragging {
  cursor: grabbing;
}

.notifal-event-page .nev-preview-carousel__viewport.is-dragging a {
  pointer-events: none;
}

.notifal-event-page .nev-preview-carousel__track {
  display: flex;
  gap: 16px;
  width: max-content;
  max-width: none;
  transition: transform 0.35s ease;
  will-change: transform;
}

.notifal-event-page .nev-preview-slide {
  /*
   * Use container query width (cqw) so 100% is the viewport width.
   * Percentage flex-basis against the track grows with every added slide
   * and makes the preview boxes explode in size.
   */
  flex: 0 0 calc(100cqw - 56px);
  width: calc(100cqw - 56px);
  min-width: calc(100cqw - 56px);
  max-width: calc(100cqw - 56px);
  box-sizing: border-box;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.notifal-event-page .nev-preview-slide:not(.is-active) {
  opacity: 0.55;
}

.notifal-event-page .nev-preview-slide.is-active {
  opacity: 1;
}

@media (max-width: 640px) {
  .notifal-event-page .nev-preview-slide {
    flex-basis: calc(100cqw - 40px);
    width: calc(100cqw - 40px);
    min-width: calc(100cqw - 40px);
    max-width: calc(100cqw - 40px);
  }
}

.notifal-event-page .nev-preview-carousel__btn {
  position: absolute;
  top: 42%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(36, 0, 70, 0.15);
  background: #fff;
  color: rgba(36, 0, 70, 0.65);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(16, 0, 43, 0.08);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.notifal-event-page .nev-preview-carousel__btn:hover {
  border-color: var(--violet-600);
  color: var(--violet-600);
}

.notifal-event-page .nev-preview-carousel__btn--prev {
  left: -8px;
}

.notifal-event-page .nev-preview-carousel__btn--next {
  right: -8px;
}

.notifal-event-page .nev-preview-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.notifal-event-page .nev-preview-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(123, 44, 191, 0.25);
  cursor: pointer;
}

.notifal-event-page .nev-preview-carousel__dot.is-active {
  background: var(--violet-600);
}

/* Final CTA */
.notifal-event-page .nev-cta {
  position: relative;
  overflow: hidden;
  background: var(--ink-950);
  padding: 80px 24px;
  text-align: center;
  color: #fff;
}

.notifal-event-page .nev-cta__glow {
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40rem;
  height: 26rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(60px);
  background: radial-gradient(circle, #5a189a, transparent 70%);
}

.notifal-event-page .nev-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
}

.notifal-event-page .nev-cta__title {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.notifal-event-page .nev-cta__sub {
  margin: 16px auto 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.notifal-event-page .nev-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.notifal-event-page .nev-related {
  padding: 48px 24px 72px;
  background: #fff;
}

.notifal-event-page .nev-related__inner {
  max-width: 1160px;
  margin: 0 auto;
}

.notifal-event-page .nev-related__title {
  margin: 0 0 16px;
  font-size: 1.25rem;
  font-weight: 800;
}

.notifal-event-page .nev-related__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.notifal-event-page .nev-related__chip {
  border-radius: 999px;
  border: 1px solid rgba(36, 0, 70, 0.12);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--violet-700);
  text-decoration: none;
}

.notifal-event-page .nev-related__chip:hover {
  background: var(--lilac-50);
}

@media (max-width: 768px) {
  .notifal-event-page .nev-preview-carousel__btn--prev {
    left: 4px;
  }

  .notifal-event-page .nev-preview-carousel__btn--next {
    right: 4px;
  }

  .notifal-event-page .nev-section__inner {
    padding: 48px 20px;
  }
}

/* Examples-style template preview box (one large slide) */
.notifal-event-page .nex-preview {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #1c0038, #10002b);
  padding: 8px;
  box-shadow: 0 40px 80px -30px rgba(16, 0, 43, 0.6);
  margin: 0;
}

.notifal-event-page .nex-preview__frame {
  border-radius: 20px;
  background: rgba(248, 235, 255, 0.04);
  padding: 20px 24px;
}

.notifal-event-page .nex-preview__chrome {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.notifal-event-page .nex-preview__dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.notifal-event-page .nex-preview__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.notifal-event-page .nex-preview__dots span:nth-child(1) { background: rgba(255, 107, 107, 0.7); }
.notifal-event-page .nex-preview__dots span:nth-child(2) { background: rgba(255, 209, 102, 0.7); }
.notifal-event-page .nex-preview__dots span:nth-child(3) { background: rgba(123, 216, 143, 0.7); }

.notifal-event-page .nex-preview__badge {
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.notifal-event-page .nex-preview__stage--layout {
  margin-top: 20px;
}

.notifal-event-page .nex-preview .preview-area {
  width: 100%;
  min-width: 0;
}

.notifal-event-page .nex-preview .preview-area .image-holder {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 3 / 2;
  border-radius: 14px;
  overflow: hidden;
  background: #b8b8b8;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
}

.notifal-event-page .nex-preview .preview-area .image-holder img {
  transition: opacity 0.3s ease;
}

.notifal-event-page .nex-preview .preview-area .image-holder .notifal-layout-holder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.notifal-event-page .nex-preview .preview-area .image-holder .notifal-layout-site {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: linear-gradient(135deg, #eae6f2 0%, #eee8f0 100%);
  overflow: hidden;
}

.notifal-event-page .nex-preview .preview-area .image-holder .notifal-layout-cover-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  padding: 8px 10px 10px;
  pointer-events: none;
  background: linear-gradient(135deg, #e8e4f4 0%, #f0e8f0 50%, #f4e8ee 100%);
  box-sizing: border-box;
}

.notifal-event-page .nex-preview .preview-area .image-holder .notifal-layout-cover-site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-shrink: 0;
  padding: 4px 0;
}

.notifal-event-page .nex-preview .preview-area .image-holder .notifal-layout-cover-logo {
  display: block;
  width: 28px;
  height: 10px;
  border-radius: 3px;
  background: rgba(120, 100, 140, 0.35);
  flex-shrink: 0;
}

.notifal-event-page .nex-preview .preview-area .image-holder .notifal-layout-cover-nav-links {
  display: block;
  width: 52%;
  max-width: 120px;
  height: 6px;
  border-radius: 3px;
  background: rgba(120, 100, 140, 0.28);
}

.notifal-event-page .nex-preview .preview-area .image-holder .notifal-layout-cover-hero {
  flex-shrink: 0;
  height: 14px;
  width: 100%;
  border-radius: 4px;
  background: rgba(120, 100, 140, 0.22);
}

.notifal-event-page .nex-preview .preview-area .image-holder .notifal-layout-cover-main {
  display: flex;
  gap: 8px;
  flex: 1;
  min-height: 0;
}

.notifal-event-page .nex-preview .preview-area .image-holder .notifal-layout-cover-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: flex-start;
}

.notifal-event-page .nex-preview .preview-area .image-holder .notifal-layout-cover-heading {
  height: 10px;
  width: 65%;
  border-radius: 3px;
  background: rgba(90, 75, 110, 0.42);
  flex-shrink: 0;
}

.notifal-event-page .nex-preview .preview-area .image-holder .notifal-layout-cover-line {
  height: 5px;
  min-height: 5px;
  border-radius: 2px;
  background: rgba(90, 75, 110, 0.34);
  width: 100%;
  flex-shrink: 0;
  display: block;
}

.notifal-event-page .nex-preview .preview-area .image-holder .notifal-layout-cover-line--short {
  width: 82%;
}

.notifal-event-page .nex-preview .preview-area .image-holder .notifal-layout-cover-body {
  flex: 1;
  min-height: 28px;
  border-radius: 4px;
  background: rgba(90, 75, 110, 0.2);
}

.notifal-event-page .nex-preview .preview-area .image-holder .notifal-layout-cover-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 42px;
  border-radius: 4px;
  background: rgba(90, 75, 110, 0.28);
  flex-shrink: 0;
}

.notifal-event-page .nex-preview .preview-area .image-holder .notifal-layout-cover-cta {
  height: 8px;
  width: 45%;
  border-radius: 4px;
  background: rgba(90, 75, 110, 0.32);
  flex-shrink: 0;
  margin-top: 2px;
}

.notifal-event-page .nex-preview .preview-area .image-holder .notifal-layout-cover-sidebar {
  flex: 0 0 28%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.notifal-event-page .nex-preview .preview-area .image-holder .notifal-layout-cover-card {
  flex: 1;
  min-height: 24px;
  border-radius: 4px;
  background: rgba(90, 75, 110, 0.32);
}

.notifal-event-page .nex-preview .preview-area .image-holder .notifal-layout-cover-card:last-child {
  flex: 0.6;
}

.notifal-event-page .nex-preview .preview-area .image-holder .notifal-layout-cover-footer {
  flex-shrink: 0;
  height: 6px;
  width: 70%;
  margin-top: 2px;
  border-radius: 2px;
  background: rgba(100, 90, 120, 0.2);
}

.notifal-event-page .nex-preview .preview-area .image-holder .notifal-layout-feature {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px 10px;
  box-sizing: border-box;
}

.notifal-event-page .nex-preview .preview-area .image-holder.notifal-layout--popup .notifal-layout-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.notifal-event-page .nex-preview .preview-area .image-holder.notifal-layout--popup .notifal-layout-feature img {
  max-width: 78%;
  max-height: 78%;
  width: auto;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.notifal-event-page .nex-preview .preview-area .image-holder.notifal-layout--floating-bar .notifal-layout-feature {
  align-items: flex-start;
  justify-content: center;
  padding: 0 0 10px 0;
}

.notifal-event-page .nex-preview .preview-area .image-holder.notifal-layout--floating-bar .notifal-layout-feature img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 38%;
  min-height: 28px;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
}

.notifal-event-page .nex-preview .preview-area .image-holder.notifal-layout--floating-box .notifal-layout-feature {
  align-items: flex-end;
  justify-content: flex-start;
}

.notifal-event-page .nex-preview .preview-area .image-holder.notifal-layout--floating-box .notifal-layout-feature img {
  max-width: 60%;
  max-height: 68%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: bottom left;
}

.notifal-event-page .nex-preview .preview-area .image-holder[data-device="mobile"] {
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 9 / 19.5;
  min-height: 360px;
  border-radius: 22px;
  border: 6px solid #1a1a1a;
  box-shadow: 0 0 0 1px #333, 0 16px 32px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.notifal-event-page .nex-preview .preview-area .image-holder[data-device="mobile"] .notifal-layout-holder,
.notifal-event-page .nex-preview .preview-area .image-holder[data-device="mobile"] .notifal-layout-site {
  min-height: 100%;
}

.notifal-event-page .nex-preview .preview-area .image-holder[data-device="mobile"].notifal-layout--popup .notifal-layout-feature img {
  max-width: 85%;
  max-height: 72%;
}

.notifal-event-page .nex-preview .preview-area .image-holder[data-device="mobile"].notifal-layout--floating-bar .notifal-layout-feature img {
  width: auto;
  max-width: 100%;
  max-height: 36%;
  object-fit: contain;
  object-position: top center;
}

.notifal-event-page .nex-preview .preview-area .image-holder[data-device="mobile"].notifal-layout--floating-box .notifal-layout-feature img {
  max-width: 70%;
  max-height: 55%;
}

.notifal-event-page .nex-preview__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  padding-top: 18px;
}

.notifal-event-page .nex-preview__devices {
  display: flex;
  gap: 6px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
}

.notifal-event-page .nex-preview__device {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 100px;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, color 0.15s ease;
}

.notifal-event-page .nex-preview__device.is-active {
  background: #fff;
  color: var(--ink-800);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.notifal-event-page .nex-preview__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--violet-500), var(--violet-400));
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  box-shadow: 0 10px 24px rgba(123, 44, 191, 0.3);
  transition: filter 0.2s ease;
}

.notifal-event-page .nex-preview__cta:hover {
  filter: brightness(1.08);
}
