/*
  Route-level composition only. Shared mechanics belong in base.css and
  components.css. The page validator should enforce one primary action per
  action region and prevent unapproved facts from reaching these views.
*/

.route-home {
  --route-accent: var(--color-bronze);
}

.route-home .page-hero {
  --surface-text: var(--color-text-on-dark);
  --surface-muted: var(--color-muted-on-dark);
  --surface-accent: var(--color-accent-on-dark);
  --surface-line: var(--color-line-on-dark);
  --surface-focus: var(--color-focus-dark);
  position: relative;
  display: block;
  width: 100%;
  min-height: calc(100svh - 92px);
  padding: 0;
  overflow: clip;
  color: var(--color-paper);
  background: var(--color-deep-tide);
}

.route-home .page-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 25, 29, 0.78) 0%, rgba(7, 25, 29, 0.54) 38%, rgba(7, 25, 29, 0.08) 72%),
    linear-gradient(0deg, rgba(7, 25, 29, 0.48) 0%, transparent 42%);
  content: "";
  pointer-events: none;
}

.route-home .page-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  box-sizing: border-box;
  width: min(var(--content-max), calc(100% - (2 * var(--page-gutter))));
  min-height: calc(100svh - 92px);
  max-width: none;
  flex-direction: column;
  justify-content: flex-end;
  margin-inline: auto;
  padding-block: clamp(100px, 12vh, 160px) clamp(72px, 10vh, 120px);
}

.route-home .page-hero__copy h1 {
  max-width: 9.2ch;
  margin: 0;
  font-size: var(--text-home-h1);
  line-height: var(--line-display);
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(7, 25, 29, 0.24);
}

.route-home .page-hero__lead {
  max-width: 42ch;
  margin-top: clamp(24px, 3vw, 38px);
  color: rgba(255, 250, 242, 0.9);
  font-size: clamp(1.04rem, 0.98rem + 0.28vw, 1.2rem);
  text-shadow: 0 1px 16px rgba(7, 25, 29, 0.42);
}

.route-home .page-hero__actions {
  margin-top: clamp(26px, 3vw, 38px);
}

.route-home .page-hero__actions .action--primary {
  color: var(--color-deep-tide);
  background: var(--color-paper);
  border-color: var(--color-paper);
}

.route-home .page-hero__actions .action--primary:hover {
  color: var(--color-paper);
  background: var(--color-bronze);
  border-color: var(--color-bronze);
}

.route-home .page-hero__media {
  position: absolute;
  inset: 0;
  display: block;
  min-height: 100%;
}

.route-home .page-hero__figure {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
}

.route-home .hero-sequence {
  position: absolute;
  inset: 0;
}

.route-home .hero-sequence__frame {
  z-index: 0;
  opacity: 0;
  transform: scale(1.015);
  transition:
    opacity 1.2s ease,
    transform 9s linear;
  pointer-events: none;
}

.route-home .hero-sequence__frame.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1.035);
}

.hero-sequence__controls {
  position: absolute;
  z-index: 4;
  right: auto;
  left: var(--page-gutter);
  bottom: clamp(30px, 4vw, 54px);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-paper);
}

.hero-sequence__pause,
.hero-sequence__dot {
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hero-sequence__pause {
  min-height: 44px;
  padding: 0 2px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-sequence__dots {
  display: flex;
  align-items: center;
}

.hero-sequence__dot {
  position: relative;
  width: 36px;
  height: 44px;
  padding: 0;
}

.hero-sequence__dot::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: rgba(255, 250, 242, 0.48);
  content: "";
  transform: translate(-50%, -50%);
  transition: width 220ms ease, background-color 220ms ease;
}

.hero-sequence__dot:is(:hover, :focus-visible)::before,
.hero-sequence__dot[aria-current="true"]::before {
  width: 28px;
  background: var(--color-paper);
}

.hero-sequence__pause:focus-visible,
.hero-sequence__dot:focus-visible {
  outline: 2px solid var(--color-paper);
  outline-offset: 3px;
}

.route-home .page-hero__inset {
  position: absolute;
  z-index: 3;
  right: var(--page-gutter);
  bottom: clamp(38px, 5vw, 70px);
  width: clamp(104px, 10vw, 154px);
  border: 5px solid rgba(255, 250, 242, 0.92);
  box-shadow: 0 18px 50px rgba(7, 25, 29, 0.26);
}

.home-proof {
  --surface-text: var(--color-text-on-light);
  --surface-muted: var(--color-muted-on-light);
  --surface-accent: var(--color-accent-on-light);
  --surface-line: var(--color-line-on-light);
  --surface-focus: var(--color-focus-light);
  background: var(--color-paper);
  border-bottom: 1px solid var(--surface-line);
}

.home-proof__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(var(--content-max), calc(100% - (2 * var(--page-gutter))));
  margin: 0 auto;
  padding-block: clamp(28px, 3.5vw, 46px);
}

