*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

/*
 * Breakpoints
 * CSS custom properties cannot be used inside @media queries, so these are
 * defined here as a single reference point. Update the values below and
 * find/replace the corresponding pixel value throughout the file.
 *
 *   --bp-xs:   389px   →  @media (max-width: 389px)
 *   --bp-sm:   767px   →  @media (max-width: 767px)  /  (min-width: 768px)
 *   --bp-md:  1023px   →  @media (max-width: 1023px) /  (min-width: 1024px)
 *   --bp-lg:  1280px   →  @media (max-width: 1280px)
 */

:root {
  --text-primary: #24253d;
  --text-secondary: #585a69;
  --text-tertiary: #91929e;
  --text-link: #228acd;
  --surface-primary: #ffffff;
  --surface-secondary: #f3f3f6;
  --border-primary: #e4e4e7;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: #f3f3f6;
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
ul {
  list-style: none;
}
img {
  display: block;
}

/* ── Page wrapper ── */
.page {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-height: 100vh;
}

/* ── Header ── */
.header {
  background: var(--surface-primary);
  border-bottom: 1px solid var(--border-primary);
  height: 64px;
  width: 100%;
  flex-shrink: 0;
}
.header .container {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
.logo-menu {
  display: flex;
  gap: 16px;
  align-items: center;
  overflow: clip;
  flex-shrink: 0;
}
.logo {
  flex-shrink: 0;
  width: 159px;
  height: 24px;
}
.logo img {
  display: block;
  width: 100%;
  height: 100%;
}

.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: none;
  background: transparent;
  border-radius: 360px;
  cursor: pointer;
  padding: 0;
}
.menu-btn:hover {
  background: var(--surface-secondary);
}

@media (max-width: 1023px) {
  .header {
    height: 56px;
  }
  .logo-menu {
    gap: 8px;
  }
  .logo {
    width: 119px;
    height: 18px;
  }
  .menu-btn {
    display: flex;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
}
.nav-item {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 8px 12px 8px 16px;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: var(--text-link);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-item:hover {
  opacity: 0.8;
}

.header-tools {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}
.header-tools-inner {
  display: flex;
  gap: 16px;
  align-items: center;
}

.icon-round {
  position: relative;
  border-radius: 360px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.icon-round .icon-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
}
.icon-round .icon-center img {
  position: absolute;
  max-width: none;
  width: 100%;
  height: 100%;
}
.icon-round .circle-img {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.icon-round .icon-img {
  top: 12.5%;
  right: 12.5%;
  bottom: 12.5%;
  left: 12.5%;
}

/* ── Title bar ── */
.title-bar {
  background: var(--surface-primary);
  border-bottom: 1px solid var(--border-primary);
  width: 100%;
  flex-shrink: 0;
}
/* Desktop: 2-col grid — h1 + address-row on left, video-btn centred on right */
.title-bar .container {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 24px;
  row-gap: 8px;
  padding-top: 32px;
  padding-bottom: 32px;
}
.title-h1 {
  grid-column: 1;
  grid-row: 1;
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  color: var(--text-primary);
}
.address-row {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  gap: 8px;
  align-items: center;
}
/* video-btn spans both rows on the right */
.title-bar .container > .video-btn {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}
.address-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* Tablet + mobile (≤1023px): stacked layout matching Figma mobile design */
@media (max-width: 1023px) {
  .title-bar .container {
    grid-template-rows: auto auto auto;
    row-gap: 12px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .title-h1 {
    grid-column: 1 / -1;
    grid-row: 1;
    font-size: 32px;
    line-height: 40px;
  }
  /* Dissolve wrapper — children become direct grid items */
  .address-row {
    display: contents;
  }
  .address-text {
    grid-column: 1 / -1;
    grid-row: 2;
    white-space: normal;
  }
  .directions-link {
    grid-column: 1;
    grid-row: 3;
    align-self: center;
    justify-self: start;
  }
  .title-bar .container > .video-btn {
    grid-column: 2;
    grid-row: 3;
    gap: 4px;
    padding: 4px 20px;
    font-size: 14px;
    line-height: 24px;
  }
  .title-bar .container > .video-btn .video-btn-icon {
    width: 16px;
    height: 16px;
  }
  .title-bar .container > .video-btn .video-btn-icon img {
    content: url("/assets/icn-Youtube-glyph-16.svg");
  }
}

.directions-link {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
}
.directions-link span {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-link);
  white-space: nowrap;
}
.directions-icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-btn {
  background: #ff0164;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 360px;
  flex-shrink: 0;
  border: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  white-space: nowrap;
}
.video-btn:hover {
  opacity: 0.9;
}
.video-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.video-btn-icon img {
  display: block;
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

/* ── Content area ── */
.content-area {
  width: 100%;
  flex-shrink: 0;
}

/* ── Main column ── */
.main-col {
  grid-column: span 8;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
@media (max-width: 1023px) {
  .main-col {
    grid-column: span 8;
  }
}
@media (max-width: 767px) {
  .main-col {
    grid-column: span 4;
  }
}

.section-title {
  font-weight: 400;
  font-size: 32px;
  line-height: 40px;
  color: var(--text-primary);
  width: 100%;
}

@media (max-width: 1023px) {
  .section-title {
    font-size: 24px;
    line-height: 32px;
  }
}

/* ── Path selectors ── */
.path-selectors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
  flex-shrink: 0;
}
.path-btn {
  background: var(--surface-primary);
  border: 1px solid;
  border-radius: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 20px;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  white-space: nowrap;
}
.path-btn:hover {
  opacity: 0.8;
}
.path-btn.main {
  border-color: #b9056f;
  color: #b9056f;
}
.path-btn.leonardo {
  border-color: #517132;
  color: #517132;
}
.path-btn.metro {
  border-color: #4d2fb7;
  color: #4d2fb7;
}
.path-btn.highspeed {
  border-color: #bf8724;
  color: #bf8724;
}
.path-btn.giolitti {
  border-color: #2b809b;
  color: #2b809b;
}
.path-btn.taxi {
  border-color: #ab21cc;
  color: #ab21cc;
}
/* Active: filled background, white text */
.path-btn.is-active {
  border-color: transparent;
  color: #fff;
}
.path-btn.main.is-active {
  background: #b9056f;
}
.path-btn.leonardo.is-active {
  background: #517132;
}
.path-btn.metro.is-active {
  background: #4d2fb7;
}
.path-btn.highspeed.is-active {
  background: #bf8724;
}
.path-btn.giolitti.is-active {
  background: #2b809b;
}
.path-btn.taxi.is-active {
  background: #ab21cc;
}
.path-btn-plane {
  position: relative;
  flex-shrink: 0;
  width: 19px;
  height: 19px;
}

@media (max-width: 1023px) {
  .path-btn {
    font-size: 12px;
    line-height: 19px;
    padding: 8px 16px 9px;
  }
}

@media (max-width: 1023px) {
  .path-btn.giolitti {
    max-width: 198px;
  }
  .path-btn.taxi {
    max-width: 136px;
  }
}

/* ── Map ── */
.map-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
}
/* Fixed-size frame — background-image swap never triggers layout shift */
.map-frame {
  width: 343px;
  height: 542px;
  flex-shrink: 0;
  background-image: url("/assets/map-default.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.map-mobile {
  height: 542px;
  position: relative;
  flex-shrink: 0;
  width: 343px;
}
.map-mobile img {
  max-width: none;
}
/* map label styles */
.ml {
  position: absolute;
  font-weight: 600;
  font-size: 8px;
  line-height: 8px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  color: var(--text-primary);
  font-stretch: condensed;
  white-space: nowrap;
  text-align: center;
}
.ml-st {
  position: absolute;
  font-weight: 600;
  font-size: 13px;
  line-height: 14px;
  letter-spacing: 0.52px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  font-stretch: condensed;
  white-space: nowrap;
  text-align: center;
}
.ml-rn {
  position: absolute;
  font-weight: 600;
  font-size: 8px;
  line-height: 8px;
  letter-spacing: -0.4px;
  color: var(--text-primary);
  font-stretch: condensed;
  white-space: nowrap;
}
.map-tag {
  position: absolute;
  background: var(--surface-primary);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-tag .ml {
  position: static;
}

/* ── Quick tips ── */
.quick-tips {
  background: var(--surface-secondary);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  flex-shrink: 0;
}
.quick-tips ul {
  list-style-type: disc;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-secondary);
  width: 100%;
}
.quick-tips ul li {
  margin-bottom: 8px;
  margin-inline-start: 24px;
}
.quick-tips ul li:last-child {
  margin-bottom: 0;
}
.quick-tips a {
  color: var(--text-link);
  text-decoration: underline;
}

/* ── Sidebar ── */
.sidebar {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  position: sticky;
  top: 0;
}
@media (max-width: 1023px) {
  .sidebar {
    grid-column: span 8;
    position: static;
  }
}
@media (max-width: 767px) {
  .sidebar {
    grid-column: span 4;
  }
}
.sidebar-title {
  font-weight: 400;
  font-size: 32px;
  line-height: 40px;
  color: var(--text-primary);
  width: 100%;
  flex-shrink: 0;
}

.contact-card {
  background: var(--surface-primary);
  border: 1px solid var(--border-primary);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 24px;
  width: 100%;
  flex-shrink: 0;
}
.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: clip;
  width: 100%;
  flex-shrink: 0;
}
.contact-icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.contact-icon img {
  position: absolute;
  max-width: none;
  width: 100%;
  height: 100%;
}
.contact-label {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-primary);
  text-align: center;
}
.contact-status {
  color: #24253d;
  font-size: 16px;
  line-height: 24px;
}
.contact-status .open {
  color: #5cb000;
  font-weight: 600;
}
.contact-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-link);
  white-space: nowrap;
  text-decoration: none;
}
.contact-link:hover {
  text-decoration: underline;
}

/* Nudge card */
.nudge-card {
  background: var(--surface-primary);
  border: 1px solid var(--border-primary);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: clip;
  width: 100%;
  flex-shrink: 0;
}
.nudge-row {
  border-bottom: 1px solid var(--border-primary);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 16px;
  width: 100%;
  flex-shrink: 0;
}
.nudge-icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.nudge-icon img {
  width: 100%;
  height: 100%;
}
.nudge-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-primary);
  flex: 1 0 0;
  min-height: 1px;
  min-width: 1px;
}
.nudge-image {
  height: 192px;
  width: 100%;
  flex-shrink: 0;
  background: url("/assets/italia-pass-sign.jpg");
  background-size: cover;
  background-position: center calc(50% - 40px);
  background-repeat: no-repeat;
}

