:root {
  --bg: #160b14;
  --surface: #24111f;
  --surface-2: #35172b;
  --text: #fff7fc;
  --muted: #d9c8d3;
  --accent: #ff5ca8;
  --accent-2: #ffbd61;
  --call: #36dd55;
  --call-dark: #169d31;
  --line: #5f3150;
  --focus: #fff06a;
  --max: 72rem;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-wrap: break-word;
  background: radial-gradient(circle at 50% -20%, #69204c 0, #25101f 38rem, var(--bg) 70rem);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
}

img, svg { max-width: 100%; height: auto; }
img { display: block; }
a { color: #ff9fc9; text-decoration-thickness: .08em; text-underline-offset: .2em; }
a:hover { color: #fff; }
p, li { max-width: 75ch; }
h1, h2, h3 { line-height: 1.12; text-wrap: balance; }
h1 { letter-spacing: -.045em; }
h2 { margin-top: 3rem; padding-top: 1rem; font-size: clamp(1.75rem, 7vw, 2.45rem); letter-spacing: -.025em; }
h3 { margin-top: 2.3rem; font-size: clamp(1.3rem, 5vw, 1.65rem); color: #ffd4e7; }
h6 { margin-bottom: .25rem; font-size: 1rem; color: var(--accent-2); }
h2[id], h3[id] { scroll-margin-top: 7rem; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .75rem 1rem;
  border-radius: .4rem;
  background: #fff;
  color: #111;
}
.skip-link:focus { top: 1rem; outline: .2rem solid var(--focus); }
:focus-visible { outline: .2rem solid var(--focus); outline-offset: .2rem; }

.age-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 3rem;
  padding: .35rem max(1rem, env(safe-area-inset-left));
  text-align: center;
  background: #090509;
  color: var(--muted);
  font-size: .82rem;
}
.age-bar strong {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  min-width: 2.2rem;
  min-height: 2.2rem;
  border: .12rem solid var(--accent-2);
  border-radius: 50%;
  color: var(--accent-2);
}
.age-rates { display: none; color: #f6d8e8; font-variant-numeric: tabular-nums; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(22,11,20,.96);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .65rem;
  max-width: var(--max);
  min-height: 4rem;
  margin: auto;
  padding: .65rem max(1rem, env(safe-area-inset-right)) .65rem max(1rem, env(safe-area-inset-left));
}
.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: .6rem;
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}
.brand span:last-child { max-width: 9rem; }
.brand-mark {
  display: grid;
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #9d3cff);
  box-shadow: 0 0 1.5rem rgba(255,92,168,.35);
}
.header-call {
  display: flex;
  min-width: 6rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .55rem .8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--call), #22c844);
  box-shadow: 0 .7rem 1.6rem rgba(35,201,69,.22);
  color: #07190b;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  text-decoration: none;
}
.header-call span { display: none; font-size: .78rem; }
.header-call:hover, .button-phone:hover { background: #fff; color: #07190b !important; }
.section-nav { display: none; border-top: 1px solid rgba(255,255,255,.07); }
.section-nav ul { max-width: var(--max); margin: 0 auto; padding: .45rem 1rem; list-style: none; }
.section-nav a { display: block; min-height: 2.75rem; padding: .45rem .65rem; border-radius: 999px; color: var(--muted); font-size: .82rem; text-decoration: none; white-space: nowrap; }

main { max-width: var(--max); margin: auto; padding: 1rem max(1rem, env(safe-area-inset-right)) 3rem max(1rem, env(safe-area-inset-left)); }
.content-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(53,23,43,.94), rgba(30,14,26,.97));
  box-shadow: 0 1.5rem 3rem rgba(0,0,0,.28);
}
.content-card > h1, .content-card > h2, .content-card > h3, .content-card > h6,
.content-card > p, .content-card > ul, .content-card > .button { margin-left: 1rem; margin-right: 1rem; }
.content-card p { color: var(--muted); }
.content-card strong { color: #fff; }
.content-card > ul { padding: 1.1rem 1rem 1.1rem 2.6rem; border: 1px solid var(--line); border-radius: 1rem; background: rgba(0,0,0,.16); }
.content-card > ul li + li { margin-top: .85rem; }

.hero-stage {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 44rem;
  min-height: min(49rem, calc(100svh - 2rem));
  align-items: flex-end;
  overflow: hidden;
  background: #1a0c16;
}
.hero-background { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; object-position: 36% center; }
.hero-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(0deg, rgba(18,8,15,.99) 0%, rgba(24,10,20,.88) 52%, rgba(18,8,15,.16) 100%); }
.hero-copy { width: 100%; margin: 0; padding: clamp(1.25rem, 6vw, 2.25rem); text-shadow: 0 .15rem .8rem rgba(0,0,0,.35); }
.hero-stage h1 { margin: 0; background: none; color: #fff; -webkit-text-fill-color: #fff; font-size: clamp(2.3rem, 11.5vw, 3.25rem); letter-spacing: -.045em; }
.hero-eyebrow { display: inline-flex !important; margin: 0 0 1rem !important; padding: .35rem .7rem; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; background: rgba(0,0,0,.3); color: #fff !important; font-size: .75rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.hero-lead { margin: 1rem 0 !important; color: #fff !important; font-size: 1rem; line-height: 1.55; }
.hero-actions { display: grid; grid-template-columns: 1fr; gap: .7rem; margin: 1.35rem 0; }
.hero-actions .button { min-height: 4.25rem; margin: 0; flex-direction: column; gap: .15rem; border-radius: 999px; line-height: 1.1; text-align: center; }
.hero-actions .button span { font-size: .76rem; }
.hero-actions .button strong { color: inherit; font-size: 1.15rem; }
.hero-secondary { border: 2px solid rgba(255,255,255,.85); background: rgba(12,5,10,.48); box-shadow: none; color: #fff !important; }
.hero-secondary:hover { background: #fff; color: #181018 !important; }
.hero-facts { display: grid; grid-template-columns: 1fr; gap: .35rem; margin: 1rem 0 0; padding: 0; list-style: none; color: #f0dce7; font-size: .82rem; }
.hero-facts li::before { content: '✓'; margin-right: .38rem; color: var(--call); font-weight: 900; }

.button {
  display: flex;
  width: 100%;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  margin-top: .5rem;
  margin-bottom: .5rem;
  padding: .75rem 1rem;
  border-radius: .8rem;
  background: linear-gradient(135deg, var(--accent), #ff3c75);
  box-shadow: 0 .7rem 1.6rem rgba(255,60,117,.2);
  color: #220816 !important;
  font-weight: 850;
  text-decoration: none;
}
.button-phone { background: linear-gradient(135deg, var(--call), #22c844); box-shadow: 0 .7rem 1.6rem rgba(35,201,69,.22); color: #07190b !important; }
.button-secondary { background: linear-gradient(135deg, var(--accent-2), #ff7a59); }
.button svg { width: 1.2rem; max-height: 1.4rem; fill: currentColor; }

.quick-answer { margin: 1.25rem 1rem; padding: 1rem; border: 1px solid #8a456f; border-radius: 1rem; background: linear-gradient(135deg, rgba(255,92,168,.12), rgba(255,189,97,.07)); }
.quick-answer h2 { margin: 0 0 .75rem; padding: 0; font-size: clamp(1.45rem, 6vw, 2rem); }
.quick-answer p { margin: .5rem 0; color: var(--muted); }
.quick-answer dl { display: grid; grid-template-columns: 1fr; gap: .65rem; margin: 1.25rem 0; }
.quick-answer dl div { padding: .75rem; border-radius: .7rem; background: rgba(0,0,0,.2); }
.quick-answer dt { color: var(--accent-2); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; }
.quick-answer dd { margin: .15rem 0 0; font-weight: 750; }
.topic-overview { margin-top: 1.25rem; }
.topic-overview ul { display: grid; grid-template-columns: 1fr; gap: .35rem; margin: .5rem 0 0; padding-left: 1.2rem; }
.topic-overview a { display: block; min-height: 2.75rem; padding: .35rem .15rem; }

.topic-section { margin: 1rem; padding: 1.1rem; border: 1px solid rgba(255,255,255,.1); border-radius: 1.1rem; background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(0,0,0,.14)); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.topic-section:nth-of-type(even) { background: linear-gradient(145deg, rgba(255,92,168,.055), rgba(0,0,0,.12)); }
.topic-section > h2 { margin: 0 0 1.25rem; padding: 0; }
.topic-section > h3 { margin-top: 2.5rem; }
.topic-section > p { margin: 1rem 0; }
.topic-section svg { max-width: 1.4rem; max-height: 1.4rem; }
.image-grid { display: grid; grid-template-columns: 1fr; gap: .85rem; margin: 1.5rem 0; }
.image-grid .content-image { display: block; width: 100%; margin: 0; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.15); border-radius: 1rem; object-fit: cover; box-shadow: 0 .8rem 2rem rgba(0,0,0,.3); transition: transform .2s ease, box-shadow .2s ease; }
.content-image { display: block; width: calc(100% - 2rem); margin: 1rem; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.15); border-radius: 1rem; object-fit: cover; box-shadow: 0 .8rem 2rem rgba(0,0,0,.3); }

.rate-panel { margin: 2rem 0; padding: 1rem; border: 1px solid rgba(255,189,97,.35); border-radius: 1rem; background: rgba(255,189,97,.045); }
.rate-panel > h3 { margin: 0 0 1rem; color: #fff; }
.rate-grid { display: grid; grid-template-columns: 1fr; gap: .8rem; }
.rate-card { padding: 1rem; border: 1px solid rgba(255,255,255,.1); border-radius: .85rem; background: rgba(0,0,0,.2); }
.rate-card .country { color: var(--accent-2); font-size: .76rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.rate-card h4 { margin: .25rem 0 .55rem; font-size: 1.15rem; }
.rate-card .rate-number { display: block; color: #fff; font-size: clamp(1.05rem, 5vw, 1.35rem); font-weight: 850; }
.rate-card p, .sponsored-link, .legal-note { font-size: .88rem; }
.rate-card p { margin: .45rem 0 0; }
.legal-note { margin-top: 1.5rem !important; padding: 1rem; border-left: .25rem solid var(--accent-2); border-radius: .35rem; background: rgba(0,0,0,.22); }
.age-badge { display: block; width: 156px; max-width: 100%; height: auto; margin: 1.25rem 0; border-radius: .35rem; }

.site-footer { border-top: 1px solid var(--line); background: #0d070c; }
.footer-inner { max-width: var(--max); margin: auto; padding: 2.2rem max(1rem, env(safe-area-inset-right)) 2.2rem max(1rem, env(safe-area-inset-left)); color: var(--muted); font-size: .9rem; }
.footer-inner p { margin: .4rem 0; }
.footer-topics { margin: .8rem 0; line-height: 1.9; }

/* Larger phones and small tablets */
@media (min-width: 30rem) {
  .brand span:last-child { max-width: none; }
  .hero-facts { grid-template-columns: 1fr 1fr; }
}

/* Tablets: more columns and roomier content, without desktop navigation pressure. */
@media (min-width: 40rem) {
  html, h2[id], h3[id] { scroll-padding-top: 8rem; scroll-margin-top: 8rem; }
  .header-inner { padding-block: .8rem; }
  .header-call span { display: inline; }
  main { padding: 1.5rem 1.5rem 4rem; }
  .content-card { border-radius: 1.3rem; }
  .content-card > h1, .content-card > h2, .content-card > h3, .content-card > h6,
  .content-card > p, .content-card > ul, .content-card > .button { margin-left: 2rem; margin-right: 2rem; }
  .hero-stage { min-height: 43rem; }
  .hero-copy { padding: 2.5rem; }
  .hero-stage h1 { font-size: clamp(3rem, 8vw, 4.6rem); }
  .hero-actions { grid-template-columns: 1fr 1fr; }
  .button { width: auto; display: inline-flex; }
  .quick-answer { margin: 2rem; padding: 1.5rem; }
  .quick-answer dl { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .topic-overview ul { grid-template-columns: repeat(2, minmax(0,1fr)); gap: .4rem 1.5rem; }
  .topic-section { margin: 1.5rem; padding: 2rem; }
  .image-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; margin: 2rem 0; }
  .rate-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

/* Desktop and landscape tablets with sufficient width. */
@media (min-width: 64rem) {
  html { scroll-padding-top: 10rem; }
  body { font-size: 1.06rem; }
  h2[id], h3[id] { scroll-margin-top: 10rem; }
  .age-bar { gap: 2rem; font-size: .88rem; }
  .age-rates { display: inline; }
  .section-nav { display: block; }
  .section-nav ul { display: flex; justify-content: center; gap: .35rem; }
  .section-nav a:hover { background: var(--surface-2); color: #fff; }
  main { padding: 2.5rem 1rem 4rem; }
  .content-card { border-radius: 1.4rem; box-shadow: 0 2rem 5rem rgba(0,0,0,.32); }
  .content-card > h1, .content-card > h2, .content-card > h3, .content-card > h6,
  .content-card > p, .content-card > ul, .content-card > .button { margin-left: 4.5rem; margin-right: 4.5rem; }
  .hero-stage { min-height: clamp(35rem, 60vw, 46rem); align-items: center; }
  .hero-background { object-position: center; }
  .hero-shade { background: linear-gradient(270deg, rgba(18,8,15,.97) 0%, rgba(28,11,23,.86) 45%, rgba(21,8,17,.18) 100%), linear-gradient(0deg, rgba(14,6,12,.55), transparent 45%); }
  .hero-copy { width: min(56%,42rem); margin-left: auto; padding: clamp(2rem,4vw,4rem); }
  .hero-stage h1 { font-size: clamp(3rem,5vw,4.5rem); }
  .hero-lead { font-size: clamp(1.05rem,2vw,1.28rem); }
  .hero-facts { display: flex; flex-wrap: wrap; gap: .45rem 1.3rem; }
  .topic-section { margin: 2rem; padding: 3rem; }
  .image-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (hover: hover) and (pointer: fine) {
  .image-grid .content-image:hover { transform: translateY(-.2rem); box-shadow: 0 1.2rem 2.4rem rgba(0,0,0,.38); }
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header { background: #160b14; }
}

/* Friendly editorial design: warm canvas, centered cards and clear visual rhythm. */
:root {
  --bg: #fff8f5;
  --surface: #ffffff;
  --surface-2: #fff0f6;
  --text: #34232e;
  --muted: #705d69;
  --accent: #e83e83;
  --accent-2: #f39a62;
  --line: #ecdce4;
  --ink: #34232e;
  --plum: #6b2852;
  --rose-soft: #fff0f6;
  --peach-soft: #fff2e9;
  --lavender-soft: #f7f1ff;
}

body {
  background:
    radial-gradient(circle at 8% 4%, rgba(255,199,221,.45), transparent 25rem),
    radial-gradient(circle at 92% 16%, rgba(255,218,185,.42), transparent 28rem),
    linear-gradient(180deg, #fffaf8 0, #fff7f4 45%, #fffaf8 100%);
  color: var(--ink);
}
a { color: #c52d70; }
a:hover { color: #7c1f51; }
h2 { color: var(--plum); }
h3 { color: #8c3568; }
.content-card p { color: var(--muted); }
.content-card strong { color: var(--ink); }

.age-bar { background: #4c193d; color: #fff4f8; }
.age-bar strong { border-color: #ffc77d; color: #ffc77d; }
.age-rates { color: #ffe7f1; }
.site-header {
  border-bottom-color: rgba(107,40,82,.12);
  background: rgba(255,252,250,.94);
  box-shadow: 0 .65rem 2rem rgba(73,28,58,.06);
}
.brand { color: var(--plum); }
.brand-mark { background: linear-gradient(135deg, #f45b9a, #af59df); }
.section-nav { border-top-color: rgba(107,40,82,.09); background: rgba(255,255,255,.72); }
.section-nav a { color: #684e60; }
.section-nav a:hover { background: var(--rose-soft); color: #9e225f; }

main { max-width: 76rem; }
.content-card {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-stage {
  overflow: hidden;
  border: 1px solid rgba(107,40,82,.13);
  border-radius: 1.65rem;
  box-shadow: 0 2rem 5rem rgba(76,25,61,.18);
}
.hero-shade {
  background: linear-gradient(0deg, rgba(67,18,52,.96) 0%, rgba(84,25,65,.76) 52%, rgba(70,20,54,.08) 100%);
}
.hero-eyebrow { border-color: rgba(255,255,255,.5); background: rgba(91,28,70,.62); }
.hero-secondary, .button-secondary {
  border: 0;
  background: linear-gradient(135deg, #ff6ca8, #ef4889);
  box-shadow: 0 .75rem 1.8rem rgba(202,47,112,.25);
  color: #fff !important;
}
.hero-secondary:hover, .button-secondary:hover { background: #fff; color: var(--plum) !important; }

.quick-answer {
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
  border-color: rgba(211,76,134,.22);
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #fff5f9 58%, #fff0e7 100%);
  box-shadow: 0 1.5rem 4rem rgba(107,40,82,.1);
}
.quick-answer::after {
  content: '';
  position: absolute;
  right: -4rem;
  top: -5rem;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244,91,154,.14), rgba(243,154,98,.12));
  pointer-events: none;
}
.quick-answer h2 { position: relative; z-index: 1; color: var(--plum); }
.quick-answer dl div {
  border: 1px solid rgba(107,40,82,.09);
  background: #fff;
  box-shadow: 0 .6rem 1.6rem rgba(107,40,82,.06);
}
.quick-answer dl div:nth-child(2) { background: var(--rose-soft); }
.quick-answer dl div:nth-child(3) { background: var(--peach-soft); }
.quick-answer dt { color: #b22b69; }
.topic-overview ul { padding: 0; list-style: none; }
.topic-overview a {
  padding: .65rem .8rem;
  border: 1px solid var(--line);
  border-radius: .75rem;
  background: rgba(255,255,255,.72);
  color: #7a315d;
  font-weight: 700;
  text-decoration: none;
}
.topic-overview a:hover { border-color: #ef8db6; background: #fff; transform: translateY(-1px); }

.topic-section {
  position: relative;
  overflow: hidden;
  border-color: rgba(107,40,82,.1);
  border-radius: 1.6rem;
  background: #fff;
  box-shadow: 0 1.5rem 4rem rgba(93,44,72,.09);
}
.topic-section::before {
  content: '';
  position: absolute;
  z-index: 0;
  width: 14rem;
  height: 14rem;
  right: -7rem;
  top: -7rem;
  border-radius: 50%;
  background: rgba(242,96,155,.07);
}
.topic-section.section-tone-1 { background: linear-gradient(145deg, #fff 0%, #fff8fb 100%); }
.topic-section.section-tone-2 { background: linear-gradient(145deg, #fff 0%, #fff8f2 100%); }
.topic-section.section-tone-3 { background: linear-gradient(145deg, #fff 0%, #f9f5ff 100%); }
.section-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 .7rem !important;
  color: #d83c7d !important;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-align: center;
  text-transform: uppercase;
}
.topic-section > h2 {
  position: relative;
  z-index: 1;
  max-width: 22ch;
  margin: 0 auto 1.1rem;
  color: var(--plum);
  text-align: center;
}
.section-lead {
  position: relative;
  z-index: 1;
  max-width: 58rem !important;
  margin: 0 auto 2rem !important;
  color: #58404f !important;
  font-size: clamp(1.05rem, 2.5vw, 1.22rem);
  line-height: 1.75;
  text-align: center;
}
.section-body { position: relative; z-index: 1; max-width: 64rem; margin: 0 auto; }
.section-body > p, .section-body > ul { margin-left: auto; margin-right: auto; }
.section-body > p { line-height: 1.78; }

.detail-card {
  break-inside: avoid;
  padding: 1.2rem;
  border: 1px solid rgba(107,40,82,.09);
  border-radius: 1rem;
  background: rgba(255,255,255,.82);
  box-shadow: 0 .8rem 2.2rem rgba(93,44,72,.07);
}
.detail-card:nth-child(2n) { background: var(--rose-soft); }
.detail-card:nth-child(3n) { background: var(--peach-soft); }
.detail-card h3 { margin: 0 0 .65rem; color: #8c3568; }
.detail-card p { margin: 0; color: var(--muted); }
.has-details .section-body { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.has-details .section-body > ul,
.has-details .section-body > p,
.has-details .rate-panel,
.has-details .legal-note,
.has-details .sponsored-link,
.has-details .age-badge { grid-column: 1 / -1; }

.image-grid { gap: 1rem; }
.image-grid .content-image {
  border: .35rem solid #fff;
  border-radius: 1.2rem;
  background: var(--rose-soft);
  box-shadow: 0 1rem 2.5rem rgba(93,44,72,.14);
}

.rate-panel {
  border-color: rgba(232,62,131,.2);
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #fff3f8, #fff7ef);
}
.rate-panel > h3 { color: var(--plum); text-align: center; }
.rate-card {
  border-color: rgba(107,40,82,.09);
  background: #fff;
  box-shadow: 0 .6rem 1.6rem rgba(93,44,72,.06);
}
.rate-card .country { color: #cc3976; }
.rate-card .rate-number { color: var(--plum); }
.legal-note { border-left-color: #f39a62; background: #fff8f1; color: #66515d; }

.site-footer { border-top-color: rgba(107,40,82,.1); background: #4c193d; }
.footer-inner { color: #f7e8f0; }
.footer-inner a { color: #ffc1dc; }

@media (min-width: 40rem) {
  .quick-answer { border-radius: 1.8rem; }
  .topic-section { border-radius: 1.8rem; }
  .has-details .section-body { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (min-width: 64rem) {
  .hero-stage { border-radius: 2rem; }
  .hero-shade { background: linear-gradient(270deg, rgba(67,18,52,.94) 0%, rgba(86,27,68,.78) 47%, rgba(68,20,53,.05) 100%), linear-gradient(0deg, rgba(64,18,49,.28), transparent 45%); }
  .quick-answer { margin: 2rem; padding: 2.4rem; }
  .topic-section { margin: 2rem; padding: 4rem; }
  .is-editorial .section-body { columns: 2 25rem; column-gap: 4rem; column-rule: 1px solid rgba(107,40,82,.1); }
  .is-editorial .section-body > p { margin-top: 0; margin-bottom: 1.6rem; break-inside: avoid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .image-grid .content-image { transition: none; }
}

@media print {
  .site-header, .age-bar, .skip-link { display: none; }
  body { background: #fff; color: #000; }
  .content-card { border: 0; box-shadow: none; background: #fff; }
  .content-card p { color: #222; }
  a { color: #000; }
}