.home-proof__item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 9px;
  margin: 0;
  padding-inline: clamp(16px, 2.5vw, 38px);
  border-left: 1px solid var(--surface-line);
}

.home-proof__item:first-child {
  padding-left: 0;
  border-left: 0;
}

.home-proof__item:last-child {
  padding-right: 0;
}

.home-proof__item dt {
  color: var(--surface-muted);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-proof__item dd {
  order: -1;
  margin: 0;
  color: var(--color-deep-tide);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.3vw, 2.35rem);
  line-height: 1;
}

.route-stay {
  --route-accent: var(--color-bronze);
}

.route-experiences {
  --route-accent: var(--color-lagoon);
}

.route-experiences .editorial-feature {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
}

.route-journeys {
  --route-accent: var(--color-bronze);
}

.route-diving {
  --route-accent: var(--color-lagoon);
}

.route-dining {
  --route-accent: var(--color-bronze);
}

.route-dining .editorial-feature__aside {
  background: var(--color-paper);
}

.route-arrival {
  --route-accent: var(--color-bronze);
}

.route-arrival .page-hero {
  min-height: 600px;
}

.route-404 .page-hero {
  grid-template-columns: minmax(0, 820px);
  min-height: 520px;
}

.route-press {
  --route-accent: var(--color-bronze);
}

.route-press .press-proof {
  margin-block: var(--section-space);
}

.route-press .page-hero {
  padding-bottom: var(--section-space-tight);
}

/* Three deliberate non-home hero families: quiet editorial, marine immersion,
   and a more social, image-forward composition. */
.page-hero--editorial-split {
  grid-template-columns: minmax(360px, 0.84fr) minmax(0, 1.16fr);
}

.page-hero--editorial-split .page-hero__media--single {
  min-height: 0;
}

.page-hero--editorial-split .page-hero__figure {
  height: clamp(560px, 54vw, 720px);
  min-height: 0;
  aspect-ratio: auto;
}

.page-hero--immersive-marine {
  --surface-text: var(--color-text-on-dark);
  --surface-muted: rgba(255, 250, 242, 0.86);
  --surface-accent: var(--color-bronze-light);
  --surface-line: var(--color-line-on-dark);
  --surface-focus: var(--color-focus-dark);
  position: relative;
  display: block;
  width: 100%;
  min-height: min(840px, calc(100svh - 72px));
  padding: 0;
  overflow: clip;
  color: var(--surface-text);
  background: var(--color-deep-tide);
}

.page-hero--immersive-marine::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 23, 28, 0.82) 0%, rgba(5, 23, 28, 0.52) 42%, rgba(5, 23, 28, 0.08) 76%),
    linear-gradient(0deg, rgba(5, 23, 28, 0.46), transparent 52%);
  content: "";
  pointer-events: none;
}

.route-journeys .page-hero--immersive-marine::after {
  background:
    linear-gradient(90deg, rgba(5, 23, 28, 0.7) 0%, rgba(5, 23, 28, 0.38) 42%, rgba(5, 23, 28, 0.04) 76%),
    linear-gradient(0deg, rgba(5, 23, 28, 0.34), transparent 52%);
}

.page-hero--immersive-marine .page-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(var(--content-max), calc(100% - (2 * var(--page-gutter))));
  min-height: min(840px, calc(100svh - 72px));
  max-width: none;
  flex-direction: column;
  justify-content: flex-end;
  margin-inline: auto;
  padding-block: clamp(110px, 15vh, 180px) clamp(70px, 10vh, 116px);
}