/* ── Grid container ── */
.container {
  width: 100%;
  max-width: 1376px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 1280px) {
  .container {
    max-width: 1168px;
  }
}
@media (max-width: 1023px) {
  .container {
    max-width: none;
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 389px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ── Content grid (12/8/4 columns) ── */
.content-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: start;
  width: 100%;
}
@media (max-width: 1023px) {
  .content-grid {
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .content-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
}

/* ── Spacers ── */
.sp12 {
  height: 12px;
  width: 100%;
  flex-shrink: 0;
}
.sp16 {
  height: 16px;
  width: 100%;
  flex-shrink: 0;
}
.sp32 {
  height: 32px;
  width: 100%;
  flex-shrink: 0;
}
.sp40 {
  height: 40px;
  width: 100%;
  flex-shrink: 0;
}
.sp48 {
  height: 48px;
  width: 100%;
  flex-shrink: 0;
}

/* ── Footer ── */
.footer {
  background: #24253d;
  width: 100%;
  flex-shrink: 0;
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 32px;
  padding-bottom: 32px;
}
.footer-links {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  flex-shrink: 0;
}
.footer-col {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  min-height: 1px;
  min-width: 1px;
}
.footer-col-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: #10b19f;
  white-space: nowrap;
}
.footer-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  white-space: nowrap;
}
.footer-link:hover {
  text-decoration: underline;
}
.footer-sep {
  height: 1px;
  opacity: 0.5;
  width: 100%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.5);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-shrink: 0;
}
.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
}
.footer-logo {
  height: 16px;
  flex-shrink: 0;
  width: 106px;
}
.footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
}
.footer-copy {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #91929e;
  white-space: nowrap;
}
.social-row {
  display: flex;
  gap: 16px;
  height: 40px;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}
