:root {
  color-scheme: light;
  --ink: #121316;
  --muted: #66707a;
  --soft: #f6f4ef;
  --paper: #fffdf8;
  --surface: #ffffff;
  --line: #dfddd6;
  --blue: #0556d8;
  --blue-ink: #08327a;
  --red: #c23737;
  --olive: #697a45;
  --gold: #c79b34;
  --shadow: 0 20px 55px rgba(18, 19, 22, 0.12);
  --radius: 7px;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Inter", "Aptos", "Helvetica Neue", Arial, sans-serif;
}

[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f7f4ec;
  --muted: #b5b0a8;
  --soft: #191a1d;
  --paper: #111214;
  --surface: #181a1f;
  --line: #303238;
  --blue: #79abff;
  --blue-ink: #d6e4ff;
  --red: #f18888;
  --olive: #bccb82;
  --gold: #e8c66b;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open,
body.search-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, currentColor 32%, transparent);
  text-underline-offset: 0.18em;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 58%, white);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  inset-block-start: 1rem;
  z-index: 1000;
  padding: 0.65rem 0.85rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1120px, calc(100% - 32px));
  min-height: 74px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.masthead,
.brand-name {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 5vw, 2.35rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.brand {
  display: inline-grid;
  grid-template-columns: 42px auto;
  gap: 0.65rem;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 800;
}

.brand-line {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.1;
}

.primary-nav {
  display: none;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  font-size: 0.92rem;
  font-weight: 600;
}

.primary-nav a {
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--blue);
}

.header-actions {
  display: flex;
  justify-content: end;
  gap: 0.28rem;
}

.icon-button,
.mobile-bottom-nav button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.icon-button:hover,
.mobile-bottom-nav button:hover {
  background: color-mix(in srgb, var(--ink) 8%, transparent);
  color: var(--blue);
  transform: translateY(-1px);
}

.desktop-only {
  display: none;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.mobile-panel[data-open="true"] {
  display: block;
}

.mobile-panel nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 1rem 0 1.25rem;
  display: grid;
  gap: 0.35rem;
}

.mobile-panel a {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
}

h1,
h2,
h3,
.display {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

p {
  margin-top: 0;
}

.button,
.cta-link,
.pill-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.1rem;
  border-radius: 4px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.cta-link:hover,
.pill-button:hover {
  transform: translateY(-2px);
}

.button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(5, 86, 216, 0.22);
}

.button.secondary,
.button.ghost,
.pill-button.secondary {
  background: transparent;
  color: var(--ink);
}

.button.ghost {
  border-color: var(--line);
}

.kicker,
.eyebrow,
.tag {
  margin: 0;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kicker.blue,
.tag.blue {
  color: var(--blue);
}

.kicker.red,
.tag.red {
  color: var(--red);
}

.tag.olive {
  color: var(--olive);
}

.tag.gold {
  color: var(--gold);
}

.tag.clay {
  color: #b85f41;
}

.front-page {
  padding-bottom: 4rem;
}

.front-hero {
  border-bottom: 1px solid var(--line);
}

.front-hero-grid {
  display: grid;
  gap: clamp(1.4rem, 4vw, 3.2rem);
  padding: clamp(1.5rem, 4vw, 2rem) 0 clamp(1.55rem, 5vw, 2rem);
}

.lead-story {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.lead-story h1 {
  max-width: 520px;
  font-size: clamp(2.75rem, 10vw, 4.65rem);
}

.lead-summary {
  max-width: 390px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.14rem);
  line-height: 1.55;
}

.byline,
.small-byline {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.byline img,
.small-byline img,
.opinion-row img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.byline strong {
  display: block;
  color: var(--ink);
  font-size: 0.82rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-top: 0.15rem;
}

.hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  background: var(--soft);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mobile-hero-media {
  display: block;
}

.desktop-hero-media {
  display: none;
}

.hero-topic-switcher {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  padding: 0 0 1.15rem;
}

.hero-topic-switcher button {
  width: 8px;
  height: 8px;
  padding: 0;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--muted) 45%, transparent);
  cursor: pointer;
  text-indent: -999px;
  white-space: nowrap;
}

.hero-topic-switcher button[aria-pressed="true"] {
  width: 24px;
  background: var(--blue);
}