.page-hero--immersive-marine .page-hero__copy h1 {
  max-width: 10ch;
  margin-top: 0;
  color: var(--surface-text);
  text-shadow: 0 2px 22px rgba(5, 23, 28, 0.24);
}

.page-hero--immersive-marine .page-hero__lead {
  max-width: 46ch;
  color: var(--surface-muted);
  text-shadow: 0 1px 16px rgba(5, 23, 28, 0.34);
}

.page-hero--immersive-marine .page-hero__media--single,
.page-hero--immersive-marine .page-hero__figure {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
}

.page-hero--social-cinematic {
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 5.5vw, 86px);
  width: min(var(--content-max), calc(100% - (2 * var(--page-gutter))));
  min-height: 720px;
}

.page-hero--social-cinematic .page-hero__copy {
  align-self: end;
  padding-bottom: clamp(48px, 7vw, 96px);
}

.page-hero--social-cinematic .page-hero__media--single {
  min-height: 0;
}

.page-hero--social-cinematic .page-hero__figure {
  height: clamp(600px, 56vw, 780px);
  min-height: 0;
  aspect-ratio: auto;
}

.route-dining .page-hero--social-cinematic .page-hero__figure,
.route-press .page-hero--social-cinematic .page-hero__figure {
  aspect-ratio: 16 / 11;
}

.route-contact .external-links .editorial-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.route-404 main {
  min-height: calc(100vh - 92px);
}

.route-privacy,
.route-cookies {
  --route-accent: var(--color-bronze);
}

.legal-hero {
  --surface-text: var(--color-text-on-dark);
  --surface-muted: var(--color-muted-on-dark);
  --surface-accent: var(--color-accent-on-dark);
  --surface-line: var(--color-line-on-dark);
  color: var(--surface-text);
  background:
    linear-gradient(115deg, rgba(24, 61, 66, 0.52), transparent 58%),
    var(--color-deep-tide);
}

.legal-hero__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 9vw, 150px);
  align-items: end;
  width: min(var(--content-max), calc(100% - (2 * var(--page-gutter))));
  min-height: clamp(430px, 52vw, 620px);
  margin-inline: auto;
  padding-block: clamp(80px, 10vw, 144px);
}

.legal-hero__title h1 {
  max-width: 10ch;
  margin: clamp(26px, 3vw, 38px) 0 0;
  color: var(--surface-text);
  font-size: clamp(3.35rem, 3rem + 2vw, 5.25rem);
  line-height: 0.98;
  text-wrap: balance;
}

.legal-hero__orientation {
  max-width: 620px;
  padding-left: clamp(28px, 4vw, 58px);
  border-left: 1px solid var(--surface-line);
}

.legal-hero__orientation > p {
  max-width: 48ch;
  margin: 0;
  color: var(--surface-muted);
  font-size: clamp(1.08rem, 1rem + 0.35vw, 1.3rem);
  line-height: 1.68;
}

.legal-hero .action--primary {
  color: var(--color-deep-tide);
  background: var(--color-paper);
  border-color: var(--color-paper);
}

.legal-hero .action--primary:hover,
.legal-hero .action--primary:focus-visible {
  color: var(--color-paper);
  background: var(--color-bronze);
  border-color: var(--color-bronze);
}

.legal-hero .action--secondary {
  color: var(--color-paper);
  background: transparent;
  border-color: rgba(255, 250, 242, 0.46);
  cursor: pointer;
}

.legal-hero .action--secondary:hover,
.legal-hero .action--secondary:focus-visible {
  border-color: var(--color-bronze-light);
}

.legal-document {
  background: var(--color-shell);
}

.legal-document__inner {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 132px);
  width: min(var(--editorial-max), calc(100% - (2 * var(--page-gutter))));
  margin-inline: auto;
  padding-block: clamp(82px, 10vw, 152px);
}

.legal-document__rail-inner {
  position: sticky;
  top: 128px;
}

.legal-document__rail time {
  display: block;
  margin-top: 18px;
  color: var(--color-marine-ink);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.12rem + 0.42vw, 1.55rem);
  line-height: 1.2;
}

.legal-document__rail nav {
  margin-top: clamp(46px, 6vw, 72px);
  padding-top: 22px;
  border-top: 1px solid var(--color-line);
}

