/* Foreign Diplomacy — research desk
   Paper, ink, hairline rules. No product chrome. */

:root {
  --paper: #f3efe4;
  --paper-2: #ebe6d8;
  --ink: #1a1814;
  --ink-2: #3a362e;
  --muted: #6a6458;
  --faint: #8a8376;
  --rule: #1a1814;
  --rule-soft: rgba(26, 24, 20, 0.16);
  --rule-faint: rgba(26, 24, 20, 0.08);
  --navy: #1a2744;
  --navy-mid: #2a3d5c;
  --brass: #7a6534;
  --link: #1a2744;
  --link-hover: #7a6534;
  --font-display: "Libre Baskerville", "Iowan Old Style", Palatino, Georgia, serif;
  --font-body: "Source Serif 4", "Palatino Linotype", Palatino, Georgia, serif;
  --font-ui: "Source Sans 3", "Helvetica Neue", system-ui, sans-serif;
  --measure: 38rem;
  --page: 68rem;
  --t: 160ms ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 17px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ui);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a {
  color: var(--link);
  text-decoration: none;
  text-underline-offset: 0.18em;
}

a:hover { color: var(--link-hover); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 16px;
  z-index: 1000;
  font-size: 0.8rem;
}

.skip-link:focus { top: 0; }

.container {
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── MASTHEAD ── */

.site-header {
  position: relative;
  z-index: 200;
  background: var(--paper);
  border-bottom: none;
}

.site-header .container { height: auto; }

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: auto;
  padding: 1.15rem 0 0.85rem;
  border-bottom: 1px solid var(--rule);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.site-logo:hover { color: var(--ink); text-decoration: none; }

.logo-icon,
.logo-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0;
  flex-shrink: 0;
  background: transparent;
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
  box-shadow: none;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
  white-space: nowrap;
}

.logo-tagline {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  line-height: 1;
  white-space: nowrap;
}

.site-nav { margin-left: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links li a {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  padding: 0.45rem 0.65rem;
  border-radius: 0;
  white-space: nowrap;
  display: block;
  border-bottom: 2px solid transparent;
}

.nav-links li a:hover {
  color: var(--ink);
  background: transparent;
  border-bottom-color: var(--rule-soft);
}

.nav-links li a.active {
  color: var(--ink);
  background: transparent;
  border-bottom-color: var(--ink);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule);
  cursor: pointer;
  color: var(--ink);
  padding: 0.4rem 0.5rem;
}

/* ── FOOTER / COLOPHON ── */

.site-footer {
  background: transparent;
  border-top: 2px solid var(--rule);
  padding: 2.25rem 0 1.75rem;
  margin-top: 3.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.75rem;
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand .footer-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 22rem;
}

.footer-nav-heading {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.footer-nav ul li { margin-bottom: 0.3rem; }

.footer-nav ul li a {
  font-size: 0.88rem;
  color: var(--ink-2);
}

.footer-nav ul li a:hover { color: var(--ink); }

.footer-bottom {
  border-top: 1px solid var(--rule-soft);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.74rem;
  color: var(--muted);
}

/* ── HOME ── */

.edition-bar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0 0.85rem;
  border-bottom: 3px double var(--rule);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-section { padding: 1.75rem 0 0; }

.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 1.15rem;
}

.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule-soft);
}

.lead-story { margin-bottom: 0; }

.lead-story-inner {
  position: relative;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 1.5rem;
}

.lead-story-inner:hover {
  transform: none;
  box-shadow: none;
}

.lead-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  order: 2;
  border: 1px solid var(--rule-soft);
}

.lead-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.lead-story-inner:hover .lead-img-wrap img { transform: none; }

.lead-img-wrap::after { display: none; }

.lead-content {
  position: static;
  padding: 0.15rem 0 0;
  order: 1;
}

.lead-cat,
.sec-cat,
.card-cat,
.related-card-cat,
.article-cat-link,
.cat-hero-label {
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brass);
}

.lead-cat { display: inline-block; margin-bottom: 0.7rem; }

.lead-headline,
.lead-headline a {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.lead-headline { margin-bottom: 0.75rem; }

.lead-headline a:hover { color: var(--navy-mid); }

.lead-excerpt {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 0.85rem;
  max-width: none;
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.lead-meta,
.sec-meta,
.card-meta,
.related-card-meta,
.article-meta-line {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  color: var(--muted);
}

.lead-meta { display: flex; align-items: center; gap: 0.45rem; }
.lead-meta .sep,
.card-meta .sep { opacity: 0.55; }

.secondary-stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: transparent;
  border: none;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  overflow: visible;
  margin: 0 0 0.25rem;
}

.secondary-card {
  background: transparent;
  border-left: none;
  border-right: 1px solid var(--rule-soft);
  padding: 1.2rem 1.25rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.secondary-card:last-child { border-right: none; }

.secondary-card:hover {
  background: transparent;
  border-left-color: transparent;
}

.sec-headline,
.sec-headline a {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}

.sec-headline a:hover { color: var(--navy); }

.sec-excerpt {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sec-meta { margin-top: auto; padding-top: 0.45rem; }

.section-divider {
  border: none;
  border-top: 1px solid var(--rule-soft);
  margin: 2.25rem 0;
}

.cards-section { padding: 0 0 1rem; }

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.article-card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--rule-soft);
  border-radius: 0;
  overflow: visible;
  display: grid;
  grid-template-columns: 10.5rem 1fr;
  gap: 1.25rem;
  padding: 1.15rem 0;
  align-items: start;
}

.article-card:hover {
  border-color: var(--rule-soft);
  transform: none;
  box-shadow: none;
}

.card-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--rule-faint);
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.article-card:hover .card-img-wrap img { transform: none; }

