:root,
html[data-theme="dark"] {
  color-scheme: dark;
  --page-bg: #0b1115;
  --panel-bg: #121b20;
  --border-color: #2a373e;
  --text-main: #f3efe4;
  --text-muted: #c9c4b8;
  --text-faint: #7f8b90;
  --ink: var(--page-bg);
  --ink-soft: var(--panel-bg);
  --ink-line: var(--border-color);
  --paper: var(--text-main);
  --paper-muted: var(--text-muted);
  --signal-red: #e0463a;
  --verified-cyan: #70c8cf;
  --quiet-gold: #bda66f;
  --page-glow: rgba(112, 200, 207, .07);
  --grid-line: rgba(255, 255, 255, .018);
  --page-background:
    radial-gradient(circle at 78% 10%, var(--page-glow), transparent 26rem),
    linear-gradient(135deg, #0b1115 0%, #0d171b 45%, #091014 100%);
  --panel-surface: linear-gradient(145deg, rgba(18, 27, 32, .94), rgba(11, 17, 21, .72));
  --sticky-bg: rgba(11, 17, 21, .94);
  --accent-shadow: rgba(224, 70, 58, .06);
  --gold-wash: rgba(189, 166, 111, .08);
  --cyan-wash: rgba(112, 200, 207, .1);
  --accent-contrast: #fff;
  --font-edition: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --font-editorial: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --font-reading: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --font-utility: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --type-h1: 48px;
  --type-h2: 32px;
  --type-h3: 24px;
  --type-body: 16px;
  --type-aux: 14px;
  --leading-h1: 1.25;
  --leading-h2: 1.35;
  --leading-h3: 1.45;
  --leading-body: 1.7;
  --leading-aux: 1.55;
  --page: min(1180px, calc(100vw - 48px));
}

html[data-theme="light"] {
  color-scheme: light;
  --page-bg: #f5f1e8;
  --panel-bg: #fffdf7;
  --border-color: #c9c2b4;
  --text-main: #161a1d;
  --text-muted: #4f575b;
  --text-faint: #687176;
  --signal-red: #c9362d;
  --verified-cyan: #087982;
  --quiet-gold: #7a631d;
  --page-glow: rgba(8, 121, 130, .07);
  --grid-line: transparent;
  --page-background:
    radial-gradient(circle at 78% 12%, rgba(8, 121, 130, .055), transparent 28rem),
    radial-gradient(circle at 16% 0%, rgba(189, 166, 111, .08), transparent 24rem),
    linear-gradient(135deg, #fbf8f0 0%, #f6f1e8 48%, #f0eadf 100%);
  --panel-surface: linear-gradient(145deg, rgba(255, 253, 247, .98), rgba(241, 235, 224, .92));
  --sticky-bg: rgba(245, 241, 232, .94);
  --accent-shadow: rgba(201, 54, 45, .08);
  --gold-wash: rgba(122, 99, 29, .08);
  --cyan-wash: rgba(8, 121, 130, .1);
  --accent-contrast: #fff;
}

html:lang(zh-Hant) {
  --font-edition: "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  --font-editorial: "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  --font-reading: "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  --font-utility: "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}

html:lang(ja) {
  --font-edition: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
  --font-editorial: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
  --font-reading: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
  --font-utility: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
}

* { box-sizing: border-box; }

html {
  background: var(--ink);
  color: var(--paper);
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--page-background);
  background-attachment: fixed;
  color: var(--paper);
  font-family: var(--font-reading);
  font-size: var(--type-body);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-underline-offset: .2em; }
a:hover { color: var(--verified-cyan); }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img, svg { max-width: 100%; }

:focus-visible {
  outline: 3px solid var(--verified-cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.masthead {
  width: var(--page);
  min-height: 94px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--ink-line);
}

.masthead-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.kd-logo-icon {
  width: 44px;
  height: 44px;
  display: block;
  flex: 0 0 44px;
  overflow: hidden;
  border: 1px solid var(--ink-line);
  border-radius: 4px;
  background: #fff;
}

.kd-logo-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy { min-width: 0; }

.masthead-brand strong {
  display: block;
  font-family: var(--font-editorial);
  color: var(--paper);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 600;
  line-height: 1.05;
}

.masthead-brand small {
  display: block;
  margin-top: -3px;
  color: var(--paper-muted);
  font-family: var(--font-utility);
  font-size: var(--type-aux);
  letter-spacing: .04em;
}

.language-nav { display: flex; gap: 4px; flex: 0 0 auto; }
.global-nav { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.global-nav a { color: var(--ink-muted); font-size: var(--type-aux); font-weight: 650; line-height: 1.5; text-decoration: none; white-space: nowrap; }
.global-nav a:hover,.global-nav a[aria-current="page"] { color: var(--paper); text-decoration: underline; text-decoration-color: var(--signal-red); text-underline-offset: 5px; }
.masthead-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; flex: 0 0 auto; }
.vertical-nav { display: flex; align-items: center; gap: 4px; flex: 0 0 auto; }
.vertical-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-bottom: 1px solid transparent;
  color: var(--paper-muted);
  font-family: var(--font-utility);
  font-size: 1rem;
  text-decoration: none;
}
.vertical-nav a:hover,
.vertical-nav a[aria-current="page"] { border-bottom-color: var(--signal-red); color: var(--paper); }
.theme-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid var(--ink-line);
  background: transparent;
  color: var(--paper-muted);
  cursor: pointer;
  font-family: var(--font-utility);
  font-size: var(--type-aux);
}
.theme-toggle:hover { color: var(--paper); border-color: var(--verified-cyan); }
.theme-toggle[aria-pressed="true"] { color: var(--paper); background: var(--ink-soft); }
.theme-toggle-icon { color: var(--signal-red); font-size: 17px; line-height: 1; }
.language-nav a {
  padding: 7px 10px;
  border: 1px solid transparent;
  color: var(--paper-muted);
  font-family: var(--font-utility);
  font-size: 11px;
  text-decoration: none;
}
.language-nav a[aria-current="page"] {
  border-color: var(--ink-line);
  color: var(--paper);
  background: var(--ink-soft);
}