.legal-document__rail nav > p {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-document__rail ol {
  display: grid;
  gap: 2px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.legal-document__rail a {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  min-height: 42px;
  padding-block: 9px;
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.4;
  text-decoration: none;
  transition: color 180ms ease;
}

.legal-document__rail a span {
  color: var(--color-bronze);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
}

.legal-document__rail a:hover,
.legal-document__rail a:focus-visible {
  color: var(--color-marine-ink);
}

.legal-document__body {
  min-width: 0;
}

.legal-section {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  padding-block: clamp(54px, 7vw, 88px);
  border-top: 1px solid var(--color-line);
  scroll-margin-top: 112px;
}

.legal-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-section__number {
  padding-top: 9px;
  color: var(--color-bronze);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
}

.legal-section__content h2 {
  max-width: 17ch;
  margin: 0 0 clamp(30px, 4vw, 48px);
  color: var(--color-marine-ink);
  font-size: clamp(2rem, 1.76rem + 1vw, 2.75rem);
  text-wrap: balance;
}

.legal-section__content > p {
  max-width: 69ch;
  margin: 0;
  color: var(--color-muted);
  line-height: 1.78;
}

.legal-section__content > p + p {
  margin-top: 20px;
}

.legal-section__contact {
  margin-top: 32px !important;
}

.legal-register {
  display: grid;
  gap: 18px;
}

.legal-register__group {
  padding: clamp(28px, 4vw, 44px);
  background: var(--color-sea-mist);
  border: 1px solid rgba(28, 37, 37, 0.12);
}

.legal-register__row h3 {
  max-width: 34ch;
  margin: 22px 0 0;
  color: var(--color-marine-ink);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.16rem + 0.55vw, 1.72rem);
  font-weight: 400;
  line-height: 1.25;
}

.legal-register__row dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 30px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--color-line);
}

.legal-register__row dt {
  color: var(--color-bronze);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-register__row dd {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.media-frame--landscape {
  aspect-ratio: 3 / 2;
}

.media-frame--portrait {
  aspect-ratio: 4 / 5;
}

.media-frame--panorama {
  aspect-ratio: 21 / 9;
}

.section--emphasis {
  color: var(--surface-text);
  background: var(--color-deep-tide);
}

.section--emphasis .eyebrow,
.section--emphasis .section-label {
  color: var(--surface-accent);
}

@media (max-width: 1240px) {
  .route-experiences .editorial-feature {
    grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.24fr);
  }

}

@media (max-width: 980px) {
  .route-experiences .editorial-feature {
    grid-template-columns: 1fr;
  }

  .route-home .page-hero__copy {
    min-height: max(680px, calc(100svh - 92px));
  }

  .route-home .page-hero__copy h1 {
    max-width: 8.8ch;
  }

  .home-proof__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 28px;
  }

  .home-proof__item:nth-child(4) {
    padding-left: 0;
    border-left: 0;
  }

  .route-press .press-proof {
    margin-block: var(--section-space-tight);
  }

  .page-hero--editorial-split,
  .page-hero--social-cinematic {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: clamp(52px, 8vw, 86px);
  }

  .page-hero--social-cinematic .page-hero__copy {
    padding-bottom: 0;
  }

  .page-hero--editorial-split .page-hero__media--single,
  .page-hero--social-cinematic .page-hero__media--single {
    min-height: 0;
  }

  .page-hero--editorial-split .page-hero__figure,
  .page-hero--social-cinematic .page-hero__figure,
  .route-dining .page-hero--social-cinematic .page-hero__figure,
  .route-press .page-hero--social-cinematic .page-hero__figure {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .route-contact .external-links .editorial-stack {
    grid-template-columns: 1fr;
  }

  .legal-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: 0;
  }

  .legal-hero__orientation {
    max-width: 680px;
  }

  .legal-document__inner {
    grid-template-columns: 1fr;
  }

  .legal-document__rail-inner {
    position: static;
    display: grid;
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
    padding-bottom: 42px;
    border-bottom: 1px solid var(--color-line);
  }

  .legal-document__rail nav {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }
}