.card-body {
  padding: 0.1rem 0 0;
  display: flex;
  flex-direction: column;
}

.card-cat { margin-bottom: 0.35rem; display: block; }
.card-cat a { color: inherit; }

.card-title,
.card-title a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.card-title { margin-bottom: 0.4rem; }
.card-title a:hover { color: var(--navy); }

.card-excerpt {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.5;
  margin-bottom: 0.55rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta { margin-top: auto; display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }

.desk-index { margin-top: 0.25rem; }

.file-label { margin-top: 2.25rem; }

.desk-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--rule-soft);
}

.desk-row time {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.2rem;
}

.desk-row h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.desk-row h3 a { color: var(--ink); }
.desk-row h3 a:hover { color: var(--navy); }

.desk-row p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.45;
}

.about-section { padding: 1.5rem 0 2.5rem; }

.about-card {
  background: transparent;
  border: none;
  border-top: 2px solid var(--rule);
  border-radius: 0;
  padding: 1.75rem 0 0;
  text-align: left;
  max-width: none;
  margin: 0;
  overflow: visible;
}

.about-card::before { display: none; }

.about-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 0.7rem;
}

.about-card p {
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 1.1rem;
  max-width: 42rem;
}

.about-pills {
  display: flex;
  justify-content: flex-start;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.about-pills a {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 0 0 0.15rem;
  border-radius: 0;
}

.about-pills a:hover {
  background: transparent;
  color: var(--brass);
  border-color: var(--brass);
}

/* ── CATEGORY ── */

.cat-hero {
  padding: 2.25rem 0 1.5rem;
  border-bottom: 3px double var(--rule);
  position: relative;
}

.cat-hero::before { display: none; }

.cat-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
}

.cat-hero-label::before {
  content: "";
  width: 1.1rem;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}

.cat-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.55rem;
}

.cat-hero p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 38rem;
}

.cards-section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.25rem;
  padding-top: 1.5rem;
}

.cards-section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule-soft);
}

/* ── ARTICLE ── */

.article-head {
  max-width: 42rem;
  margin: 2.4rem auto 0;
  padding: 0 1.5rem;
  text-align: left;
}

.article-cat-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.article-cat-link::before {
  content: "";
  width: 1rem;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}

.article-cat-link a { color: inherit; }

.article-h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.45rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.85rem;
}

.article-subtitle {
  font-family: var(--font-body);
  font-size: 1.12rem;
  color: var(--ink-2);
  line-height: 1.55;
  font-weight: 400;
  margin: 0;
  max-width: 40rem;
}

.article-meta-divider {
  width: 100%;
  height: 0;
  background: none;
  margin: 1.1rem 0 0.85rem;
  border-top: 1px solid var(--rule);
}

.article-meta-line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  flex-wrap: wrap;
  padding-bottom: 0;
  margin-bottom: 1.6rem;
}

.article-meta-line .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.6;
}

.article-hero {
  max-width: 42rem;
  margin: 0 auto 2.1rem;
  padding: 0 1.5rem;
}

.article-hero-inner {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 2/1;
  border: 1px solid var(--rule-soft);
}

.article-hero-inner img,
.article-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-hero > img {
  aspect-ratio: 2/1;
  border: 1px solid var(--rule-soft);
}

.article-hero-inner::after { display: none; }

.article-body {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
}

.article-body p {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.article-body > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.1rem;
  float: left;
  line-height: 0.82;
  padding: 0.12rem 0.45rem 0 0;
  color: var(--ink);
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2.4rem 0 0.85rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--rule-soft);
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.8rem 0 0.65rem;
  line-height: 1.3;
}

.article-body h4 {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 1.6rem 0 0.55rem;
}

.article-body a {
  color: var(--navy);
  border-bottom: 1px solid rgba(26, 39, 68, 0.28);
}

.article-body a:hover {
  color: var(--brass);
  border-bottom-color: var(--brass);
}

.article-body strong { font-weight: 650; }
.article-body em { font-style: italic; }

.article-body ul,
.article-body ol { margin: 0 0 1.25rem 1.35rem; }

.article-body li {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }

.article-body blockquote {
  border-left: 2px solid var(--ink);
  padding: 0.15rem 0 0.15rem 1.25rem;
  margin: 1.85rem 0;
  background: transparent;
  border-radius: 0;
}

