:root {
  --ink: #10131a;
  --muted: #697181;
  --line: #dfe4ec;
  --paper: #f8f9fc;
  --surface: #ffffff;
  --soft: #f0f3f8;
  --soft-2: #e9edf5;
  --accent: #3157f6;
  --accent-2: #7357ff;
  --accent-soft: #edf1ff;
  --shadow: 0 14px 40px rgba(30, 45, 80, .08);
  --max: 1180px;
  --reading: 760px;
  --radius: 22px;
  --radius-small: 14px;
}

html[data-theme="dark"] {
  --ink: #eef2f8;
  --muted: #9ca7b8;
  --line: #293140;
  --paper: #0d1118;
  --surface: #141a23;
  --soft: #1a2230;
  --soft-2: #202a39;
  --accent: #7b93ff;
  --accent-2: #9d82ff;
  --accent-soft: #1c2749;
  --shadow: 0 18px 48px rgba(0, 0, 0, .26);
}

* { box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: smooth; }
html[data-theme="dark"] { color-scheme: dark; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 92% 2%, color-mix(in srgb, var(--accent) 7%, transparent) 0, transparent 28rem),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  transition: background-color .22s ease, color .22s ease;
}
img { max-width: 100%; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .14em; }
a:hover { color: var(--accent); }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 86%, transparent);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(18px) saturate(135%);
}
.header-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
}
.brand-block { display: flex; flex-direction: column; min-width: max-content; }
.brand {
  font-weight: 850;
  letter-spacing: -.045em;
  font-size: 1.42rem;
  line-height: 1.05;
  text-decoration: none;
}
.brand-subtitle {
  margin-top: 5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .105em;
  font-size: .56rem;
  font-weight: 750;
}
.header-actions { display: flex; align-items: center; gap: 14px; min-width: 0; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
  font-size: .86rem;
}
.primary-nav::-webkit-scrollbar { display: none; }
.primary-nav a {
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--muted);
  transition: color .18s ease, background .18s ease;
}
.primary-nav a:hover { color: var(--ink); background: var(--soft); }
.theme-toggle {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(25, 35, 60, .05);
}
.theme-toggle:hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.theme-icon { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.theme-icon-moon { display: none; }
html[data-theme="dark"] .theme-icon-sun { display: none; }
html[data-theme="dark"] .theme-icon-moon { display: block; }

.hero {
  padding: 72px 0 48px;
  max-width: 900px;
}
.hero-compact {
  max-width: none;
  padding: 58px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
}
.hero-main { max-width: 790px; }
.eyebrow, .story-kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .68rem;
  font-weight: 820;
  color: var(--muted);
}
.accent-eyebrow { color: var(--accent); }
h1, h2, h3 { line-height: 1.05; letter-spacing: -.04em; }
.hero h1 { max-width: 820px; margin: 0; font-size: clamp(3rem, 7vw, 6.2rem); }
.hero-compact h1 { font-size: clamp(3.1rem, 7vw, 6rem); }
.hero-copy { max-width: 680px; margin: 18px 0 0; color: var(--muted); font-size: clamp(1.02rem, 2vw, 1.24rem); }
.hero-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 8px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .62rem;
  font-weight: 750;
  line-height: 1.55;
}
.hero-note-line { width: 32px; height: 1px; margin-top: .55em; background: var(--accent); }

.signal-section { padding: 8px 0 54px; }
.signal-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .8fr);
  min-height: 370px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.signal-copy { padding: clamp(28px, 5vw, 54px); display: flex; flex-direction: column; }