.section {
  padding: clamp(2.4rem, 7vw, 5.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.front-section {
  padding-block: clamp(1.25rem, 4vw, 2.2rem);
}

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

.section-line h2 {
  font-size: clamp(1.55rem, 4vw, 2.1rem);
}

.section-line a,
.text-link {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.magazine-grid {
  display: grid;
  gap: 1.4rem;
}

.featured-row {
  display: grid;
  gap: 1rem;
}

.news-card {
  min-width: 0;
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
}

.image-link {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  text-decoration: none;
}

.image-link img {
  transition: transform 280ms ease;
}

.image-link:hover img {
  transform: scale(1.025);
}

.news-card .kicker {
  margin-top: 0.65rem;
}

.news-card h3 {
  margin-top: 0.28rem;
  font-size: clamp(1.28rem, 3vw, 1.68rem);
  line-height: 1.04;
}

.news-card h3 a,
.opinion-row h3 a,
.compact-story h3 a,
.dossier-wide h3 a,
.brief-card h3 a,
.dossier-card h3 a,
.article-card h3 a {
  text-decoration: none;
}

.small-byline {
  margin-top: 0.65rem;
}

.small-byline img {
  width: 28px;
  height: 28px;
}

.side-column {
  display: grid;
  gap: 1.1rem;
}

.rail-block {
  display: grid;
  gap: 0.9rem;
  padding-top: 0.25rem;
}

.rail-block h2 {
  font-size: 1.35rem;
}

.opinion-row,
.compact-story {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding-bottom: 0.82rem;
  border-bottom: 1px solid var(--line);
}

.opinion-row h3,
.compact-story h3 {
  margin-top: 0.15rem;
  font-size: 1.05rem;
  line-height: 1.08;
}

.opinion-row span,
.compact-story span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.compact-story img {
  width: 92px;
  height: 70px;
  object-fit: cover;
  border-radius: 3px;
}

.dossier-feature {
  padding-top: 0;
}

.dossier-wide {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.dossier-wide > div {
  display: grid;
  gap: 0.6rem;
  align-content: center;
  padding: clamp(1rem, 4vw, 1.4rem);
}

.dossier-wide h3 {
  max-width: 520px;
  font-size: clamp(1.75rem, 5vw, 2.65rem);
}

.dossier-wide p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.dossier-wide img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.method-section {
  background: var(--soft);
}

.method-grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.method-grid h2,
.section-header h2 {
  max-width: 720px;
  font-size: clamp(2rem, 7vw, 4.2rem);
}

.method-grid p,
.section-header p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.02rem;
}

.method-steps {
  display: grid;
  gap: 0.7rem;
}

.method-steps article,
.brief-card,
.method-block,
.contact-panel,
.legal-block,
.article-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.method-steps article {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
}

.method-steps span {
  color: var(--blue);
  font-weight: 800;
  font-size: 0.78rem;
}

.method-steps h3 {
  font-size: 1.4rem;
}

.method-steps p,
.brief-card p,
.dossier-card p,
.method-block p,
.legal-block p,
.article-card p {
  margin: 0;
  color: var(--muted);
}

.newsletter-section {
  border-bottom: 0;
}

.newsletter {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.2rem, 5vw, 2.2rem);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
}

.newsletter h2 {
  font-size: clamp(2rem, 7vw, 3.4rem);
}

.newsletter p {
  margin: 0;
  color: color-mix(in srgb, var(--paper) 78%, transparent);
}

.newsletter form {
  display: grid;
  gap: 0.6rem;
}

.newsletter label {
  font-weight: 700;
  font-size: 0.86rem;
}

.newsletter-input {
  display: grid;
  gap: 0.65rem;
}

.newsletter input {
  min-height: 48px;
  border: 1px solid color-mix(in srgb, var(--paper) 28%, transparent);
  border-radius: 4px;
  background: color-mix(in srgb, var(--paper) 9%, transparent);
  color: var(--paper);
  padding: 0.75rem 0.85rem;
}

.form-note {
  min-height: 1.2em;
  font-size: 0.8rem;
}

.mobile-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  min-height: calc(62px + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(18px);
}

.mobile-bottom-nav a,
.mobile-bottom-nav button {
  width: auto;
  height: auto;
  min-height: 62px;
  border-radius: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.16rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.68rem;
}

.mobile-bottom-nav i {
  font-size: 1.05rem;
}

.mobile-bottom-nav a[aria-current="page"],
.mobile-bottom-nav button[aria-pressed="true"] {
  color: var(--blue);
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  background: color-mix(in srgb, var(--ink) 42%, transparent);
  padding: 1rem;
}

.search-modal[data-open="true"] {
  display: grid;
  place-items: start center;
}

.search-card {
  width: min(720px, 100%);
  margin-top: 7vh;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.search-card form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  align-items: end;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  color: var(--muted);
  font-size: 0.82rem;
}

.field input,
.field textarea {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 0.7rem 0.8rem;
}

.search-results {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.search-results a {
  display: block;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
}

.page-hero {
  padding: clamp(3rem, 11vw, 7rem) 0 clamp(1.8rem, 6vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.7rem, 14vw, 7.2rem);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.cards {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

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

.article-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--ink) 30%, var(--line));
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--line);
}

.card-body,
.brief-card,
.method-block,
.legal-block,
.contact-panel {
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
}

.article-card h3,
.brief-card h3,
.dossier-card h3 {
  font-size: clamp(1.35rem, 5vw, 2rem);
  line-height: 1.05;
}

.tag-row,
.hero-meta,
.meta-row,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
  align-items: center;
  color: color-mix(in srgb, currentColor 75%, transparent);
  font-size: 0.86rem;
}

.brief-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--blue-ink);
  color: var(--paper);
  font-weight: 800;
}

