:root {
  --ink: #101b26;
  --ink-2: #162635;
  --ink-3: #22384a;
  --paper: #f5f1e8;
  --paper-2: #ebe5d8;
  --white: #fffdf8;
  --lime: #c8f04b;
  --lime-dark: #8faa20;
  --rust: #d96942;
  --sky: #7fc4db;
  --muted: #6a716f;
  --line: rgba(16, 27, 38, .18);
  --line-light: rgba(255, 255, 255, .17);
  --shadow: 0 18px 55px rgba(16, 27, 38, .13);
  --max: 1240px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(200, 240, 75, .08), transparent 22rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

::selection {
  color: var(--ink);
  background: var(--lime);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: .7rem 1rem;
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-180%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: none;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 790px);
  margin-inline: auto;
}

.utility-bar {
  color: rgba(255,255,255,.74);
  background: #09131c;
  border-bottom: 1px solid var(--line-light);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.utility-inner {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.age-mark {
  display: inline-grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid var(--lime);
  border-radius: 50%;
  color: var(--lime);
  font-size: .64rem;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(16, 27, 38, .97);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(16px);
}

.header-main {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.47rem;
  font-weight: 700;
  letter-spacing: -.035em;
}

.brand-kicker {
  margin-top: .36rem;
  color: var(--lime);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.primary-nav {
  justify-self: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  padding: 1.75rem 0 1.65rem;
  color: rgba(255,255,255,.76);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1.2rem;
  left: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: #fff;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.icon-button,
.menu-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  cursor: pointer;
}

.icon-button:hover,
.menu-button:hover {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.icon-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.menu-button {
  display: none;
  gap: 4px;
  align-content: center;
}

.menu-button span {
  width: 19px;
  height: 1px;
  background: currentColor;
}

.news-rail {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.news-rail-inner {
  min-height: 42px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.2rem;
}

.rail-label {
  padding: .22rem .5rem;
  color: var(--ink);
  background: var(--lime);
  font-size: .63rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rail-items {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.rail-items::-webkit-scrollbar {
  display: none;
}

.rail-items a {
  color: var(--ink-3);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
}

.rail-items a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: .6rem;
  border-radius: 50%;
  background: var(--rust);
  vertical-align: .12em;
}

.hero {
  position: relative;
  min-height: 670px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,17,25,.96) 0%, rgba(7,17,25,.76) 42%, rgba(7,17,25,.17) 78%),
    linear-gradient(0deg, rgba(7,17,25,.9) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 7.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr);
  align-items: end;
  gap: 4rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 1rem;
  color: var(--rust);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}

.eyebrow.light {
  color: var(--lime);
}

.display-title,
.page-title,
.section-title,
.card-title,
.article-title,
.standfirst {
  font-family: var(--serif);
  text-wrap: balance;
}

.display-title {
  max-width: 790px;
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 6.6rem);
  font-weight: 600;
  letter-spacing: -.062em;
  line-height: .93;
}

.display-title em {
  color: var(--lime);
  font-weight: 400;
}

.hero-deck {
  max-width: 690px;
  margin: 1.6rem 0 0;
  color: rgba(255,255,255,.8);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.6;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .7rem 1rem;
  margin-top: 1.6rem;
  color: rgba(255,255,255,.66);
  font-size: .7rem;
  font-weight: 720;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.story-meta .dot::before {
  content: "•";
  margin-right: 1rem;
  color: var(--lime);
}

.hero-side {
  padding: 1.4rem;
  border-top: 1px solid var(--lime);
  background: rgba(10,20,28,.63);
  backdrop-filter: blur(8px);
}

.hero-side-label {
  margin: 0 0 1.5rem;
  color: var(--lime);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-side-item + .hero-side-item {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-light);
}

.hero-side-item a {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.22;
  text-decoration: none;
}

.hero-side-item a:hover {
  color: var(--lime);
}

.hero-side-item span {
  display: block;
  margin-top: .5rem;
  color: rgba(255,255,255,.57);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
}

.section.compact {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--ink);
  background-size: 48px 48px;
}

.section-white {
  background: var(--white);
}

.section-rust {
  color: var(--white);
  background: var(--rust);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.section-dark .section-head {
  border-color: var(--line-light);
}

.section-title {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1;
}

.section-intro {
  max-width: 650px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-intro {
  color: rgba(255,255,255,.67);
}

.text-link {
  flex: 0 0 auto;
  font-size: .69rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: " ↗";
  color: var(--rust);
}

.text-link:hover {
  color: var(--rust);
}

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

.story-card {
  grid-column: span 4;
  min-width: 0;
}

.story-card.wide {
  grid-column: span 8;
}

.story-card.half {
  grid-column: span 6;
}

.story-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ink-2);
  aspect-ratio: 16 / 10;
}

.story-card.wide .story-image-link {
  aspect-ratio: 2 / 1;
}

.story-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}

.story-image-link::after {
  content: "Read";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translateY(85px);
  transition: transform .3s ease;
}

.story-card:hover .story-image-link img {
  transform: scale(1.035);
  filter: saturate(.9);
}

.story-card:hover .story-image-link::after {
  transform: none;
}

.card-body {
  padding-top: 1.2rem;
}

.category {
  color: var(--rust);
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-dark .category {
  color: var(--lime);
}

.card-title {
  margin: .45rem 0 .6rem;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -.028em;
}

.card-title a {
  text-decoration: none;
}

.card-title a:hover {
  color: var(--rust);
}

.section-dark .card-title a:hover {
  color: var(--lime);
}

.card-excerpt {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.section-dark .card-excerpt {
  color: rgba(255,255,255,.63);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-dark .card-meta {
  color: rgba(255,255,255,.5);
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.number-card {
  min-height: 220px;
  padding: 1.5rem;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.number-card strong {
  display: block;
  color: var(--lime);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: 1;
}

.number-card p {
  max-width: 230px;
  margin: 1.1rem 0 0;
  color: rgba(255,255,255,.68);
  font-size: .82rem;
  line-height: 1.5;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  align-items: stretch;
  gap: 0;
  background: var(--white);
  box-shadow: var(--shadow);
}

.split-feature.reverse {
  grid-template-columns: minmax(340px, .92fr) minmax(0, 1.08fr);
}

.split-feature.reverse .split-media {
  order: 2;
}

.split-media {
  min-height: 520px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
}

.split-copy h2,
.split-copy h3 {
  margin: .6rem 0 1.2rem;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.1vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .98;
}

.split-copy p {
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.3rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: .7rem 1.15rem;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: .2s ease;
}

.button:hover {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.button.outline {
  color: var(--ink);
  background: transparent;
}

.button.outline:hover {
  background: var(--paper-2);
  border-color: var(--ink);
}

.button.lime {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.button.lime:hover {
  background: var(--white);
  border-color: var(--white);
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: timeline;
}

.timeline li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 2rem;
  padding: 1.7rem 0;
  border-top: 1px solid var(--line);
}

.timeline time {
  color: var(--rust);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.timeline h3 {
  margin: 0 0 .45rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.12;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(3.5rem, 7vw, 6rem);
  color: var(--white);
  background: var(--ink);
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -90px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(200,240,75,.35);
  transform: rotate(38deg);
}

.page-hero::before {
  content: "";
  position: absolute;
  right: 9%;
  bottom: -220px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(200,240,75,.12), transparent 66%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-title {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 8rem);
  font-weight: 600;
  letter-spacing: -.066em;
  line-height: .9;
}

.page-deck {
  max-width: 680px;
  margin: 1.8rem 0 0;
  color: rgba(255,255,255,.7);
  font-size: 1.08rem;
}

.page-stamp {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 2rem;
  margin-top: 2.3rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-light);
  color: rgba(255,255,255,.54);
  font-size: .65rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.filter-bar {
  position: sticky;
  top: 78px;
  z-index: 50;
  padding: .8rem 0;
  background: rgba(245,241,232,.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.filter-list {
  display: flex;
  gap: .55rem;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  list-style: none;
  scrollbar-width: none;
}

.filter-list::-webkit-scrollbar {
  display: none;
}

.filter-button {
  padding: .52rem .82rem;
  border: 1px solid var(--line);
  background: transparent;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .09em;
  white-space: nowrap;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime-dark);
}

.news-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.news-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) minmax(220px, 350px);
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding .25s ease, background .25s ease;
}

.news-row:hover {
  padding-inline: 1rem;
  background: rgba(255,255,255,.62);
}

.news-row.is-hidden {
  display: none;
}

.news-date {
  color: var(--muted);
  font-size: .65rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.news-row h2,
.news-row h3 {
  margin: .35rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.news-row h2 a,
.news-row h3 a {
  text-decoration: none;
}

.news-row h2 a:hover,
.news-row h3 a:hover {
  color: var(--rust);
}

.news-row p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
}

.article-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 0;
  height: 3px;
  background: var(--lime);
}

.article-header {
  padding: clamp(4.5rem, 8vw, 7rem) 0 2.5rem;
  background: var(--white);
}

.article-labels {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 1.4rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .25rem .65rem;
  border: 1px solid var(--line);
  font-size: .61rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pill.accent {
  background: var(--lime);
  border-color: var(--lime-dark);
}

.article-title {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 7.2rem);
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: .92;
}

.standfirst {
  max-width: 850px;
  margin: 1.7rem 0 0;
  color: var(--ink-3);
  font-size: clamp(1.25rem, 2.3vw, 1.8rem);
  line-height: 1.35;
}

.byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem 1.4rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.byline strong {
  color: var(--ink);
}

.article-lead-image {
  width: min(calc(100% - 40px), 1440px);
  max-height: 780px;
  margin: 0 auto;
  object-fit: cover;
}

.image-caption {
  width: min(calc(100% - 40px), 1240px);
  margin: .7rem auto 0;
  color: var(--muted);
  font-size: .68rem;
}

.article-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 760px) minmax(190px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.article-share {
  align-self: start;
  position: sticky;
  top: 120px;
}

.article-share-title,
.source-title {
  margin: 0 0 .9rem;
  color: var(--muted);
  font-size: .59rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.share-links {
  display: grid;
  gap: .45rem;
}

.share-links button,
.share-links a {
  padding: .55rem .7rem;
  border: 1px solid var(--line);
  background: transparent;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.share-links button:hover,
.share-links a:hover {
  background: var(--lime);
}

.article-body {
  min-width: 0;
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.82;
}

.article-body > p:first-child::first-letter {
  float: left;
  margin: .08em .12em 0 0;
  color: var(--rust);
  font-size: 4.6em;
  font-weight: 700;
  line-height: .76;
}

.article-body h2 {
  margin: 3.2rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -.04em;
  line-height: 1.02;
}

.article-body h3 {
  margin: 2.3rem 0 .7rem;
  font-size: 1.45rem;
  line-height: 1.15;
}

.article-body p,
.article-body ul,
.article-body ol {
  margin: 0 0 1.4rem;
}

.article-body li + li {
  margin-top: .55rem;
}

.article-body a {
  text-decoration-color: var(--rust);
}

.article-body blockquote {
  margin: 2.6rem 0;
  padding: 1.6rem 0 1.6rem 1.7rem;
  border-left: 5px solid var(--lime);
  color: var(--ink-3);
  font-size: 1.35rem;
  line-height: 1.5;
}

.article-body .fact-box {
  margin: 2.6rem 0;
  padding: 1.6rem;
  border-top: 5px solid var(--ink);
  background: var(--paper-2);
  font-family: var(--sans);
  font-size: .92rem;
  line-height: 1.6;
}

.fact-box h3 {
  margin: 0 0 .8rem;
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.article-sources {
  align-self: start;
  padding: 1.2rem;
  border-top: 3px solid var(--rust);
  background: rgba(255,255,255,.55);
}

.article-sources ul {
  margin: 0;
  padding-left: 1rem;
}

.article-sources li {
  margin-bottom: .8rem;
  font-size: .72rem;
  line-height: 1.45;
}

.article-sources a {
  overflow-wrap: anywhere;
}

.article-note {
  padding: 1rem;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--sans);
  font-size: .76rem;
  line-height: 1.5;
}

.prose-grid {
  display: grid;
  grid-template-columns: minmax(220px, .36fr) minmax(0, .64fr);
  gap: clamp(2rem, 7vw, 7rem);
}

.prose-grid + .prose-grid {
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 1px solid var(--line);
}

.prose-grid h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -.045em;
  line-height: 1;
}

.prose-content {
  font-size: 1rem;
}

.prose-content > :first-child {
  margin-top: 0;
}

.prose-content p,
.prose-content ul,
.prose-content ol {
  margin: 0 0 1.25rem;
}

.prose-content h3 {
  margin: 2rem 0 .6rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.15;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.topic-card {
  min-height: 280px;
  padding: 1.6rem;
  background: var(--white);
}

.topic-number {
  color: var(--rust);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
}

.topic-card h3 {
  margin: 2rem 0 .7rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.08;
}

.topic-card p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}

.project-table-wrap {
  overflow-x: auto;
  border-top: 4px solid var(--ink);
}

.project-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  font-size: .83rem;
}

.project-table th,
.project-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.project-table th {
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-table td strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.08rem;
}

.status {
  display: inline-flex;
  padding: .18rem .5rem;
  border: 1px solid var(--line);
  background: var(--paper-2);
  font-size: .57rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.callout {
  display: grid;
  grid-template-columns: .45fr .55fr;
  gap: 3rem;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  background: var(--ink-2);
}

.callout h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -.04em;
  line-height: 1;
}

.callout p {
  margin-top: 0;
  color: rgba(255,255,255,.7);
}

.responsible-banner {
  color: var(--ink);
  background: var(--lime);
}

.responsible-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.3rem;
}

.responsible-inner .age-mark {
  width: 48px;
  height: 48px;
  color: var(--ink);
  border-color: var(--ink);
  font-size: .8rem;
}

.responsible-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.responsible-copy span {
  font-size: .73rem;
}

.site-footer {
  padding: 4.5rem 0 2rem;
  color: rgba(255,255,255,.68);
  background: #09131c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, .65fr);
  gap: 3rem;
}

.footer-brand p {
  max-width: 390px;
  margin-top: 1.2rem;
  font-size: .82rem;
}

.footer-column h2 {
  margin: 0 0 1rem;
  color: var(--lime);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li + li {
  margin-top: .55rem;
}

.footer-column a {
  font-size: .78rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
  font-size: .65rem;
}

.footer-bottom p {
  max-width: 860px;
  margin: 0;
}

.search-dialog,
.age-dialog {
  width: min(calc(100% - 32px), 760px);
  max-height: min(86vh, 760px);
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  box-shadow: 0 30px 100px rgba(0,0,0,.45);
}

.search-dialog::backdrop,
.age-dialog::backdrop {
  background: rgba(5,13,19,.87);
  backdrop-filter: blur(8px);
}

.search-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  color: var(--white);
  background: var(--ink);
}

.search-head strong {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.dialog-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-light);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.search-content {
  padding: 1.4rem;
}

.search-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--white);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.search-results {
  display: grid;
  max-height: 430px;
  margin-top: 1rem;
  overflow-y: auto;
}

.search-result {
  display: block;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.search-result strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.search-result span {
  display: block;
  margin-top: .25rem;
  color: var(--muted);
  font-size: .72rem;
}

.search-result:hover strong {
  color: var(--rust);
}

.search-empty {
  color: var(--muted);
  font-size: .82rem;
}

.age-dialog {
  width: min(calc(100% - 32px), 590px);
  overflow: visible;
}

.age-panel {
  display: grid;
  grid-template-columns: 8px 1fr;
}

.age-accent {
  background: var(--lime);
}

.age-content {
  padding: clamp(2rem, 6vw, 4rem);
}

.age-content .brand {
  color: var(--ink);
}

.age-content h2 {
  margin: 2.3rem 0 .9rem;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 8vw, 4.7rem);
  letter-spacing: -.06em;
  line-height: .92;
}

.age-content h2:focus {
  outline: none;
}

.age-content p {
  color: var(--muted);
  font-size: .88rem;
}

.age-disclaimer {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: .7rem !important;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  width: 44px;
  height: 44px;
  border: 0;
  color: var(--ink);
  background: var(--lime);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: .25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 500;
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--ink);
  font-size: .72rem;
  transform: translate(-50%, 100px);
  transition: transform .25s ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.contact-card {
  padding: 2rem;
  border-top: 4px solid var(--lime-dark);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-size: 1.7rem;
}

.contact-card a {
  font-weight: 750;
}

.notice {
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--rust);
  background: rgba(217,105,66,.08);
  font-size: .85rem;
}

.mt-4 {
  margin-top: 4rem;
}

.error-page {
  min-height: 72vh;
  display: grid;
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

.error-code {
  color: var(--lime);
  font-family: var(--serif);
  font-size: clamp(6rem, 22vw, 18rem);
  letter-spacing: -.08em;
  line-height: .65;
}

@media (max-width: 1060px) {
  .primary-nav {
    position: fixed;
    top: 113px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 2rem;
    background: var(--ink);
  }

  .nav-open .primary-nav {
    display: block;
  }

  .nav-list {
    display: grid;
    align-content: start;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--serif);
    font-size: 1.65rem;
    letter-spacing: -.02em;
    text-transform: none;
  }

  .nav-link::after {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero-grid {
    grid-template-columns: 1fr .5fr;
    gap: 2rem;
  }

  .story-card,
  .story-card.wide {
    grid-column: span 6;
  }

  .number-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-layout {
    grid-template-columns: minmax(0, 760px) minmax(180px, 1fr);
  }

  .article-share {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, .7fr);
    gap: 1.5rem;
  }
}

@media (max-width: 780px) {
  .container,
  .narrow,
  .article-lead-image,
  .image-caption {
    width: min(calc(100% - 28px), var(--max));
  }

  .utility-meta span:not(.age-mark) {
    display: none;
  }

  .utility-inner > span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-main {
    min-height: 68px;
    grid-template-columns: 1fr auto;
    gap: .8rem;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .header-actions {
    grid-column: 2;
  }

  .primary-nav {
    top: 103px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(7,17,25,.98) 0%, rgba(7,17,25,.68) 70%, rgba(7,17,25,.15));
  }

  .hero-content {
    padding: 8rem 0 2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .display-title {
    font-size: clamp(3rem, 14vw, 5.6rem);
  }

  .hero-side {
    display: none;
  }

  .section-head {
    display: block;
  }

  .section-head .text-link {
    display: inline-block;
    margin-top: 1rem;
  }

  .story-grid {
    gap: 2.5rem 1rem;
  }

  .story-card,
  .story-card.wide,
  .story-card.half {
    grid-column: span 12;
  }

  .split-feature,
  .split-feature.reverse {
    grid-template-columns: 1fr;
  }

  .split-feature.reverse .split-media {
    order: 0;
  }

  .split-media {
    min-height: 300px;
  }

  .page-title {
    font-size: clamp(3.5rem, 17vw, 6.2rem);
  }

  .page-stamp {
    grid-template-columns: 1fr;
    gap: .35rem;
  }

  .filter-bar {
    top: 68px;
  }

  .news-row {
    grid-template-columns: 1fr;
    gap: .55rem;
  }

  .news-row p {
    max-width: 600px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sources {
    margin-top: 1rem;
  }

  .prose-grid,
  .callout {
    grid-template-columns: 1fr;
  }

  .prose-grid + .prose-grid {
    margin-top: 3.5rem;
    padding-top: 3.5rem;
  }

  .topic-grid {
    grid-template-columns: 1fr;
  }

  .topic-card {
    min-height: auto;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: .45rem;
  }

  .responsible-inner {
    grid-template-columns: auto 1fr;
    padding: 1rem 0;
  }

  .responsible-inner .text-link {
    grid-column: 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .number-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .number-card {
    min-height: 175px;
  }

  .story-image-link::after {
    display: none;
  }

  .article-body {
    font-size: 1.02rem;
  }

  .age-content {
    padding: 1.7rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .news-rail,
  .responsible-banner,
  .site-footer,
  .article-share,
  .back-to-top,
  .article-progress {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .article-layout {
    display: block;
  }

  a {
    color: #000;
  }
}