main { width: var(--page); margin: 0 auto; }

.edition-hero {
  position: relative;
  padding: clamp(44px, 5vw, 70px) 0 clamp(36px, 4vw, 52px);
  border-bottom: 1px solid var(--ink-line);
}

.edition-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 410px);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}
.edition-hero-copy { min-width: 0; }

.edition-calendar {
  position: relative;
  padding: 24px;
  border: 1px solid var(--ink-line);
  background: var(--panel-surface);
  box-shadow: 18px 18px 0 var(--accent-shadow);
}
.edition-calendar::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 72px;
  height: 2px;
  background: var(--signal-red);
}
.calendar-heading,
.calendar-month-controls {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.calendar-heading > div:first-child > span,
.headline-index-heading > span {
  color: var(--signal-red);
  font-family: var(--font-utility);
  font-size: var(--type-aux);
  font-weight: 700;
  letter-spacing: .1em;
}
.calendar-heading h2 { margin: 6px 0 0; }
.calendar-month-link {
  width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink-line);
  color: var(--paper);
  text-decoration: none;
}
.calendar-month-link.is-disabled { color: var(--text-faint); }
.calendar-month { margin: 24px 0 12px; color: var(--paper); font-weight: 700; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 3px; }
.calendar-weekday,
.calendar-date {
  min-width: 0;
  min-height: 44px;
  display: grid;
  place-items: center;
  font-family: var(--font-utility);
  font-size: var(--type-aux);
  line-height: 1;
}
.calendar-weekday { min-height: 32px; color: var(--verified-cyan); font-weight: 700; }
.calendar-date { color: var(--text-faint); text-decoration: none; }
.calendar-date.has-edition { border: 1px solid var(--quiet-gold); color: var(--paper); background: var(--gold-wash); }
.calendar-date.has-edition:hover { border-color: var(--verified-cyan); background: var(--cyan-wash); }
.calendar-date[aria-current="date"] { border-color: var(--signal-red); background: var(--signal-red); color: var(--accent-contrast); font-weight: 700; }
.calendar-archive-link { display: inline-block; margin-top: 18px; color: var(--paper-muted); font-size: var(--type-aux); }

