/* Eventkreuzfahrten V2 — editorial sales page, isolated from legacy CSS. */

body.event-v2 {
  --event-white: #fff;
  --event-copy: #514e47;
  --event-mist: #e5ecec;
  background: var(--paper);
  color: var(--ink);
}

.event-v2 main {
  overflow: clip;
}

.event-v2 header .logo img {
  width: auto;
  height: 44px;
}

.event-v2 .container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.event-v2 .container--narrow {
  width: min(850px, calc(100% - 48px));
}

.event-v2 section[id] {
  scroll-margin-top: 126px;
}

.event-v2 h1,
.event-v2 h2,
.event-v2 h3 {
  text-wrap: balance;
}

.event-v2 p {
  text-wrap: pretty;
}

.event-v2 .btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  text-align: center;
}

.event-v2 .text-link {
  display: inline-flex;
  width: fit-content;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.event-v2 .text-link:hover {
  color: var(--gold-text);
}

.event-v2 .text-link--light {
  color: var(--paper);
}

/* Hero */
.event-hero {
  padding: clamp(42px, 4.5vw, 62px) 0 66px;
  background:
    radial-gradient(circle at 12% 0, rgba(201, 168, 76, .15), transparent 34%),
    linear-gradient(120deg, var(--paper) 0 69%, var(--event-mist) 69% 100%);
}

.event-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, .92fr);
  gap: clamp(42px, 5vw, 68px);
  align-items: center;
}

.event-breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 23px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.event-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.event-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(47px, 5.5vw, 72px);
  font-weight: 500;
  line-height: .99;
  letter-spacing: -.035em;
}

.event-hero h1 em {
  display: block;
  max-width: 690px;
  margin-top: 12px;
  color: var(--gold-text);
  font-size: .52em;
  font-weight: 500;
  line-height: 1.12;
}

.event-hero__lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--event-copy);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.57;
}

.event-quick {
  max-width: 700px;
  margin-top: 25px;
  padding: 19px 22px;
  background: var(--event-white);
  border-left: 3px solid var(--gold);
  box-shadow: 0 14px 38px rgba(26, 26, 26, .06);
}

.event-quick strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: 19px;
}

.event-quick p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.64;
}

.event-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 27px;
}

.event-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 31px 0 0;
  padding: 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.event-proof li {
  padding: 14px 12px 14px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.event-proof li + li {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.event-proof a {
  color: inherit;
  text-decoration: none;
}

.event-hero__figure {
  position: relative;
  margin: 0;
}

.event-hero__figure::before {
  content: "";
  position: absolute;
  inset: -15px 18px 19px -15px;
  border: 1px solid rgba(201, 168, 76, .58);
}

.event-hero__figure img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 53% center;
  background: var(--event-mist);
}

.event-hero__figure figcaption {
  position: relative;
  width: calc(100% - 30px);
  margin: -29px 0 0 30px;
  padding: 14px 18px;
  background: var(--ink);
  color: rgba(245, 243, 239, .78);
  font-size: 12px;
  line-height: 1.5;
}

/* Sticky local navigation */
.event-subnav {
  position: sticky;
  top: 69px;
  z-index: 30;
  background: rgba(245, 243, 239, .95);
  border-block: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.event-subnav__inner {
  display: flex;
  gap: 27px;
  overflow-x: auto;
  padding-block: 14px;
  scrollbar-width: none;
}

.event-subnav__inner::-webkit-scrollbar {
  display: none;
}

.event-subnav a {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}

/* Shared sections */
.event-section {
  padding: clamp(74px, 9vw, 116px) 0;
}

.event-section--white {
  background: var(--event-white);
}

.event-section--paper {
  background: var(--paper);
}

.event-section__head {
  max-width: 850px;
  margin-bottom: 43px;
}

.event-section__head--center {
  margin-inline: auto;
  text-align: center;
}

.event-section__head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(35px, 4.7vw, 54px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.022em;
}

.event-section__head p {
  max-width: 760px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.event-section__head--center p {
  margin-inline: auto;
}

/* Event formats */
.event-format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event-format {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
}

.event-format--wide {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
  grid-column: 1 / -1;
}

.event-format__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--event-mist);
}

.event-format--wide .event-format__media {
  min-height: 410px;
  aspect-ratio: auto;
}

.event-format__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.event-format--wide .event-format__media img {
  object-position: center 58%;
}

.event-format:nth-child(3) .event-format__media img {
  object-position: center 40%;
}

.event-format:hover .event-format__media img {
  transform: scale(1.025);
}

.event-format__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 29px 27px 31px;
}