.signal-topline { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.signal-label, .signal-type {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .66rem;
  font-weight: 820;
}
.signal-label { color: var(--accent); display: inline-flex; align-items: center; gap: 8px; }
.signal-type { color: var(--muted); }
.signal-dot { width: 7px; height: 7px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 0 0 4px var(--accent-soft); }
.signal-card h2 { max-width: 760px; margin: 25px 0 14px; font-size: clamp(2.15rem, 5vw, 4.3rem); }
.signal-card h2 a { text-decoration: none; }
.signal-summary { max-width: 720px; margin: 0; color: var(--muted); font-size: 1.04rem; }
.signal-footer { margin-top: auto; padding-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.story-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-size: .82rem;
  font-weight: 780;
  text-decoration: none;
}
.story-action:hover { color: white; filter: brightness(1.04); }
.signal-image, .signal-visual { min-height: 100%; background: var(--soft); text-decoration: none; }
.signal-image { display: block; }
.signal-image img { width: 100%; height: 100%; min-height: 370px; display: block; object-fit: cover; }
.signal-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 34px;
  background:
    radial-gradient(circle at 68% 38%, color-mix(in srgb, var(--accent-2) 46%, transparent) 0, transparent 25%),
    radial-gradient(circle at 38% 62%, color-mix(in srgb, var(--accent) 40%, transparent) 0, transparent 38%),
    linear-gradient(150deg, #11172a, #1d2550 52%, #433a7a);
  color: #f5f7ff;
}
.signal-orbit {
  position: absolute;
  width: 360px;
  aspect-ratio: 1;
  top: -90px;
  right: -150px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(114, 88, 255, .16), inset 0 0 42px rgba(77, 122, 255, .12);
}
.signal-orbit::after {
  content: "";
  position: absolute;
  inset: 52px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
}
.signal-visual-copy { position: relative; text-transform: uppercase; letter-spacing: .16em; font-size: .68rem; line-height: 1.65; font-weight: 700; }

.latest-section { padding: 14px 0 84px; }
.editorial-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--ink);
}
.section-heading h2, .page-header h1 { font-size: clamp(2rem, 4vw, 3.4rem); margin: 0; }
.editorial-heading h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
.section-note { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: .61rem; font-weight: 750; }
.story-stream { border-bottom: 1px solid var(--line); }
.stream-story {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) minmax(0, 190px);
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.stream-story:first-child { border-top: 0; }
.story-number { align-self: start; padding-top: 3px; color: var(--accent); font-size: .78rem; font-weight: 850; letter-spacing: .08em; }
.stream-copy { max-width: 760px; }
.stream-topline { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.stream-topline .story-kicker { margin: 0; color: var(--accent); }
.stream-copy h3 { margin: 8px 0 8px; font-size: clamp(1.45rem, 3vw, 2.15rem); }
.stream-copy h3 a { text-decoration: none; }
.stream-copy p { max-width: 700px; margin: 0; color: var(--muted); }
.stream-thumb { display: block; aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--radius-small); background: var(--soft); }
.stream-thumb img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .22s ease; }
.stream-story:hover .stream-thumb img { transform: scale(1.025); }

.section-block { padding: 24px 0 72px; border-top: 1px solid var(--ink); }
.story-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.story-card { border-top: 1px solid var(--line); padding-top: 18px; }
.story-card h3 { margin: 0 0 10px; font-size: 1.45rem; }
.story-card h3 a, .story-row h2 a { text-decoration: none; }
.story-card p { color: var(--muted); }
.lead-story { grid-column: span 2; }
.lead-story h3 { font-size: clamp(2rem, 4vw, 3.5rem); }
.story-meta, .article-meta { color: var(--muted); font-size: .78rem; font-variant-numeric: tabular-nums; }
.page-header { padding: 64px 0 28px; }
.story-row { display: grid; grid-template-columns: 1fr auto; gap: 24px; padding: 26px 0; border-top: 1px solid var(--line); }
.story-row h2 { margin: 0 0 8px; font-size: clamp(1.4rem, 3vw, 2.2rem); }
.story-row p { margin: 0; color: var(--muted); }