.article-body blockquote p,
.article-body blockquote p:last-child {
  font-family: var(--font-display) !important;
  font-size: 1.22rem !important;
  font-style: italic !important;
  line-height: 1.5 !important;
  color: var(--ink) !important;
  margin-bottom: 0.55rem !important;
}

.article-body blockquote cite {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: normal;
  display: block;
  margin-top: 0.45rem;
  font-family: var(--font-ui);
}

.key-takeaways {
  border: 1px solid var(--rule);
  border-left: 2px solid var(--ink);
  background: var(--paper-2);
  border-radius: 0;
  padding: 1.15rem 1.25rem 1rem;
  margin: 1.75rem 0;
}

.key-takeaways h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.7rem;
  text-transform: none;
  letter-spacing: 0;
}

.key-takeaways ul { margin: 0; padding: 0; list-style: none; }

.key-takeaways ul li {
  font-family: var(--font-body);
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
  color: var(--ink-2) !important;
  margin-bottom: 0.45rem;
  padding-left: 1rem;
  position: relative;
  list-style: none;
}

.key-takeaways ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 1px;
  border-radius: 0;
  background: var(--ink);
}

.related-coverage-wrap {
  max-width: var(--measure);
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
}

.related-coverage-card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--rule);
  border-radius: 0;
  padding: 1.1rem 0 0;
}

.related-coverage-card h3 {
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.related-coverage-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.related-coverage-card ul li {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink-2);
  display: block;
}

.related-coverage-card ul li::before { content: none; }

.related-coverage-card a {
  color: var(--navy);
  border-bottom: 1px solid rgba(26, 39, 68, 0.22);
}

.related-coverage-card a:hover { color: var(--brass); }

.related-articles-section {
  background: transparent;
  border-top: 1px solid var(--rule);
  padding: 2.25rem 0 1rem;
  margin-top: 1rem;
}

.related-articles-section .container { max-width: 52rem; }

.related-section-label {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.related-section-label::before {
  content: "";
  width: 1rem;
  height: 1px;
  background: var(--ink);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
}

.related-card {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.related-card:hover {
  border-color: transparent;
  transform: none;
  box-shadow: none;
}

.related-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--rule-faint);
}

.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.related-card:hover .related-card-img img { transform: none; }

.related-card-body {
  padding: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.related-card-title,
.related-card-title a {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}

.related-card-title a { border-bottom: none; }
.related-card-title a:hover { color: var(--navy); }

.related-card-excerpt {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* llm-info */
.lede { color: var(--ink-2); margin-bottom: 1.5rem; font-family: var(--font-body); }

pre.frontmatter {
  background: var(--paper-2);
  border: 1px solid var(--rule-soft);
  border-radius: 0;
  padding: 1.1rem 1.2rem;
  overflow-x: auto;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 2rem;
  white-space: pre-wrap;
}

.fact-table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }

.fact-table td {
  padding: 0.45rem 0.6rem;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 0.92rem;
  color: var(--ink-2);
  vertical-align: top;
}

.fact-table td:first-child {
  color: var(--muted);
  white-space: nowrap;
  width: 160px;
}

code {
  background: var(--paper-2);
  padding: 0.05rem 0.3rem;
  border-radius: 0;
  font-size: 0.9em;
  color: var(--ink);
}

/* Kill leftover SaaS motion */
.fade-in,
.fade-up {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ── PRINT ── */

@media print {
  body { background: #fff; color: #000; font-size: 11pt; }
  .site-header, .site-footer, .related-articles-section, .related-coverage-wrap, .menu-toggle, .about-pills { display: none; }
  .article-body a { color: inherit; border-bottom: none; }
  .article-body a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #444; }
}

/* ── RESPONSIVE ── */

@media (max-width: 960px) {
  .lead-story-inner { grid-template-columns: 1fr; gap: 1.1rem; }
  .lead-img-wrap { order: 0; }
  .lead-content { order: 1; }
  .secondary-stories { grid-template-columns: 1fr; }
  .secondary-card { border-right: none; border-bottom: 1px solid var(--rule-soft); padding-left: 0; padding-right: 0; }
  .secondary-card:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  html { font-size: 16px; }
  .container { padding: 0 1.1rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 0.6rem 1.1rem 1rem;
    border-bottom: 2px solid var(--rule);
    z-index: 100;
  }
  .nav-links.open li a {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--rule-soft);
    border-radius: 0;
  }
  .menu-toggle { display: block; margin-left: auto; }
  .logo-tagline { display: none; }
  .article-card { grid-template-columns: 1fr; gap: 0.7rem; }
  .related-grid { grid-template-columns: 1fr; }
  .desk-row { grid-template-columns: 1fr; gap: 0.2rem; }
  .article-h1 { font-size: 1.7rem; }
  .article-head, .article-hero, .article-body, .related-coverage-wrap { padding-left: 1.1rem; padding-right: 1.1rem; }
  .article-body { padding-bottom: 1.75rem; }
  .article-body > p:first-of-type::first-letter { font-size: 2.6rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .edition-bar { flex-direction: column; gap: 0.2rem; }
}