.event-format--wide .event-format__body {
  justify-content: center;
  padding: clamp(34px, 4vw, 55px);
  background: var(--ink);
  color: var(--paper);
}

.event-format__body > span {
  color: var(--gold-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.event-format--wide .event-format__body > span {
  color: var(--gold);
}

.event-format h3 {
  margin: 9px 0 13px;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.12;
}

.event-format--wide h3 {
  font-size: clamp(32px, 4vw, 44px);
}

.event-format p,
.event-format small {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.event-format--wide p,
.event-format--wide small {
  color: rgba(245, 243, 239, .73);
}

.event-format small {
  display: block;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid rgba(245, 243, 239, .17);
}

.event-context {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(35px, 6vw, 72px);
  align-items: start;
  margin-top: 54px;
  padding-top: 49px;
  border-top: 1px solid var(--line);
}

.event-context__intro h3 {
  margin: 9px 0 14px;
  font-family: var(--display);
  font-size: clamp(29px, 3.5vw, 40px);
  font-weight: 500;
  line-height: 1.12;
}

.event-context__intro p,
.event-context__facts p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.event-context__facts {
  border-top: 1px solid var(--line);
}

.event-context__facts article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 25px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.event-context__facts h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.25;
}

/* Current status */
.event-status {
  padding: clamp(76px, 9vw, 112px) 0;
  background:
    radial-gradient(circle at 90% 15%, rgba(201, 168, 76, .13), transparent 31%),
    var(--ink);
  color: var(--paper);
}

.event-section__head--light p {
  color: rgba(245, 243, 239, .68);
}

.event-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.event-status-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 31px 28px;
  background: rgba(245, 243, 239, .06);
  border: 1px solid rgba(245, 243, 239, .17);
  border-top: 3px solid rgba(201, 168, 76, .8);
}

.event-status-card__label {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.event-status-card h3 {
  margin: 13px 0 13px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.12;
}

.event-status-card p {
  margin: 0;
  color: rgba(245, 243, 239, .7);
  font-size: 14px;
  line-height: 1.7;
}

.event-status-card__actions {
  display: grid;
  gap: 17px;
  align-items: start;
  margin-top: auto;
  padding-top: 26px;
}

.event-status-card__actions .btn {
  width: 100%;
  padding-inline: 14px;
  font-size: 12px;
}

.event-alert {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  align-items: center;
  margin-top: 28px;
  padding: 31px 34px;
  background: var(--paper);
  color: var(--ink);
}

.event-alert h3 {
  margin: 8px 0 8px;
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 35px);
  font-weight: 500;
  line-height: 1.13;
}

.event-alert p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Comparison */
.event-matrix {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.event-matrix table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--event-white);
}

.event-matrix caption {
  padding: 16px 20px;
  color: var(--muted);
  font-size: 12px;
  text-align: left;
}

.event-matrix th,
.event-matrix td {
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.event-matrix thead th {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
}

.event-matrix tbody th {
  color: var(--ink);
  font-weight: 700;
}

.event-price-note {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
  gap: 35px;
  margin-top: 24px;
  padding: 28px 30px;
  background: var(--event-white);
  border-left: 3px solid var(--gold);
}

.event-price-note h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}

.event-price-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Included and checklist */
.event-included-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr);
  gap: clamp(45px, 7vw, 88px);
  align-items: start;
}

.event-answer-list {
  border-top: 1px solid var(--line);
}

.event-answer-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.event-answer-list article > span {
  padding-top: 3px;
  color: var(--gold-text);
  font-family: var(--display);
  font-size: 16px;
}

.event-answer-list h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
}

.event-answer-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.event-checklist {
  position: sticky;
  top: 125px;
  padding: 35px 31px;
  background: var(--ink);
  color: var(--paper);
}

.event-checklist ol {
  display: grid;
  gap: 0;
  margin: 23px 0 28px;
  padding: 0;
  list-style: none;
  counter-reset: check;
}