.edition-hero::before {
  content: "SIGNAL / CONTEXT / CONSEQUENCE";
  position: absolute;
  right: 0;
  top: 42px;
  color: var(--ink-line);
  font-family: var(--font-utility);
  font-size: clamp(11px, 1.3vw, 15px);
  letter-spacing: .18em;
  writing-mode: vertical-rl;
}

.edition-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--signal-red);
  font-family: var(--font-utility);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.edition-label span::after { content: ""; display: inline-block; width: 42px; height: 1px; margin-left: 14px; background: var(--signal-red); vertical-align: middle; }
.edition-label time { color: var(--paper-muted); letter-spacing: .04em; }

.edition-hero h1,
.hub-hero h1 {
  max-width: 920px;
  margin: 28px 0 18px;
  font-family: var(--font-edition);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.03em;
  text-wrap: balance;
}

html:lang(zh-Hant) .edition-hero h1,
html:lang(zh-Hant) .hub-hero h1,
html:lang(ja) .edition-hero h1,
html:lang(ja) .hub-hero h1 {
  letter-spacing: -.015em;
}

.edition-dek,
.hub-hero > p {
  max-width: 720px;
  margin: 0;
  color: var(--paper-muted);
  font-family: var(--font-editorial);
  font-size: clamp(19px, 2.1vw, 25px);
  line-height: 1.62;
}

.edition-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  margin-top: 30px;
  color: var(--paper-muted);
  font-family: var(--font-utility);
  font-size: 10px;
  letter-spacing: .08em;
}
.edition-meta span:not(:last-child)::after { content: " /"; color: var(--ink-line); }

.editor-note {
  max-width: 760px;
  margin: 24px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--quiet-gold);
  color: var(--paper-muted);
  font-size: 16px;
  line-height: 1.8;
}

.topic-filter {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  gap: 6px;
  padding: 16px 0;
  overflow-x: auto;
  scrollbar-width: thin;
  background: var(--sticky-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink-line);
}
.topic-filter button {
  flex: 0 0 auto;
  padding: 8px 13px;
  border: 1px solid var(--ink-line);
  border-radius: 99px;
  background: transparent;
  color: var(--paper-muted);
  cursor: pointer;
  font-family: var(--font-utility);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.topic-filter button[aria-pressed="true"] { border-color: var(--signal-red); background: var(--signal-red); color: var(--accent-contrast); }

.headline-index {
  padding: 30px 0 34px;
  border-bottom: 1px solid var(--ink-line);
}
.headline-index-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.headline-index-heading h2 { margin: 0; }
.headline-index-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: var(--ink-line);
  list-style: none;
}
.headline-index-list li { min-width: 0; background: var(--ink); }
.headline-index-list a {
  min-height: 62px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 16px;
  color: var(--paper);
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}
.headline-index-list a:hover { background: var(--ink-soft); color: var(--verified-cyan); }
.headline-index-list a > span { color: var(--signal-red); font-family: var(--font-utility); font-size: var(--type-aux); font-weight: 700; }
.headline-index-list strong { font-size: var(--type-body); font-weight: 500; line-height: 1.5; overflow-wrap: anywhere; }

.story-stream { counter-reset: story; }
.story-ledger {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: clamp(52px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--ink-line);
  transition: opacity .22s ease, transform .22s ease;
  scroll-margin-top: 82px;
}
.story-ledger[hidden] { display: none; }

.story-rank {
  color: var(--signal-red);
  font-family: var(--font-editorial);
  font-size: clamp(42px, 6vw, 84px);
  font-variant-numeric: tabular-nums;
  line-height: .82;
  letter-spacing: -.06em;
}
.story-rank::after { content: "."; }
.story-main { min-width: 0; }

.story-dossier {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, .72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.story-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: start;
  margin-bottom: 18px;
}
.story-column { min-width: 0; }
.story-copy { min-width: 0; }
.story-visual { margin: 0; min-width: 0; }
.story-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--ink-line);
  background: var(--ink-soft);
}
.story-visual figcaption {
  margin-top: 10px;
  color: var(--paper-muted);
  font-family: var(--font-utility);
  font-size: var(--type-aux);
  line-height: var(--leading-aux);
}

