/* Enlil Center — site design system (Phase 2.2)
   Tokens approved 14 Sep 2026: Libre Franklin headlines, Public Sans body,
   deep green bands, amber calls-to-action, photo-led cards. */

:root {
  --ink: #1A1A17;
  --ink-soft: #57564E;
  --ink-mute: #6B6A61;
  --paper: #FFFFFF;
  --tint: #F1F4F0;
  --line: #DDE3DE;
  --green: #0B4D33;
  --green-deep: #08381F;
  --green-tint: #E4EDE7;
  --green-bright: #4DB33F;   /* the mark's own green */
  --amber: #D97F0B;
  --amber-deep: #B4670A;
  --amber-ink: #291800;
  --amber-text: #8F4E06;   /* amber for small text on light grounds (≥4.5:1) */
  --amber-light: #F5B04F;  /* amber for small text on green grounds (≥5:1) */
  --font-head: "Libre Franklin", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Public Sans", "Helvetica Neue", Arial, sans-serif;
  --radius: 3px;
  --shadow: 0 1px 2px rgba(0,0,0,.06), 0 8px 24px -12px rgba(11,77,51,.25);
  --max: 1200px;
}

html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head); font-weight: 800; line-height: 1.12;
  letter-spacing: -0.01em; margin: 0; color: inherit; text-wrap: balance;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.kicker {
  font-family: var(--font-head); font-weight: 700; font-size: .72rem;
  letter-spacing: .09em; text-transform: uppercase; color: var(--amber-text);
}
.kicker.on-dark, .lead .kicker, .band .kicker, .page-hero .kicker, .art-hero .kicker, .pdf-card .kicker, .dl-card .kicker { color: var(--amber-light); }
.kicker.green { color: var(--green); }
.kicker.muted { color: var(--ink-mute); }

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header { background: var(--green-deep); color: #fff; position: sticky; top: 0; z-index: 60; box-shadow: 0 1px 0 rgba(255,255,255,.06); }
.site-header .bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 68px; }
.site-header .brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.site-header .brand img { height: 36px; width: auto; }
.site-header .brand .name { font-family: var(--font-head); font-weight: 900; font-size: 1.15rem; letter-spacing: .02em; line-height: 1; }
.site-header .brand .tag { display: block; font-family: var(--font-body); font-weight: 500; font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; color: #B7CBBE; margin-top: 4px; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { font-family: var(--font-head); font-weight: 600; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; color: #CFE0D6; padding: 6px 0; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s; }
.site-nav a:hover { color: #fff; }
.site-nav a[aria-current="page"] { color: #fff; border-bottom-color: var(--amber); }
.site-header .cta { background: var(--amber); color: var(--amber-ink); font-family: var(--font-head); font-weight: 800; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; padding: 11px 18px; border-radius: 2px; white-space: nowrap; transition: background .15s; }
.site-header .cta:hover { background: #F0932A; }
.menu-btn { display: none; background: none; border: 0; color: #fff; font-size: 1.5rem; padding: 6px; }
.mobile-nav { display: none; background: var(--green-deep); border-top: 1px solid rgba(255,255,255,.1); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 14px 24px; color: #E4EAE5; font-family: var(--font-head); font-weight: 600; font-size: .95rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-nav a[aria-current="page"] { color: #fff; box-shadow: inset 3px 0 0 var(--amber); }
@media (max-width: 960px) {
  .site-nav, .site-header .cta { display: none; }
  .menu-btn { display: block; }
  .site-header .brand .tag { display: none; }
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 800; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; padding: 13px 22px; border-radius: 2px; border: 2px solid transparent; transition: background .15s, color .15s, border-color .15s; }
.btn-amber { background: var(--amber); color: var(--amber-ink); }
.btn-amber:hover { background: #F0932A; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-deep); }
.btn-outline { border-color: var(--green); color: var(--green); background: transparent; }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,.7); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.more-link { font-family: var(--font-head); font-weight: 800; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--green); display: inline-flex; align-items: center; gap: 8px; }
.more-link:hover { color: var(--green-deep); text-decoration: underline; text-underline-offset: 4px; }

/* ── Section chrome ──────────────────────────────────────────────────────── */
.section { padding: 64px 0; }
.section.tint { background: var(--tint); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding-top: 18px; border-top: 3px solid var(--ink); margin-bottom: 32px; }
.section-head h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.section-head p { color: var(--ink-soft); font-size: .95rem; max-width: 48ch; }
.section-head .right { text-align: right; }
@media (max-width: 720px) { .section-head { flex-direction: column; align-items: flex-start; } .section-head .right { text-align: left; } }

/* ── Cards ───────────────────────────────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 32px; align-items: stretch; }
@media (max-width: 960px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }
.card { display: flex; flex-direction: column; gap: 10px; min-width: 0; height: 100%; }
.card .thumb { aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--radius); background: linear-gradient(135deg, var(--green-tint), var(--line)); }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .thumb img { transform: scale(1.04); }
.card h3 { font-size: 1.2rem; line-height: 1.25; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card h3 a:hover { color: var(--green); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.card p { color: var(--ink-soft); font-size: .92rem; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card .meta { font-size: .72rem; font-weight: 600; color: var(--ink-mute); letter-spacing: .02em; text-transform: uppercase; margin-top: auto; padding-top: 6px; border-top: 1px solid var(--line); }
.card .meta a { color: var(--green); }
.card .meta a:hover { text-decoration: underline; }
.badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 700; font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; padding: 4px 8px; border-radius: 2px; background: var(--green-tint); color: var(--green); }
.badge.pdf { background: #FBE9E9; color: #9F1D1D; }
.badge.amber { background: #FBEBD3; color: var(--amber-text); }

/* ── Mission band ────────────────────────────────────────────────────────── */
.band { background: var(--green); color: #fff; padding: 64px 0; }
.band .grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.band p { color: #D7E7DD; font-size: 1.05rem; margin-top: 14px; max-width: 54ch; }
.band .stats { display: grid; grid-template-columns: repeat(3, auto); gap: 32px; justify-content: start; }
.band .stat b { display: block; font-family: var(--font-head); font-weight: 900; font-size: 2.6rem; line-height: 1; font-variant-numeric: tabular-nums; }
.band .stat span { display: block; margin-top: 8px; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #B7CBBE; }
@media (max-width: 860px) { .band .grid { grid-template-columns: 1fr; } }

/* ── Pillars strip ───────────────────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.pillar { border-top: 3px solid var(--green); padding-top: 14px; display: flex; flex-direction: column; gap: 6px; transition: border-color .15s; }
.pillar:hover { border-top-color: var(--amber); }
.pillar h3 { font-size: 1.05rem; }
.pillar p { font-size: .85rem; color: var(--ink-soft); line-height: 1.5; }
.pillar .n { font-family: var(--font-head); font-weight: 900; font-size: .72rem; color: var(--ink-mute); letter-spacing: .08em; }
@media (max-width: 960px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .pillars { grid-template-columns: repeat(2, 1fr); } }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer { background: var(--green-deep); color: #B7CBBE; padding: 56px 0 28px; font-size: .9rem; }
.site-footer .top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.site-footer .brand { display: flex; align-items: center; gap: 12px; color: #fff; margin-bottom: 14px; }
.site-footer .brand img { height: 34px; }
.site-footer .brand b { font-family: var(--font-head); font-weight: 900; font-size: 1.1rem; }
.site-footer .about { max-width: 42ch; line-height: 1.6; }
.site-footer h4 { color: #fff; font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.site-footer .social { display: flex; gap: 10px; margin-top: 18px; }
.site-footer .social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: inline-flex; align-items: center; justify-content: center; color: #fff; transition: background .15s; }
.site-footer .social a:hover { background: rgba(255,255,255,.12); text-decoration: none; }
.site-footer .bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 22px; font-size: .78rem; color: #8FA89A; }
.site-footer .bottom .links { display: flex; flex-wrap: wrap; gap: 18px; }
@media (max-width: 860px) { .site-footer .top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer .top { grid-template-columns: 1fr; } }

/* ── Page hero (listing / detail pages) ──────────────────────────────────── */
.page-hero { background: var(--green-deep); color: #fff; padding: 48px 0 44px; }
.page-hero .crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .78rem; font-weight: 600; color: #B7CBBE; margin-bottom: 18px; }
.page-hero .crumbs a:hover { color: #fff; }
.page-hero .crumbs i { font-size: .6rem; opacity: .6; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.2vw, 3.2rem); }
.page-hero .dek { color: #D7E7DD; font-size: 1.1rem; max-width: 60ch; margin-top: 14px; }

/* ── Utilities ───────────────────────────────────────────────────────────── */
.legal-section { display: none; }
.legal-section:target { display: block; }
.prose-narrow { max-width: 68ch; }
.muted { color: var(--ink-soft); }
.tabular { font-variant-numeric: tabular-nums; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } html { scroll-behavior: auto; } }

/* ── Listing toolbar (search + filter chips) ─────────────────────────────── */
.toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; padding: 18px 0; border-bottom: 1px solid var(--line); margin-bottom: 36px; }
.toolbar .search { position: relative; flex: 1 1 280px; max-width: 420px; }
.toolbar .search i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--ink-mute); font-size: .85rem; }
.toolbar .search input { width: 100%; box-sizing: border-box; font: inherit; font-size: .95rem; padding: 11px 14px 11px 40px; border: 1.5px solid var(--line); border-radius: 2px; background: #fff; color: var(--ink); }
.toolbar .search input:focus { outline: 0; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-tint); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-family: var(--font-head); font-weight: 700; font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; padding: 8px 12px; border: 1.5px solid var(--line); border-radius: 2px; background: #fff; color: var(--ink-soft); cursor: pointer; transition: .15s; }
.chip:hover { border-color: var(--green); color: var(--green); }
.chip.on { background: var(--green); border-color: var(--green); color: #fff; }
.chip .n { opacity: .6; margin-left: 4px; }
.toolbar .count { margin-left: auto; font-size: .82rem; color: var(--ink-mute); font-variant-numeric: tabular-nums; }
.toolbar .clear { font-size: .82rem; color: var(--green); background: none; border: 0; text-decoration: underline; text-underline-offset: 3px; }
.load-more { text-align: center; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line); }
.empty { color: var(--ink-mute); font-size: .95rem; grid-column: 1 / -1; padding: 24px 0; }
mark { background: #FBEBD3; color: inherit; padding: 0 .1em; }

/* ── Detail pages (article / report / project) ───────────────────────────── */
.lead-figure { margin: 0 0 36px; }
.lead-figure img { max-width: 100%; width: auto; height: auto; display: block; margin: 0 auto; border-radius: var(--radius); }
.lead-figure figcaption { font-size: .78rem; color: var(--ink-soft); margin-top: 8px; font-style: italic; }
.art-hero { position: relative; background: var(--green-deep); color: #fff; isolation: isolate; }
.art-hero .photo { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.art-hero .photo img { width: 100%; height: 100%; object-fit: cover; }
.art-hero .photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,20,13,.96) 0%, rgba(6,20,13,.72) 50%, rgba(6,20,13,.35) 100%); }
.art-hero .wrap { padding: 48px 24px 44px; }
.art-hero .crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .76rem; font-weight: 600; color: #B7CBBE; margin-bottom: 22px; }
.art-hero .crumbs a:hover { color: #fff; }
.art-hero .crumbs i { font-size: .6rem; opacity: .6; }
.art-hero .kicker { background: rgba(0,0,0,.35); display: inline-block; padding: 5px 10px; border-radius: 2px; }
.art-hero h1 { color: #fff; font-size: clamp(1.8rem, 3.8vw, 3rem); margin-top: 14px; max-width: 24ch; }
.art-hero .dek { color: #E4EAE5; font-size: 1.1rem; margin-top: 14px; max-width: 62ch; }
.byline { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin-top: 22px; font-size: .8rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; color: #B7CBBE; }
.byline a { color: #fff; }
.byline a:hover { text-decoration: underline; text-underline-offset: 3px; }
.byline .av { width: 36px; height: 36px; border-radius: 50%; background: var(--amber); color: var(--amber-ink); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 900; font-size: .8rem; overflow: hidden; }
.byline .av img { width: 100%; height: 100%; object-fit: cover; }
.art-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 56px; padding: 48px 24px 40px; }
@media (max-width: 960px) { .art-layout { grid-template-columns: 1fr; gap: 32px; } }
.art-main { min-width: 0; max-width: 70ch; }
.abstract { background: var(--tint); border-left: 4px solid var(--green); padding: 20px 24px; margin-bottom: 32px; }
.abstract h2 { font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.abstract .body { font-size: 1rem; line-height: 1.65; color: var(--ink-soft); }
.prose { font-size: 1.08rem; line-height: 1.78; color: var(--ink); }
.prose > * + * { margin-top: 1.15em; }
.prose h2 { font-size: 1.5rem; margin-top: 2.2em; }
.prose h3 { font-size: 1.2rem; margin-top: 1.8em; }
.prose h1 { font-size: 1.6rem; margin-top: 2em; }
.prose > p:first-child:not(:has(> em:only-child)):not(:has(> strong:only-child))::first-letter { font-family: var(--font-head); font-weight: 900; font-size: 3.4em; float: left; line-height: .82; margin: .08em .12em 0 0; color: var(--green); }
.prose a { color: var(--green); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin: .4em 0; }
.prose li[data-list="bullet"] { list-style: disc; }
.prose li[data-list="ordered"] { list-style: decimal; }
.prose li[data-list]::before { content: none; }
.prose blockquote { border-left: 4px solid var(--amber); margin: 2em 0; padding: 4px 0 4px 24px; font-family: var(--font-head); font-weight: 600; font-size: 1.32rem; line-height: 1.4; color: var(--ink); }
.prose img { max-width: 100%; width: auto; height: auto; display: block; margin: 2em auto .6em; border-radius: var(--radius); }
.prose figure { margin: 2.2em 0; }
.prose figure img { margin: 0 auto; }
.prose figure figcaption { text-align: center; }
.prose p:has(> img:only-child) { margin: 0; }
.prose figcaption { font-size: .8rem; color: var(--ink-soft); margin-top: 10px; font-style: italic; line-height: 1.5; text-align: center; max-width: 60ch; margin-left: auto; margin-right: auto; }
.prose hr { border: 0; border-top: 1px solid var(--line); width: 96px; margin: 2em 0; }
.prose .ql-align-center img { margin-left: auto; margin-right: auto; }
.prose .ql-align-center { text-align: center; }
.prose .ql-align-right { text-align: right; }
.prose .ql-align-justify { text-align: justify; }
.prose strong { font-weight: 700; }
.prose table { border-collapse: collapse; width: 100%; font-size: .92rem; display: block; overflow-x: auto; }
.prose td, .prose th { border: 1px solid var(--line); padding: .5em .75em; }
.art-aside { display: flex; flex-direction: column; gap: 28px; }
.aside-block h2 { font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--ink); }
.pdf-card { background: var(--green); color: #fff; padding: 22px; border-radius: var(--radius); }
.pdf-card p { color: #D7E7DD; font-size: .88rem; margin: 8px 0 16px; }
.pdf-card .btn { width: 100%; justify-content: center; box-sizing: border-box; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; padding: 6px 10px; border: 1px solid var(--line); border-radius: 2px; color: var(--ink-soft); background: #fff; }
.pill i { color: var(--green); font-size: .7rem; }
.pill.on { border-color: var(--green); color: var(--green); }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list a { font-family: var(--font-head); font-weight: 700; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; padding: 6px 10px; background: var(--green-tint); color: var(--green); border-radius: 2px; }
.tag-list a:hover { background: var(--green); color: #fff; }
.author-list { display: flex; flex-direction: column; gap: 10px; }
.author-list a { display: flex; align-items: center; gap: 10px; font-size: .9rem; }
.author-list a:hover { color: var(--green); }
.author-list .av { width: 36px; height: 36px; border-radius: 50%; background: var(--green-tint); color: var(--green); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: .75rem; overflow: hidden; flex-shrink: 0; }
.author-list .av img { width: 100%; height: 100%; object-fit: cover; }
.author-list small { display: block; color: var(--ink-mute); font-size: .74rem; }
.share-row { display: flex; flex-wrap: wrap; gap: 8px; }
.share-row a, .share-row button { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 600; padding: 8px 12px; border: 1px solid var(--line); border-radius: 2px; background: #fff; color: var(--ink-soft); }
.share-row a:hover, .share-row button:hover { border-color: var(--green); color: var(--green); }
.cite { font-size: .8rem; color: var(--ink-soft); line-height: 1.55; background: var(--tint); padding: 12px 14px; border-radius: 2px; }
.extras { max-width: 70ch; }
.extras section { margin-top: 40px; }
.extras h2 { font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--ink); }
.extras .video { aspect-ratio: 16 / 9; background: #000; border-radius: var(--radius); overflow: hidden; }
.extras .video iframe { width: 100%; height: 100%; border: 0; }
.downloads { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 600px) { .downloads { grid-template-columns: 1fr; } }
.downloads a { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 2px; background: #fff; }
.downloads a:hover { border-color: var(--green); }
.downloads .name { font-size: .9rem; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.downloads .type { font-size: .72rem; color: var(--ink-mute); text-transform: uppercase; }
.sources-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.sources-list li { display: flex; gap: 14px; }
.sources-list .n { font-family: var(--font-head); font-weight: 800; font-size: .72rem; color: var(--ink-mute); padding-top: 3px; width: 24px; flex-shrink: 0; }
.sources-list .t { font-weight: 600; }
.sources-list .t a:hover { color: var(--green); text-decoration: underline; }
.sources-list .m { font-size: .8rem; color: var(--ink-soft); }
.sources-list .links { font-size: .78rem; display: flex; gap: 14px; margin-top: 4px; }
.sources-list .links a { color: var(--green); }
.related { background: var(--tint); padding: 56px 0; }
.not-found { text-align: center; padding: 80px 24px; color: var(--ink-soft); }

/* ── "Data behind this article" links ────────────────────────────────────── */
.data-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 640px) { .data-links { grid-template-columns: 1fr; } }
.data-link { display: flex; flex-direction: column; gap: 4px; padding: 14px 16px; border: 1px solid var(--line); border-left: 3px solid var(--green); background: #fff; min-width: 0; }
.data-link:hover { border-color: var(--green); background: var(--tint); }
.data-link .k { font-family: var(--font-head); font-weight: 700; font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--amber-text); }
.data-link .t { font-family: var(--font-head); font-weight: 700; font-size: .95rem; line-height: 1.3; }
.data-link .v { font-family: var(--font-head); font-weight: 900; font-size: 1.3rem; font-variant-numeric: tabular-nums; }
.data-link .v small { font-family: var(--font-body); font-weight: 500; font-size: .74rem; color: var(--ink-mute); }
.data-link .s { font-size: .74rem; color: var(--green); font-weight: 600; margin-top: 4px; }