.article-page { padding: 64px 0 96px; }
.article-header { max-width: 900px; margin-bottom: 40px; }
.article-header h1 { margin: 0; font-size: clamp(2.6rem, 7vw, 5.4rem); }
.article-deck { max-width: 800px; font-size: clamp(1.15rem, 2.3vw, 1.5rem); color: var(--muted); }
.article-meta { display: flex; gap: 14px; flex-wrap: wrap; }
.taxonomy-trail { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 14px; color: var(--muted); font-size: .82rem; }
.topic-list { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.topic-list a { background: var(--soft); border-radius: 999px; padding: 5px 10px; text-decoration: none; font-size: .82rem; }
.article-hero-image { width: min(100%, 980px); margin: 0 0 44px; }
.article-hero-image img { display: block; width: 100%; max-height: 680px; object-fit: contain; object-position: center; background: var(--soft); border-radius: var(--radius-small); }
.article-hero-image figcaption { margin-top: 8px; color: var(--muted); font-size: .82rem; }
.article-body { max-width: var(--reading); font-family: Georgia, "Times New Roman", serif; font-size: 1.12rem; }
.article-body h2 { margin-top: 2.2em; font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 2rem; }
.article-body h3 { margin-top: 1.8em; font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 1.45rem; }
.article-body a { color: color-mix(in srgb, var(--accent) 88%, var(--ink)); }
.article-body img { max-width: 100%; height: auto; border-radius: 10px; }
.article-body pre { overflow-x: auto; padding: 16px; background: var(--soft); border: 1px solid var(--line); border-radius: 10px; }
.empty-state { padding: 32px 0; color: var(--muted); }
.site-footer { border-top: 1px solid var(--line); padding: 36px 0 44px; color: var(--muted); font-size: .88rem; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; }
.footer-row strong { color: var(--ink); }

@media (max-width: 900px) {
  .header-row { min-height: 70px; }
  .brand-subtitle { display: none; }
  .primary-nav { position: absolute; left: 0; right: 0; top: 69px; width: 100%; padding: 8px 20px 9px; border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--paper) 94%, transparent); }
  .site-header { margin-bottom: 43px; }
  .header-actions { margin-left: auto; }
  .hero-compact { padding-top: 34px; grid-template-columns: 1fr; gap: 22px; }
  .hero-note { display: none; }
  .signal-card { grid-template-columns: minmax(0, 1fr) 36%; }
  .stream-story { grid-template-columns: 42px minmax(0, 1fr) 150px; gap: 18px; }
}

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .brand { font-size: 1.28rem; }
  .theme-toggle { width: 36px; height: 36px; }
  .primary-nav { padding-inline: 14px; }
  .primary-nav a { padding: 6px 9px; font-size: .83rem; }
  .hero-compact { padding: 28px 0 24px; }
  .hero-compact .eyebrow { display: none; }
  .hero-compact h1 { font-size: clamp(2.65rem, 14vw, 4.2rem); }
  .hero-copy { margin-top: 12px; font-size: .99rem; line-height: 1.5; }
  .signal-section { padding-bottom: 36px; }
  .signal-card { grid-template-columns: 1fr; min-height: auto; border-radius: 18px; }
  .signal-copy { padding: 24px 22px; min-height: 330px; }
  .signal-card h2 { margin-top: 20px; font-size: clamp(2rem, 10vw, 3.05rem); }
  .signal-summary { font-size: .96rem; }
  .signal-image, .signal-visual { order: -1; min-height: 0; aspect-ratio: 16 / 9; }
  .signal-image img { min-height: 0; aspect-ratio: 16 / 9; object-fit: cover; }
  .signal-visual { padding: 22px; }
  .signal-orbit { width: 270px; top: -120px; right: -85px; }
  .editorial-heading { align-items: flex-start; }
  .section-note { display: none; }
  .stream-story { grid-template-columns: 30px minmax(0, 1fr) 88px; gap: 12px; padding: 22px 0; }
  .story-number { font-size: .7rem; }
  .stream-copy h3 { font-size: 1.32rem; line-height: 1.08; }
  .stream-copy p { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; font-size: .9rem; line-height: 1.48; }
  .stream-topline .story-meta { display: none; }
  .stream-thumb { aspect-ratio: 1 / 1; border-radius: 11px; }
  .story-grid { grid-template-columns: 1fr; }
  .lead-story { grid-column: auto; }
  .story-row { grid-template-columns: 1fr; gap: 8px; }
  .article-page { padding-top: 42px; }
  .article-header { margin-bottom: 28px; }
  .article-header h1 { font-size: clamp(2.45rem, 12vw, 4rem); }
  .article-hero-image { margin-bottom: 32px; }
  .article-hero-image img { max-height: none; }
  .footer-row { flex-direction: column; gap: 5px; }
}