.event-checklist li {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 9px;
  padding: 12px 0;
  border-top: 1px solid rgba(245, 243, 239, .15);
  color: rgba(245, 243, 239, .78);
  font-size: 13px;
  line-height: 1.52;
  counter-increment: check;
}

.event-checklist li::before {
  content: counter(check, decimal-leading-zero);
  color: var(--gold);
  font-family: var(--display);
}

.event-checklist .btn {
  width: 100%;
}

/* Editorial image story */
.event-story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  background: var(--paper-deep);
}

.event-story__media {
  min-height: 520px;
  overflow: hidden;
}

.event-story__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.event-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 7vw, 94px);
}

.event-story h2 {
  margin: 10px 0 20px;
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 500;
  line-height: 1.08;
}

.event-story p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.event-story .text-link {
  margin-top: 8px;
}

/* Advice */
.event-advice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event-advice-grid article {
  padding: 31px 28px;
  background: var(--event-white);
  border: 1px solid var(--line);
}

.event-advice-grid span {
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--display);
}

.event-advice-grid h3 {
  margin: 18px 0 10px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
}

.event-advice-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.event-people {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
  margin-top: 47px;
  padding: 40px;
  background: var(--event-white);
  border: 1px solid var(--line);
}

.event-people__portrait {
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
}

.event-people__portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  background: var(--paper-deep);
}

.event-people h3 {
  margin: 10px 0 15px;
  font-family: var(--display);
  font-size: clamp(29px, 4vw, 43px);
  font-weight: 500;
  line-height: 1.1;
}