@media (max-width: 680px) {
  .route-home .page-hero,
  .route-home .page-hero__copy {
    min-height: max(620px, calc(100svh - 82px));
  }

  .route-home .page-hero::after {
    background:
      linear-gradient(0deg, rgba(7, 25, 29, 0.82) 0%, rgba(7, 25, 29, 0.32) 58%, rgba(7, 25, 29, 0.08) 100%),
      linear-gradient(90deg, rgba(7, 25, 29, 0.32) 0%, transparent 86%);
  }

  .route-home .page-hero__copy {
    padding-block: 94px 62px;
  }

  .route-home .page-hero__copy h1 {
    max-width: 8.4ch;
    font-size: var(--text-home-h1);
  }

  .route-home .page-hero__lead {
    max-width: 34ch;
    font-size: 1rem;
  }

  .hero-sequence__controls {
    right: auto;
    left: var(--page-gutter);
    bottom: 18px;
  }

  .hero-sequence__pause {
    font-size: var(--text-xs);
  }

  .route-home .page-hero__inset {
    top: 28px;
    right: var(--page-gutter);
    bottom: auto;
    width: 88px;
    border-width: 3px;
  }

  .home-proof__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 26px;
  }

  .home-proof__item,
  .home-proof__item:nth-child(4) {
    padding-inline: 18px;
    border-left: 1px solid var(--surface-line);
  }

  .home-proof__item:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .home-proof__item:nth-child(even) {
    padding-right: 0;
  }

  .home-proof__item:last-child {
    grid-column: 1 / -1;
    align-items: center;
    padding: 22px 0 0;
    border-top: 1px solid var(--surface-line);
    border-left: 0;
    text-align: center;
  }

  .route-arrival .page-hero,
  .route-404 .page-hero {
    min-height: 0;
  }

  .media-frame--panorama {
    aspect-ratio: 4 / 3;
  }

  .page-hero--immersive-marine,
  .page-hero--immersive-marine .page-hero__copy {
    min-height: max(620px, calc(100svh - 72px));
  }

  .page-hero--immersive-marine::after {
    background: linear-gradient(0deg, rgba(5, 23, 28, 0.84) 0%, rgba(5, 23, 28, 0.3) 72%, rgba(5, 23, 28, 0.08) 100%);
  }

  .route-journeys .page-hero--immersive-marine::after {
    background: linear-gradient(0deg, rgba(5, 23, 28, 0.74) 0%, rgba(5, 23, 28, 0.24) 72%, rgba(5, 23, 28, 0.05) 100%);
  }

  .page-hero--immersive-marine .page-hero__copy {
    padding-block: 100px 62px;
  }

  .legal-hero__inner {
    gap: 38px;
    padding-block: 68px 78px;
  }

  .legal-hero__title h1 {
    font-size: clamp(2.8rem, 13vw, 3.6rem);
  }

  .legal-hero__orientation {
    padding: 28px 0 0;
    border-top: 1px solid var(--surface-line);
    border-left: 0;
  }

  .legal-hero .page-hero__actions,
  .legal-hero .action {
    width: 100%;
  }

  .legal-document__rail-inner {
    grid-template-columns: 1fr;
  }

  .legal-section {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .legal-section__number {
    padding-top: 0;
  }

  .legal-register__row dl {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-home .hero-sequence__frame {
    transform: none;
    transition: none;
  }

  .site-header__inner,
  .brand__mark,
  .action,
  .page-hero__figure img,
  .page-hero__inset img,
  .media-frame img,
  .juna-concierge__panel {
    transition: none;
  }
}

@media (max-width: 420px) {
  .route-home .page-hero__inset {
    display: none;
  }

  .route-stay .page-hero,
  .route-experiences .page-hero,
  .route-journeys .page-hero,
  .route-diving .page-hero,
  .route-dining .page-hero,
  .route-arrival .page-hero,
  .route-contact .page-hero,
  .route-press .page-hero,
  .route-privacy .legal-hero__inner,
  .route-cookies .legal-hero__inner {
    width: calc(100% - (2 * var(--page-gutter)));
  }

  .route-journeys .page-hero--immersive-marine,
  .route-diving .page-hero--immersive-marine {
    width: 100%;
  }
}

@media print {
  .section--emphasis {
    color: #000;
    background: #fff;
    border-block: 1px solid #000;
  }
}