.social-btn {
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  border-radius: 360px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  cursor: pointer;
}
.social-btn .icon-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
}
.social-btn .icon-center img {
  display: block;
  width: 100%;
  height: 100%;
}
.social-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ── Visibility utilities ── */
/* Hide on mobile (≤767px), show on tablet/desktop */
.hide-mobile {
  display: revert;
}
/* Hide on tablet (768px–1023px), show on mobile/desktop */
.hide-tablet {
  display: revert;
}
/* Hide on desktop (≥1024px), show on mobile/tablet */
.hide-desktop {
  display: revert;
}
/* Show only on mobile (≤767px) */
.show-mobile-only {
  display: none;
}
/* Show only on tablet (768px–1023px) */
.show-tablet-only {
  display: none;
}
/* Show only on desktop (≥1024px) */
.show-desktop-only {
  display: revert;
}
/* Show on tablet + mobile (≤1023px), hide on desktop */
.show-below-desktop {
  display: none;
}
/* Show on tablet + desktop (≥768px), hide on mobile */
.show-above-mobile {
  display: revert;
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
  .show-mobile-only {
    display: revert;
  }
  .show-tablet-only {
    display: none;
  }
  .show-desktop-only {
    display: none;
  }
  .show-below-desktop {
    display: revert;
  }
  .show-above-mobile {
    display: revert;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hide-tablet {
    display: none;
  }
  .show-tablet-only {
    display: revert;
  }
  .show-mobile-only {
    display: none;
  }
  .show-desktop-only {
    display: none;
  }
  .show-below-desktop {
    display: none;
  }
  .show-above-mobile {
    display: revert;
  }
}
@media (min-width: 1024px) {
  .hide-desktop {
    display: none;
  }
  .show-mobile-only {
    display: none;
  }
  .show-tablet-only {
    display: none;
  }
  .show-desktop-only {
    display: revert;
  }
}

/* ── Footer responsive (tablet + mobile) ── */
@media (max-width: 1023px) {
  .footer .container {
    gap: 24px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  /* Two-column link grid: Company+Partners on left, Support+Legal on right */
  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    column-gap: 16px;
    row-gap: 32px;
  }

  /* Remove the horizontal separator */
  .footer-sep {
    display: none;
  }

  /* Stack logo + copyright + social, all centered */
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .footer-bottom-left {
    align-items: center;
  }

  .footer-copy {
    text-align: center;
  }

  .social-row {
    justify-content: center;
    gap: 24px;
    height: auto;
  }
}

/* ── Modal overlay ── */
@keyframes modal-slide-up {
  0% {
    transform: translateY(100vh);
  }
  75% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 39, 57, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: #f3f3f6;
  border-radius: 12px;
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow:
    0px 16px 24px 0px rgba(20, 39, 57, 0.14),
    0px 6px 30px 5px rgba(20, 39, 57, 0.12),
    0px 8px 10px 0px rgba(20, 39, 57, 0.2);
  transform: translateY(100vh);
}
.modal-overlay.is-open .modal {
  animation: modal-slide-up 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.modal-header {
  background: #fff;
  border-bottom: 1px solid var(--border-primary);
  display: flex;
  align-items: flex-start;
  min-height: 88px;
  padding: 20px 24px 20px 32px;
  border-radius: 12px 12px 0 0;
  width: 100%;
  flex-shrink: 0;
}
.modal-title-row {
  display: flex;
  flex: 1 0 0;
  align-items: flex-start;
  min-height: 1px;
  min-width: 1px;
}
.modal-title-inner {
  display: flex;
  flex: 1 0 0;
  gap: 8px;
  align-items: flex-start;
  min-height: 1px;
  min-width: 1px;
  padding-top: 8px;
}
.modal-title {
  flex: 1 0 0;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: var(--text-primary);
  min-height: 1px;
  min-width: 1px;
}

.modal-close {
  position: relative;
  border-radius: 360px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.modal-close .close-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 28.8px;
  height: 28.8px;
}
.modal-close .close-circle img {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: none;
}
.modal-close .close-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
}
.modal-close .close-icon img {
  position: absolute;
  top: 21.88%;
  right: 21.88%;
  bottom: 21.88%;
  left: 21.88%;
  width: 56.24%;
  height: 56.24%;
  max-width: none;
}

.modal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 32px;
  width: 100%;
  flex-shrink: 0;
}
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 4px;
}
.modal-video-thumb {
  display: block;
  position: relative;
  height: 400px;
  border-radius: 8px;
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  text-decoration: none;
}
.modal-video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  max-width: none;
  pointer-events: none;
}
.modal-desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-secondary);
  width: 100%;
  flex-shrink: 0;
}