.event-people p {
  max-width: 630px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.event-people__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

/* FAQ */
.event-v2 .faq-list {
  border-top: 1px solid var(--line);
}

.event-v2 .faq-item {
  border-bottom: 1px solid var(--line);
}

.event-v2 .faq-q {
  position: relative;
  padding: 23px 52px 23px 0;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

.event-v2 .faq-q::-webkit-details-marker {
  display: none;
}

.event-v2 .faq-icon {
  position: absolute;
  top: 21px;
  right: 4px;
  color: var(--gold-text);
  font-family: var(--body);
  font-size: 23px;
  transition: transform .2s ease;
}

.event-v2 .faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.event-v2 .faq-a {
  padding: 0 52px 23px 0;
}

.event-v2 .faq-a p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.event-source {
  margin: 31px 0 0;
  padding-top: 21px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.event-source a {
  color: var(--ink);
}

/* Final CTA */
.event-final {
  padding: clamp(78px, 10vw, 124px) 0;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.event-final h2 {
  margin: 11px 0 0;
  font-family: var(--display);
  font-size: clamp(39px, 6vw, 60px);
  font-weight: 500;
  line-height: 1.06;
}

.event-final p {
  max-width: 690px;
  margin: 19px auto 0;
  color: rgba(245, 243, 239, .7);
  font-size: 17px;
  line-height: 1.7;
}

.event-final__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
  margin-top: 29px;
}

.event-v2 footer {
  margin-top: 0;
}

.event-mobile-bar {
  display: none;
}

@media (max-width: 1020px) {
  .event-hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
    gap: 48px;
  }

  .event-format-grid,
  .event-status-grid,
  .event-advice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-format--wide,
  .event-status-card:last-child,
  .event-advice-grid article:last-child {
    grid-column: 1 / -1;
  }

  .event-status-card:last-child {
    min-height: 280px;
  }
}

@media (max-width: 860px) {
  .event-v2 header .logo img {
    height: 39px;
  }

  .event-subnav {
    top: 69px;
  }

  .event-hero__grid,
  .event-included-layout,
  .event-context,
  .event-people,
  .event-story {
    grid-template-columns: 1fr;
  }

  .event-hero__copy {
    max-width: 720px;
  }

  .event-hero__figure {
    width: min(680px, 100%);
  }

  .event-hero__figure img {
    aspect-ratio: 16 / 10;
    object-position: center 57%;
  }

  .event-checklist {
    position: static;
  }

  .event-story__media {
    min-height: 390px;
  }
}

@media (max-width: 680px) {
  body.event-v2 {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  .event-v2 .container,
  .event-v2 .container--narrow {
    width: min(100% - 32px, 1160px);
  }

  .event-hero {
    padding: 30px 0 49px;
    background: var(--paper);
  }

  .event-breadcrumb {
    margin-bottom: 21px;
  }

  .event-hero h1 {
    font-size: clamp(39px, 11.3vw, 49px);
    line-height: 1;
  }

  .event-hero h1 em {
    margin-top: 9px;
    font-size: .57em;
  }

  .event-hero__lead {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.58;
  }

  .event-quick {
    margin-top: 19px;
    padding: 16px 17px;
  }

  .event-quick strong {
    font-size: 17px;
  }

  .event-quick p {
    font-size: 13px;
  }

  .event-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .event-hero__actions .btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 10px;
    font-size: 12px;
  }

  .event-proof {
    grid-template-columns: 1fr;
    margin-top: 21px;
  }

  .event-proof li,
  .event-proof li + li {
    padding: 9px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .event-proof li:first-child {
    border-top: 0;
  }

  .event-hero__figure {
    margin-top: 4px;
  }

  .event-hero__figure::before {
    inset: -8px 9px 10px -8px;
  }

  .event-hero__figure img {
    aspect-ratio: 4 / 3;
    object-position: 56% center;
  }

  .event-hero__figure figcaption {
    width: calc(100% - 18px);
    margin: -18px 0 0 18px;
    padding: 12px 14px;
    font-size: 11px;
  }

  .event-subnav__inner {
    gap: 20px;
    padding-block: 12px;
  }

  .event-section,
  .event-status {
    padding-block: 62px;
  }

  .event-section__head {
    margin-bottom: 29px;
  }

  .event-section__head h2 {
    font-size: clamp(32px, 9.4vw, 41px);
  }

  .event-section__head p {
    font-size: 15px;
    line-height: 1.68;
  }

  .event-context {
    gap: 28px;
    margin-top: 39px;
    padding-top: 36px;
  }

  .event-context__facts article {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .event-price-note {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 21px;
  }

  .event-format-grid,
  .event-status-grid,
  .event-advice-grid {
    grid-template-columns: 1fr;
  }

  .event-format,
  .event-format--wide,
  .event-status-card,
  .event-status-card:last-child,
  .event-advice-grid article,
  .event-advice-grid article:last-child {
    display: flex;
    min-height: 0;
    grid-column: auto;
  }

  .event-format__media,
  .event-format--wide .event-format__media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .event-format--wide .event-format__body,
  .event-format__body {
    padding: 25px 22px 27px;
  }

  .event-format h3,
  .event-format--wide h3 {
    font-size: 29px;
  }

  .event-advice-grid article,
  .event-advice-grid article:last-child {
    display: block;
  }

  .event-status-card {
    padding: 27px 23px;
  }

  .event-status-card__actions {
    margin-top: 25px;
  }

  .event-alert {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 27px 23px;
  }

  .event-alert .btn {
    width: 100%;
  }

  .event-matrix {
    margin-right: -16px;
  }

  .event-checklist {
    padding: 30px 24px;
  }

  .event-story__media {
    min-height: 290px;
  }

  .event-story__copy {
    padding: 48px 24px 55px;
  }

  .event-people {
    margin-top: 35px;
    padding: 24px;
  }

  .event-people__actions,
  .event-final__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .event-people__actions .btn,
  .event-final__actions .btn {
    width: 100%;
  }

  .event-v2 .faq-q {
    padding-right: 42px;
    font-size: 18px;
  }

  .event-v2 .faq-a {
    padding-right: 12px;
  }

  .event-mobile-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 8px;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: rgba(26, 26, 26, .97);
    border-top: 1px solid rgba(201, 168, 76, .4);
    backdrop-filter: blur(14px);
  }

  .event-mobile-bar a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    color: var(--paper);
    border: 1px solid rgba(245, 243, 239, .42);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
  }

  .event-mobile-bar a:first-child {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
  }

  .event-mobile-bar a:last-child {
    background: transparent;
    color: var(--paper);
    border-color: rgba(245, 243, 239, .42);
  }

  body:has(.cc-banner--visible) .event-mobile-bar,
  body:has(.cc-modal-overlay--visible) .event-mobile-bar {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .event-format__media img,
  .event-v2 .faq-icon {
    transition: none;
  }
}