.dossier-card {
  min-height: 320px;
  display: grid;
  align-content: end;
  gap: 0.85rem;
  overflow: hidden;
  padding: 1rem;
  color: #fffaf1;
  background:
    linear-gradient(180deg, rgba(7, 20, 31, 0.12), rgba(7, 20, 31, 0.86)),
    var(--image) center / cover;
  text-decoration: none;
}

.dossier-card p {
  color: color-mix(in srgb, #fffaf1 82%, transparent);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.breadcrumb {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  text-decoration: none;
}

.article-layout {
  display: grid;
  gap: 2rem;
}

.article-main {
  max-width: 780px;
}

.article-main h2 {
  margin-top: 2.4rem;
  font-size: clamp(2rem, 6vw, 3.2rem);
}

.article-main h3 {
  margin-top: 1.6rem;
  font-size: 1.5rem;
}

.article-main p {
  color: color-mix(in srgb, var(--ink) 84%, var(--muted));
  font-size: 1.05rem;
}

.article-lede {
  font-size: clamp(1.15rem, 4vw, 1.45rem);
  color: var(--ink);
}

.article-media {
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.article-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.note-box,
.summary-box,
.word-box,
.source-box {
  margin: 1.4rem 0;
  padding: 1rem;
  border-left: 4px solid var(--gold);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.summary-box {
  border-left-color: var(--blue);
}

.word-box {
  border-left-color: var(--olive);
}

.article-aside {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.aside-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--surface);
}

.aside-panel h2,
.aside-panel h3 {
  margin: 0 0 0.8rem;
  font-size: 1.15rem;
  font-family: var(--sans);
  line-height: 1.2;
}

.status-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--olive) 16%, transparent);
  color: var(--olive);
  font-weight: 800;
  font-size: 0.82rem;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 250;
  width: 100%;
  height: 4px;
  background: transparent;
}

.reading-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--gold);
}

.timeline {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.timeline time {
  color: var(--blue);
  font-weight: 800;
}

.mini-list {
  margin: 0;
  padding-left: 1.1rem;
}

.mini-list li + li {
  margin-top: 0.35rem;
}

.split-band {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 2.6rem 0 5rem;
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
}

.footer-masthead {
  color: var(--paper);
}

.footer-grid nav {
  display: grid;
  gap: 0.45rem;
}

.footer-grid a,
.site-footer p {
  color: color-mix(in srgb, var(--paper) 78%, transparent);
}

@media (max-width: 520px) {
  .header-inner {
    width: min(100% - 20px, 1120px);
    min-height: 58px;
    grid-template-columns: 42px 1fr 42px;
  }

  .masthead {
    justify-self: center;
    font-size: 1.28rem;
  }

  .header-actions {
    justify-self: end;
  }

  .lead-story h1 {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  .page-hero {
    padding: 2.2rem 0 1.6rem;
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 11vw, 4.2rem);
  }

  .page-hero p {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button.ghost {
    display: none;
  }

  .search-card form {
    grid-template-columns: 1fr;
  }

  .featured-row {
    gap: 0;
  }

  .news-card {
    display: grid;
    grid-template-columns: 102px 1fr;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .news-card .image-link {
    grid-row: span 3;
  }

  .news-card img {
    aspect-ratio: 1.28;
  }

  .news-card .kicker {
    margin-top: 0;
  }

  .news-card h3 {
    font-size: 1.08rem;
  }

  .small-byline img {
    display: none;
  }

  .dossier-wide img {
    order: -1;
  }
}

@media (max-width: 759px) {
  body {
    padding-bottom: calc(62px + env(safe-area-inset-bottom));
  }

  body.search-open {
    padding-bottom: 0;
  }

  body.search-open .mobile-bottom-nav {
    display: none;
  }
}

@media (min-width: 760px) {
  .desktop-only {
    display: inline-grid;
  }

  .mobile-only,
  .mobile-bottom-nav {
    display: none;
  }

  .primary-nav {
    display: flex;
  }

  .front-hero-grid {
    grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.28fr);
    align-items: start;
    padding-top: 1.7rem;
    padding-bottom: 1.35rem;
  }

  .lead-story {
    gap: 0.78rem;
  }

  .lead-story h1 {
    font-size: clamp(3rem, 5.25vw, 4.1rem);
  }

  .mobile-hero-media {
    display: none;
  }

  .desktop-hero-media {
    display: block;
  }

  .hero-topic-switcher {
    display: none;
  }

  .magazine-grid {
    grid-template-columns: minmax(0, 1fr) 292px;
  }

  .side-column {
    border-left: 1px solid var(--line);
    padding-left: 1.35rem;
  }

  .featured-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .dossier-wide {
    grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  }

  .method-grid,
  .newsletter {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .method-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .newsletter-input {
    grid-template-columns: 1fr auto;
  }

  .grid.two,
  .split-band {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.25fr repeat(3, 1fr);
  }

  .article-layout {
    grid-template-columns: minmax(0, 780px) 320px;
    align-items: start;
  }

  .article-aside {
    position: sticky;
    top: 88px;
  }

  .site-footer {
    padding-bottom: 2.6rem;
  }
}

@media (min-width: 1040px) {
  .header-inner {
    min-height: 82px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