.story-kicker { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 20px; margin-bottom: 0; font-family: var(--font-utility); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.story-kicker > span:first-child { color: var(--quiet-gold); }
.verified-mark { color: var(--verified-cyan); }

.story-main h2 {
  max-width: 970px;
  margin: 0;
  font-family: var(--font-editorial);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.012em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}
.story-lead .story-main h2 { font-size: clamp(38px, 5.6vw, 66px); }

.story-brief {
  max-width: 830px;
  margin: 30px 0 0;
  color: var(--paper-muted);
  font-family: var(--font-reading);
  font-size: clamp(17px, 1.8vw, 23px);
  line-height: 1.8;
}

.story-analysis,
.story-followup {
  display: grid;
  gap: 1px;
  background: var(--ink-line);
  border: 1px solid var(--ink-line);
}
.story-analysis {
  grid-template-columns: 1fr;
  margin-top: 28px;
}
.story-analysis section { min-width: 0; padding: 20px 22px; background: var(--ink-soft); }
.story-analysis h3,
.sources h3,
.confirmed-panel summary,
.story-followup summary {
  margin: 0 0 12px;
  color: var(--verified-cyan);
  font-family: var(--font-utility);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.story-analysis p { margin: 0; color: var(--paper-muted); font-size: 16px; line-height: 1.8; }

.confirmed-panel {
  margin-top: 1px;
  padding: 20px 22px;
  border: 1px solid var(--ink-line);
  background: var(--ink);
}
.story-followup {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 32px;
}
.story-followup details { min-width: 0; padding: 22px 24px; background: var(--ink); }
.story-followup details:only-child { grid-column: 1 / -1; }
.confirmed-panel summary,
.story-followup summary { cursor: pointer; color: var(--paper); list-style: none; }
.confirmed-panel summary::-webkit-details-marker,
.story-followup summary::-webkit-details-marker { display: none; }
.confirmed-panel summary::after,
.story-followup summary::after { content: "+"; float: right; color: var(--signal-red); }
.confirmed-panel[open] summary::after,
.story-followup details[open] summary::after { content: "−"; }
.confirmed-panel ul,
.story-followup ul { margin: 16px 0 0; padding-left: 18px; color: var(--paper-muted); font-size: 16px; line-height: 1.8; }
.confirmed-panel li + li,
.story-followup li + li { margin-top: 8px; }
.empty-note { color: var(--paper-muted); font-size: 16px; line-height: 1.8; }

.timeline { margin: 18px 0 0; padding: 0; list-style: none; }
.timeline li { display: grid; grid-template-columns: max-content minmax(0, 1fr); gap: 28px; padding: 9px 0; border-top: 1px solid var(--ink-line); font-size: 16px; line-height: 1.8; }
.timeline time { color: var(--quiet-gold); font-family: var(--font-utility); font-size: 12px; white-space: nowrap; }

.sources { margin-top: 36px; }
.source-list { margin: 0; padding: 0; border-top: 1px solid var(--ink-line); list-style: none; }
.source-list li { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--ink-line); }
.source-index { color: var(--ink-line); font-family: var(--font-editorial); font-size: 28px; line-height: 1; }
.source-meta { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 14px; }
.source-meta strong { font-size: 13px; }
.source-meta span { color: var(--verified-cyan); font-family: var(--font-utility); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.source-list a { display: block; margin-top: 4px; color: var(--paper-muted); font-size: 13px; overflow-wrap: anywhere; }
.source-list small { display: block; margin-top: 0; color: var(--text-faint); font-family: var(--font-utility); font-size: 9px; }

.related { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 28px; }
.related > span { color: var(--paper-muted); font-family: var(--font-utility); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.knowledge-link { padding: 7px 10px; border: 1px solid var(--ink-line); color: var(--paper); font-size: 11px; text-decoration: none; }

.methodology {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
  gap: clamp(34px, 8vw, 110px);
  padding: clamp(70px, 9vw, 128px) 0;
  border-bottom: 1px solid var(--ink-line);
}
.method-number { display: block; color: var(--signal-red); font-family: var(--font-editorial); font-size: clamp(28px, 3vw, 40px); line-height: 1; }
.methodology h2 { margin: 16px 0 0; font-family: var(--font-editorial); font-size: clamp(24px, 2.6vw, 36px); font-weight: 500; line-height: 1.2; }
.methodology h3 { margin: 0; color: var(--verified-cyan); font-family: var(--font-utility); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.methodology p { max-width: 680px; color: var(--paper-muted); font-size: 16px; line-height: 1.8; }
.methodology a { display: inline-block; margin-top: 12px; color: var(--paper); font-family: var(--font-utility); font-size: 11px; }

footer {
  width: var(--page);
  min-height: 110px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--text-faint);
  font-family: var(--font-utility);
  font-size: 14px;
}

/* Hub */
.hub-hero { min-height: 620px; padding: clamp(90px, 12vw, 180px) 0 90px; border-bottom: 1px solid var(--ink-line); }
.hub-hero .edition-label { display: block; }
.latest-cta { display: flex; align-items: center; justify-content: space-between; max-width: 560px; margin-top: 50px; padding: 18px 0; border-top: 1px solid var(--signal-red); border-bottom: 1px solid var(--signal-red); color: var(--paper); font-family: var(--font-utility); font-size: 12px; text-decoration: none; }
.latest-cta span { color: var(--signal-red); }
.archive { padding: 72px 0; }
.section-title { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 30px; align-items: baseline; }
.section-title span { color: var(--signal-red); font-family: var(--font-editorial); font-size: 28px; }
.section-title h2 { margin: 0; font-family: var(--font-editorial); font-size: clamp(24px, 2.4vw, 34px); font-weight: 500; }
.archive ol { margin: 42px 0 0; padding: 0; border-top: 1px solid var(--ink-line); list-style: none; }
.archive li a { display: grid; grid-template-columns: 130px minmax(180px, .7fr) minmax(260px, 1.3fr); gap: 26px; align-items: baseline; padding: 24px 0; border-bottom: 1px solid var(--ink-line); text-decoration: none; }
.archive time { color: var(--signal-red); font-family: var(--font-utility); font-size: var(--type-body); font-weight: 700; line-height: var(--leading-body); }
.archive strong { font-family: var(--font-editorial); font-size: 21px; font-weight: 500; }
.archive-summary { color: var(--paper-muted); font-size: 16px; line-height: 1.8; }

/* Canonical typography scale: one role, one size across every page. */
h1,
.edition-hero h1,
.hub-hero h1,
.story-rank {
  font-size: var(--type-h1);
  line-height: var(--leading-h1);
}

h2,
.story-main h2,
.story-lead .story-main h2,
.method-number,
.methodology h2,
.section-title h2 {
  font-size: var(--type-h2);
  line-height: var(--leading-h2);
}

h3,
.masthead-brand strong,
.impact-grid h3,
.sources h3,
.evidence-grid summary,
.methodology h3,
.section-title span,
.archive strong,
.source-index {
  font-size: var(--type-h3);
  line-height: var(--leading-h3);
}

.edition-dek,
.hub-hero > p,
.editor-note,
.story-brief,
.impact-grid p,
.evidence-grid ul,
.empty-note,
.timeline li,
.source-meta strong,
.source-list a,
.knowledge-link,
.methodology p,
.methodology a,
.latest-cta,
.archive-summary {
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

.kd-logo-icon,
.masthead-brand small,
.language-nav a,
.edition-hero::before,
.edition-label,
.edition-meta,
.topic-filter button,
.story-kicker,
.story-analysis h3,
.confirmed-panel summary,
.story-followup summary,
.timeline time,
.source-meta span,
.source-list small,
.related > span,
footer {
  font-size: var(--type-aux);
  line-height: var(--leading-aux);
}

.calendar-heading h2,
.headline-index-heading h2 {
  font-size: var(--type-h3);
  line-height: var(--leading-h3);
}

@media (max-width: 900px) {
  .edition-hero-layout { grid-template-columns: 1fr; }
  .edition-calendar { max-width: 560px; }
  .methodology { grid-template-columns: 1fr; }
  .archive li a { grid-template-columns: 110px minmax(0, 1fr); }
  .archive-summary { grid-column: 2; }
}

@media (max-width: 720px) {
  :root {
    --page: min(100% - 28px, 1180px);
    --type-h1: 36px;
    --type-h2: 26px;
    --type-h3: 22px;
    --type-body: 16px;
    --type-aux: 13px;
  }
  .masthead { min-height: 78px; gap: 12px; }
  .masthead { flex-wrap: wrap; padding: 12px 0; }
  .masthead-actions { width: 100%; justify-content: space-between; gap: 6px; padding-top: 8px; border-top: 1px solid var(--ink-line); }
  .global-nav { order: 3; width: 100%; flex-wrap: wrap; justify-content: flex-start; gap: 8px 16px; padding-top: 6px; }
  .vertical-nav { order: 3; width: 100%; }
  .vertical-nav a { flex: 1 1 50%; justify-content: center; min-height: 40px; }
  .theme-toggle { min-height: 40px; padding: 6px 9px; }
  .kd-logo-icon { width: 38px; height: 38px; flex-basis: 38px; }
  .language-nav a { padding: 6px; font-size: 9px; }
  .edition-hero { padding: 44px 0 40px; }
  .edition-hero-layout { grid-template-columns: 1fr; gap: 42px; }
  .edition-calendar { width: 100%; padding: 18px 14px; box-shadow: 8px 8px 0 var(--accent-shadow); }
  .calendar-grid { gap: 2px; }
  .headline-index { padding: 24px 0 28px; }
  .headline-index-heading { align-items: flex-start; flex-direction: column; gap: 4px; }
  .headline-index-list { grid-template-columns: 1fr; }
  .edition-hero::before { display: none; }
  .edition-hero h1, .hub-hero h1 { font-size: clamp(28px, 7.7vw, 32px); line-height: 1.14; }
  .edition-dek, .hub-hero > p { font-size: clamp(16px, 4.8vw, 19px); }
  .edition-meta { margin-top: 32px; }
  .story-ledger { grid-template-columns: 1fr; gap: 18px; padding: 52px 0 62px; }
  .story-dossier { grid-template-columns: 1fr; gap: 24px; }
  .story-column { display: contents; }
  .story-copy { order: 1; }
  .story-visual { order: 2; }
  .story-analysis { order: 3; margin-top: 0; }
  .confirmed-panel { order: 4; margin-top: 0; }
  .story-followup { grid-template-columns: 1fr; }
  .story-rank { font-size: 46px; }
  .story-main h2, .story-lead .story-main h2 { font-size: clamp(32px, 9vw, 44px); line-height: 1.24; }
  .story-brief { margin-top: 22px; font-size: 16px; line-height: 1.8; }
  .story-analysis section, .confirmed-panel, .story-followup details { padding: 20px; }
  .source-list li { grid-template-columns: 34px minmax(0, 1fr); gap: 10px; }
  .source-index { font-size: 22px; }
  .timeline li { grid-template-columns: 1fr; gap: 2px; }
  .hub-hero { min-height: 540px; padding-top: 90px; }
  .section-title { grid-template-columns: 52px minmax(0, 1fr); gap: 16px; }
  .section-title span { font-size: 24px; }
  .archive li a { grid-template-columns: 1fr; gap: 6px; }
  .archive-summary { grid-column: 1; }
  footer { min-height: 130px; flex-direction: column; justify-content: center; gap: 8px; }

  .language-nav a { font-size: var(--type-aux); }
  .edition-hero h1, .hub-hero h1, .story-rank { font-size: var(--type-h1); line-height: var(--leading-h1); }
  .story-main h2, .story-lead .story-main h2 { font-size: var(--type-h2); line-height: var(--leading-h2); }
  .source-index, .section-title span { font-size: var(--type-h3); line-height: var(--leading-h3); }
  .edition-dek, .hub-hero > p, .story-brief { font-size: var(--type-body); line-height: var(--leading-body); }
}

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

@media print {
  :root { color-scheme: light; --ink: #fff; --ink-soft: #fff; --ink-line: #bbb; --paper: #111; --paper-muted: #444; }
  body { background: #fff; color: #111; }
  .topic-filter, .language-nav, .skip-link, script { display: none !important; }
  .masthead, .story-ledger, .methodology { break-inside: avoid; }
  a { color: #111; }
}

/* Compact editorial density ??2026-07-20 */
:root,
html[data-theme="dark"],
html[data-theme="light"] {
  --desk-active: #30363a;
  --desk-active-text: #fff;
}

.vertical-nav { gap: 8px; }
.vertical-nav a {
  min-height: 38px;
  padding: 7px 14px;
  border: 1px solid var(--paper);
  border-radius: 99px;
  background: transparent;
  color: var(--paper);
  font-size: var(--type-aux);
  line-height: 1;
}
.vertical-nav a:hover { border-color: var(--verified-cyan); color: var(--paper); }
.vertical-nav a[aria-current="page"] {
  border-color: var(--desk-active);
  background: var(--desk-active);
  color: var(--desk-active-text);
}

.edition-hero { padding: clamp(22px, 2.6vw, 34px) 0 clamp(24px, 2.8vw, 36px); }
.edition-hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  gap: clamp(34px, 5vw, 66px);
  align-items: start;
}
.edition-label { min-height: 0; flex-wrap: wrap; }
.edition-label .vertical-nav { margin-left: auto; }
.edition-label .vertical-nav a { text-transform: none; letter-spacing: .02em; }
.edition-title-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 22px;
}
.edition-title-row h1 {
  width: 100%;
  max-width: none;
  margin: 0;
  text-wrap: pretty;
}
.edition-lead-digest {
  max-width: 760px;
  margin: 0;
  padding-left: 20px;
  border-left: 2px solid var(--signal-red);
  color: var(--paper-muted);
  font-size: var(--type-body);
  line-height: var(--leading-body);
}
.edition-meta { margin-top: 22px; }
.briefing-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 14px;
  color: var(--paper-muted);
  font-size: var(--type-body);
  line-height: var(--leading-body);
}
.briefing-status strong {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 13px;
  border: 1px solid var(--signal-red);
  border-radius: 99px;
  color: var(--signal-red);
  font-size: var(--type-aux);
  letter-spacing: .04em;
}
.story-update-type {
  color: var(--paper-muted);
  font-size: var(--type-aux);
  letter-spacing: .04em;
}
.story-update-type.is-new-development { color: var(--signal-red); }
.story-update-type.is-situation-update { color: var(--verified-cyan); }
.story-update-type.is-ongoing-watch { color: var(--quiet-gold); }
.last-substantive-update {
  margin: 12px 0 0;
  color: var(--paper-muted);
  font-size: var(--type-aux);
  line-height: var(--leading-aux);
}
.daily-highlight {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 18px;
  margin: 18px 0 0;
  padding: 15px 18px;
  border: 1px solid var(--ink-line);
  background: var(--cyan-wash);
  color: var(--paper-muted);
  font-size: var(--type-body);
  line-height: var(--leading-body);
}
.daily-highlight-label {
  color: var(--verified-cyan);
  font-weight: 700;
}

.edition-calendar { padding: 20px; box-shadow: 12px 12px 0 var(--accent-shadow); }
.calendar-heading { align-items: flex-start; }
.calendar-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 9px; }
.calendar-month-controls { gap: 8px; }
.calendar-month-link { width: 40px; min-height: 40px; }
.calendar-archive-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 6px 12px;
  border: 1px solid var(--paper);
  border-radius: 99px;
  background: transparent;
  color: var(--paper);
  font-size: var(--type-aux);
  line-height: 1;
  text-decoration: none;
}
.calendar-month { margin: 14px 0 8px; }
.calendar-weekday { min-height: 28px; }
.calendar-date { min-height: 40px; }

.hub-hero { min-height: auto; padding: clamp(26px, 3vw, 38px) 0 clamp(28px, 3.5vw, 38px); }
.latest-cta { margin-top: 32px; }
.archive { padding: clamp(28px, 3.5vw, 42px) 0; }
.archive-dek {
  max-width: 760px;
  margin: 14px 0 0 110px;
  color: var(--paper-muted);
  font-size: var(--type-body);
  line-height: var(--leading-body);
}
.archive ol { margin-top: 24px; }
.archive li a { padding: 16px 0; }
.methodology { padding: clamp(30px, 4vw, 46px) 0; }
footer { min-height: 72px; }

@media (max-width: 900px) {
  .edition-hero-layout { grid-template-columns: 1fr; }
  .edition-calendar { width: 100%; max-width: 560px; }
  .edition-title-row { grid-template-columns: 1fr; gap: 16px; }
  .edition-lead-digest { max-width: 720px; }
}

@media (max-width: 720px) {
  .edition-hero { padding: 28px 0 30px; }
  .edition-hero-layout { grid-template-columns: 1fr; gap: 28px; }
  .edition-label { align-items: flex-start; }
  .edition-label .vertical-nav { width: 100%; margin: 4px 0 0; }
  .edition-label .vertical-nav a { flex: 1 1 calc(50% - 4px); }
  .edition-title-row { margin-top: 16px; }
  .edition-lead-digest { padding-left: 18px; }
  .daily-highlight { grid-template-columns: 1fr; gap: 4px; padding: 14px; }
  .edition-calendar { padding: 16px 14px; }
  .calendar-heading { gap: 8px; }
  .calendar-actions { gap: 7px; }
  .calendar-month-link { width: 36px; min-height: 36px; }
  .calendar-date { min-height: 38px; }
  .hub-hero { min-height: auto; padding: 22px 0 28px; }
  .archive { padding: 26px 0; }
  .archive-dek { margin: 12px 0 0; }
  .archive ol { margin-top: 20px; }
  .methodology { padding: 28px 0; }
  footer { min-height: 96px; }
}

/* Hub archive alignment ??2026-07-20 */
.hub-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}
.hub-hero-copy { min-width: 0; }
.hub-kicker-row {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.hub-kicker-row .edition-label { min-width: 0; margin: 0; }
.hub-kicker-row .vertical-nav { margin-left: auto; }
.hub-hero-copy > p:not(.edition-label) {
  max-width: 720px;
  margin: 0;
  color: var(--paper-muted);
  font-family: var(--font-editorial);
  font-size: var(--type-body);
  line-height: var(--leading-body);
}
.latest-cta {
  width: 100%;
  max-width: none;
  align-self: start;
  margin: 68px 0 0;
}
.archive-heading-row {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}
.archive-dek {
  max-width: none;
  margin: 0;
}
.archive li a {
  grid-template-columns: 80px minmax(270px, .78fr) minmax(0, 1.22fr);
  gap: 30px;
}
.archive-summary { text-wrap: pretty; }

/* Text-only archive calendar: semantic date, no image asset or backdrop. */
.archive-calendar {
  width: 72px;
  min-height: 74px;
  display: grid;
  grid-template-rows: 24px minmax(48px, 1fr);
  overflow: hidden;
  align-self: center;
  border: 1px solid var(--ink-line);
  border-radius: 10px;
  background: transparent;
  color: var(--paper);
  font-family: var(--font-utility);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-align: center;
}
.archive-calendar .archive-calendar-month {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  background: var(--signal-red);
  color: #fff;
  font-family: var(--font-utility);
  font-size: var(--type-aux);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.archive-calendar .archive-calendar-day {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-family: var(--font-editorial);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.archive li a:hover .archive-calendar,
.archive li a:focus-visible .archive-calendar {
  border-color: var(--signal-red);
}


@media (max-width: 900px) {
  .hub-hero-grid,
  .archive-heading-row { grid-template-columns: 1fr; gap: 24px; }
  .latest-cta { margin-top: 0; }
  .archive-dek { margin: 0 0 0 110px; }
  .archive li a { grid-template-columns: 80px minmax(0, 1fr); }
  .archive li .archive-summary { grid-column: 2; }
}

@media (max-width: 720px) {
  .masthead-actions { flex-wrap: wrap; }
  .hub-hero-grid,
  .archive-heading-row { grid-template-columns: 1fr; gap: 20px; }
  .hub-kicker-row { align-items: flex-start; flex-direction: column; gap: 12px; }
  .hub-kicker-row .vertical-nav { width: 100%; margin-left: 0; }
  .latest-cta { margin-top: 0; padding: 14px 0; }
  .archive-dek { margin: 0; }
  .archive li a {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 8px 14px;
    align-items: center;
  }
  .archive-calendar {
    width: 60px;
    min-height: 64px;
    grid-row: 1 / span 2;
    grid-template-rows: 22px minmax(42px, 1fr);
  }
  .archive-calendar .archive-calendar-month { min-height: 22px; }
  .archive-calendar .archive-calendar-day { font-size: 24px; }
  .archive li strong,
  .archive li .archive-summary { grid-column: 2; }
}