@media (max-width: 430px) {
  .stream-story { grid-template-columns: 26px minmax(0, 1fr) 74px; gap: 10px; }
  .stream-copy h3 { font-size: 1.18rem; }
  .stream-copy p { display: none; }
  .signal-footer { align-items: flex-end; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}


/* Update-first homepage */
.updates-hero {
  padding: 50px 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 42px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}
.updates-hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}
.updates-hero-copy {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}
.updates-first {
  padding-top: 28px;
  padding-bottom: 56px;
}
.updates-heading {
  padding-bottom: 15px;
}
.weekly-section {
  padding: 20px 0 84px;
}
.weekly-heading {
  margin-bottom: 22px;
}
.weekly-card {
  min-height: 330px;
}
.weekly-card .signal-image img {
  min-height: 330px;
}

@media (max-width: 900px) {
  .updates-hero {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 30px;
  }
  .updates-hero-copy {
    max-width: 620px;
  }
}

@media (max-width: 680px) {
  .site-header {
    margin-bottom: 39px;
  }
  .header-row {
    min-height: 56px;
  }
  .brand {
    font-size: 1.08rem;
  }
  .theme-toggle {
    width: 32px;
    height: 32px;
  }
  .primary-nav {
    top: 55px;
    padding-block: 4px 5px;
  }
  .primary-nav a {
    padding: 4px 8px;
    font-size: .76rem;
  }
  .updates-hero {
    display: block;
    padding: 16px 0 12px;
  }
  .updates-hero .eyebrow {
    margin-bottom: 4px;
    font-size: .58rem;
  }
  .updates-hero h1 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }
  .updates-hero-copy {
    display: none;
  }
  .updates-first {
    padding: 10px 0 38px;
  }
  .updates-heading {
    padding-bottom: 8px;
  }
  .updates-heading .eyebrow {
    display: none;
  }
  .updates-heading h2 {
    font-size: 1.22rem;
    letter-spacing: -.025em;
  }
  .stream-story {
    grid-template-columns: 20px minmax(0, 1fr) 58px;
    gap: 8px;
    min-height: 75px;
    padding: 8px 0;
  }
  .story-number {
    padding-top: 1px;
    font-size: .58rem;
  }
  .stream-topline {
    min-height: 12px;
  }
  .stream-topline .story-kicker {
    font-size: .54rem;
  }
  .stream-copy h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 3px 0 0;
    font-size: .98rem;
    line-height: 1.1;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .stream-copy p {
    display: none;
  }
  .stream-thumb {
    width: 58px;
    height: 58px;
    aspect-ratio: 1;
    border-radius: 9px;
  }
  .weekly-section {
    padding: 10px 0 58px;
  }
  .weekly-heading {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  .weekly-heading h2 {
    font-size: 1.55rem;
  }
  .weekly-card .signal-copy {
    min-height: 0;
    padding: 22px 20px;
  }
  .weekly-card .signal-card h2,
  .weekly-card h2 {
    margin: 15px 0 10px;
    font-size: 1.75rem;
  }
  .weekly-card .signal-image {
    order: 0;
    aspect-ratio: 16 / 7;
  }
  .weekly-card .signal-image img {
    min-height: 0;
    aspect-ratio: 16 / 7;
  }
  .weekly-card .signal-footer {
    padding-top: 18px;
  }
}

@media (max-width: 430px) {
  .stream-story {
    grid-template-columns: 18px minmax(0, 1fr) 54px;
    gap: 7px;
    min-height: 71px;
  }
  .stream-thumb {
    width: 54px;
    height: 54px;
  }
}


/* Mobile-first article reading flow */
.article-classification {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}
.article-classification .eyebrow,
.article-classification .taxonomy-trail {
  margin: 0;
}
.article-details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 22px;
}
.article-details .topic-list {
  margin-top: 0;
}

@media (max-width: 680px) {
  .article-page {
    padding: 20px 0 64px;
  }
  .article-header {
    margin-bottom: 20px;
  }
  .article-classification {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 11px;
  }
  .article-classification .eyebrow {
    font-size: .59rem;
  }
  .taxonomy-trail {
    gap: 5px;
    font-size: .7rem;
    line-height: 1.35;
  }
  .article-header h1 {
    font-size: clamp(1.85rem, 7.7vw, 2.35rem);
    line-height: 1.01;
    letter-spacing: -.045em;
  }
  .article-deck {
    margin: 14px 0 0;
    font-size: .98rem;
    line-height: 1.47;
  }
  .article-details {
    gap: 9px 12px;
    margin-top: 14px;
  }
  .article-meta {
    gap: 7px 12px;
    font-size: .68rem;
  }
  .topic-list {
    gap: 5px;
  }
  .topic-list a {
    padding: 3px 8px;
    font-size: .68rem;
  }
  .article-hero-image {
    margin-bottom: 25px;
  }
  .article-hero-image img {
    height: min(52vw, 220px);
    max-height: 220px;
    object-fit: contain;
    border-radius: 10px;
  }
  .article-hero-image .image-credit {
    gap: 2px;
    margin-top: 7px;
    font-size: .68rem;
    line-height: 1.35;
  }
  .article-hero-image .image-source-line {
    font-size: .65rem;
  }
  .article-body {
    font-size: 1.02rem;
    line-height: 1.62;
  }
  .article-body h2 {
    margin-top: 1.9em;
    font-size: 1.55rem;
  }
  .article-body h3 {
    margin-top: 1.6em;
    font-size: 1.25rem;
  }
}

@media (max-width: 430px) {
  .article-header h1 {
    font-size: clamp(1.78rem, 7.5vw, 2rem);
  }
}


/* Preserve authentic editorial media appearance */
.signal-image img,
.stream-thumb img,
.article-hero-image img {
  filter: none;
  mix-blend-mode: normal;
}


/* Legal, contact, and cookie-consent surfaces */

.footer-brand { display: flex; flex-direction: column; gap: 5px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; }
.footer-links a { color: var(--muted); font-size: .82rem; }
.standard-page { padding: 64px 0 96px; }
.page-deck { max-width: 760px; color: var(--muted); font-size: 1.18rem; }
.standard-page .article-body { margin-top: 18px; }
.standard-page .article-body h2 { scroll-margin-top: 100px; }
.standard-page .article-body ul, .standard-page .article-body ol { padding-left: 1.35rem; }
.consent-banner { position: fixed; z-index: 50; left: 16px; right: 16px; bottom: 16px; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px; background: color-mix(in srgb, var(--surface) 96%, transparent); box-shadow: 0 16px 50px rgba(10, 18, 40, .22); }
.consent-banner[hidden] { display: none; }
.consent-banner-copy { max-width: 680px; }
.consent-banner-copy strong { display: block; margin-bottom: 4px; }
.consent-banner-copy p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.45; }
.consent-actions, .consent-dialog-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.consent-button { border: 1px solid var(--line); border-radius: 999px; padding: 9px 13px; font: inherit; font-size: .78rem; font-weight: 750; cursor: pointer; white-space: nowrap; }
.consent-button-primary { border-color: var(--accent); background: var(--accent); color: #fff; }
.consent-button-secondary { background: var(--surface); color: var(--ink); }
.consent-dialog { width: min(560px, calc(100% - 28px)); padding: 0; border: 0; border-radius: 18px; background: transparent; color: var(--ink); }
.consent-dialog::backdrop { background: rgba(8, 12, 24, .58); backdrop-filter: blur(3px); }
.consent-dialog-card { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: var(--shadow); }
.consent-dialog-card h2 { margin: 0 0 10px; font-size: 2rem; }
.consent-dialog-card > p:not(.eyebrow) { color: var(--muted); }
.consent-dialog-close { position: absolute; top: 14px; right: 16px; border: 0; background: transparent; color: var(--muted); font-size: 1.7rem; cursor: pointer; }
.consent-option { display: flex; justify-content: space-between; gap: 18px; padding: 14px 0; border-top: 1px solid var(--line); }
.consent-option span { display: flex; flex-direction: column; gap: 3px; }
.consent-option small { color: var(--muted); }
.consent-option input { width: 20px; height: 20px; accent-color: var(--accent); }
.consent-dialog-actions { justify-content: flex-end; margin-top: 20px; }
@media (max-width: 680px) {
  .standard-page { padding: 38px 0 64px; }
  .standard-page .page-header { padding: 24px 0 20px; }
  .consent-banner { left: 10px; right: 10px; bottom: 10px; flex-direction: column; align-items: stretch; gap: 12px; padding: 16px; }
  .consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .consent-actions .consent-button-primary { grid-column: 1 / -1; }
  .consent-button { width: 100%; }
}
