:root {
  --paper: #faf9f6;
  --surface: #f2f0eb;
  --ink: #1c1c1c;
  --prose: #25312b;
  --muted: #5a5854;
  --line: #e6e4df;
  --accent: #2a4b3d;
  --accent-2: #8b493e;
  --blue: #315d8c;
  --max: 1280px;
  color-scheme: light;
}

html[data-theme="dark"] {
  --paper: #171411;
  --surface: #221e1a;
  --ink: #f0e8dc;
  --prose: #e9dfd1;
  --muted: #b9aea1;
  --line: #3a332d;
  --accent: #c99b5f;
  --accent-2: #e0a18c;
  --blue: #9fbee4;
  color-scheme: dark;
}

* { box-sizing: border-box; }

html {
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", sans-serif;
  line-height: 1.5;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  transition: background-color 180ms ease, color 180ms ease;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 12px;
  z-index: 5;
}

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

.site-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px clamp(18px, 4vw, 36px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(29px, 4vw, 42px);
  font-weight: 650;
  letter-spacing: 0;
  text-decoration: none;
}

.site-header nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-weight: 650;
}

.site-header nav a,
.site-footer nav a {
  text-decoration: none;
}

.site-header nav a:hover,
.site-footer nav a:hover {
  color: var(--accent);
}

.edition-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px) clamp(18px, 4vw, 36px) clamp(20px, 3vw, 32px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.edition-strip h1,
.article-header h1,
.archive-heading h1 {
  font-family: "Lora", Georgia, serif;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0;
  margin: 0;
}

.edition-strip h1 {
  font-size: clamp(30px, 5vw, 56px);
  max-width: 720px;
}

.edition-strip > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.35;
}

.front-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px) clamp(18px, 4vw, 36px) clamp(34px, 5vw, 60px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-2);
  font-weight: 750;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.lead-story {
  border-top: 4px solid var(--accent);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 82%, white);
}

.lead-story a {
  display: block;
  text-decoration: none;
}

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

.lead-story-copy {
  padding: clamp(20px, 4vw, 34px);
}

.lead-story span,
.story-card span,
.compact-link span,
.byline,
.category-pill {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lead-story span {
  display: inline-block;
  margin-bottom: 12px;
}

.lead-story h2 {
  margin: 0 0 12px;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

.lead-story p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  max-width: 760px;
}

.front-rail {
  border-top: 4px solid var(--accent-2);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 72%, white);
  padding: 20px 0 4px;
}

.front-rail h2,
.section-heading h2 {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: 0;
}

.front-rail h2 {
  padding: 0 20px 8px;
}

.front-rail .compact-link {
  padding-left: 20px;
  padding-right: 20px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.home-grid,
.article-shell,
.archive-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 36px) clamp(56px, 8vw, 96px);
}

.home-grid {
  display: block;
}

.story-column {
  display: grid;
  gap: 18px;
}

.story-card {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.story-card a {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  text-decoration: none;
  align-items: start;
}

.story-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.story-card h2 {
  margin: 5px 0 8px;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.side-rail {
  border-left: 1px solid var(--line);
  padding-left: 26px;
}

.side-rail h2,
.article-aside h2 {
  margin: 0 0 16px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-2);
}

.compact-link {
  display: block;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.compact-link strong {
  display: block;
  margin-top: 5px;
  font-family: "Lora", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.14;
  letter-spacing: 0;
}

.archive-heading {
  padding: clamp(36px, 6vw, 78px) 0 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}

.archive-heading h1 {
  font-size: clamp(44px, 7vw, 80px);
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: clamp(28px, 6vw, 70px);
  padding-top: clamp(34px, 6vw, 72px);
}

.article-header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
  margin-bottom: 34px;
}

.category-pill {
  display: inline-block;
  text-decoration: none;
  color: var(--accent-2);
  margin-bottom: 16px;
}

.article-header h1 {
  font-size: clamp(46px, 7vw, 82px);
}

.dek {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  max-width: 720px;
}

.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 18px 0 26px;
}

.featured-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}

.prose {
  font-size: clamp(18px, 1.8vw, 20px);
  line-height: 1.72;
}

.prose h2 {
  margin: 2.2em 0 0.5em;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.prose h3 {
  margin: 1.6em 0 0.35em;
  font-size: 1.22em;
}

.prose p,
.prose ul {
  color: var(--prose);
}

.prose li {
  margin: 0.38em 0;
}

.prose a {
  color: var(--blue);
  font-weight: 650;
}

.prose .table-wrap {
  margin: 1.6rem 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
  background: color-mix(in srgb, var(--surface) 60%, white);
}

.prose thead th {
  text-align: left;
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
  color: var(--ink);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--line);
}

.prose tbody td {
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.45;
  color: var(--prose);
}

.prose tbody tr:last-child td {
  border-bottom: none;
}

.prose tbody tr:nth-child(even) td {
  background: color-mix(in srgb, var(--surface) 35%, white);
}

.prose code {
  font-family: ui-monospace, "SF Mono", "Cascadia Code", Menlo, Consolas, monospace;
  font-size: 0.88em;
  background: color-mix(in srgb, var(--accent) 10%, var(--surface));
  color: var(--ink);
  padding: 0.12em 0.36em;
  border-radius: 5px;
  border: 1px solid var(--line);
  word-break: break-word;
}

.prose pre.code-block {
  margin: 1.5rem 0;
  padding: 1rem 1.15rem;
  background: #1c1c1c;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow-x: auto;
  line-height: 1.55;
}

.prose pre.code-block code {
  font-family: ui-monospace, "SF Mono", "Cascadia Code", Menlo, Consolas, monospace;
  font-size: 0.86rem;
  background: none;
  border: none;
  padding: 0;
  color: #f0e8dc;
  white-space: pre;
  word-break: normal;
}

.article-aside {
  position: sticky;
  top: 18px;
  align-self: start;
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.pagination {
  margin-top: 28px;
  font-weight: 750;
}

.page-shell {
  max-width: 760px;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px clamp(18px, 4vw, 36px) 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.site-footer p {
  margin: 0;
}

/* Homepage editorial desk layout */
.site-header {
  position: sticky;
  top: 0;
  z-index: 4;
  max-width: none;
  margin: 0;
  padding: 0;
  display: block;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 88%, var(--surface));
  backdrop-filter: blur(14px);
}

.masthead-row,
.coverage-row,
.category-filters,
.homepage-view {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 36px);
  padding-right: clamp(18px, 4vw, 36px);
}

.masthead-row {
  position: relative;
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.deskline,
.coverage-badges,
.tile-meta,
.lead-kicker,
.lead-meta,
.signals-heading span,
.rail-note {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 750;
}

.deskline {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.deskline span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  display: inline-block;
}

.deskline b {
  color: color-mix(in srgb, var(--muted) 76%, var(--ink));
  font-weight: 750;
}

.brand {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
}

.brand span {
  color: var(--accent);
  font-weight: 500;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.search-control {
  position: relative;
  width: clamp(176px, 18vw, 248px);
  display: flex;
  align-items: center;
  text-decoration: none;
}

.search-control svg {
  position: absolute;
  left: 10px;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: color-mix(in srgb, var(--muted) 74%, transparent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.search-control input {
  width: 100%;
  min-height: 34px;
  padding: 7px 10px 7px 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.search-control input::placeholder {
  color: color-mix(in srgb, var(--muted) 66%, transparent);
}

.search-control input:focus {
  border-color: color-mix(in srgb, var(--accent) 72%, var(--line));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent);
}

.browse-link {
  min-height: 34px;
  padding: 7px 10px 7px 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.browse-link:hover {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--accent) 72%, var(--line));
}

.theme-toggle {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.theme-toggle:hover {
  background: var(--surface);
  color: var(--ink);
}

.theme-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-icon-sun,
html[data-theme="dark"] .theme-icon-moon {
  display: none;
}

html[data-theme="dark"] .theme-icon-sun {
  display: block;
}

.coverage-row {
  border-top: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--muted);
}

.coverage-row p {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-style: italic;
}

.coverage-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.66rem;
}

.coverage-badges span {
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--line) 78%, var(--paper));
  padding: 4px 8px;
  border-radius: 4px;
  color: color-mix(in srgb, var(--muted) 84%, var(--ink));
}

.homepage-view {
  padding-top: 0;
  padding-bottom: clamp(58px, 8vw, 96px);
}

.category-filters {
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 82%, var(--surface));
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: max(clamp(18px, 4vw, 36px), calc((100vw - var(--max)) / 2 + clamp(18px, 4vw, 36px)));
  padding-right: max(clamp(18px, 4vw, 36px), calc((100vw - var(--max)) / 2 + clamp(18px, 4vw, 36px)));
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-filters a {
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 4px;
}

.category-filters a[aria-current="true"] {
  color: var(--paper);
  background: var(--accent);
}

.category-filters a:hover {
  color: var(--ink);
}

.category-filters a:hover {
  background: var(--surface);
}

.category-filters a[aria-current="true"]:hover {
  color: var(--paper);
  background: var(--accent);
}

.editorial-anchor-grid {
  padding-top: clamp(34px, 4vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(300px, 4fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.lead-briefing {
  background: color-mix(in srgb, var(--paper) 72%, var(--surface));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 46px);
}

.lead-kicker,
.lead-meta,
.tile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--accent);
}

.lead-briefing h2 {
  margin: 16px 0;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(29px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.lead-briefing h2 a,
.briefing-tile a,
.signal-link {
  text-decoration: none;
}

.lead-briefing p {
  margin: 0;
  color: var(--muted);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.55;
}

.lead-meta {
  border-top: 1px solid var(--line);
  margin-top: 26px;
  padding-top: 18px;
  color: var(--muted);
}

.read-link {
  display: inline-flex;
  margin-top: 22px;
  background: var(--accent);
  color: var(--paper);
  padding: 11px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 750;
}

.signals-rail {
  background: color-mix(in srgb, var(--paper) 78%, var(--surface));
  border: 2px dashed var(--line);
  border-radius: 8px;
  padding: 24px;
}

.signals-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.signals-heading h2,
.briefings-heading h2,
.editorial-note h2 {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.1;
}

.signals-heading span {
  color: var(--muted);
  background: var(--surface);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 0.65rem;
}

.signal-link {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
}

.signal-link div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.signal-link time {
  color: var(--muted);
}

.signal-link strong {
  display: block;
  font-family: "Lora", Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.25;
}

.rail-note {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 650;
}

.editorial-note {
  margin: clamp(28px, 5vw, 58px) 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.editorial-note p {
  margin: 6px 0 0;
  color: var(--muted);
  max-width: 740px;
}

.editorial-note a {
  flex: 0 0 auto;
  color: var(--accent);
  font-weight: 750;
}

.briefings-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 20px;
}

.briefings-heading span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.briefings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.briefing-tile {
  background: color-mix(in srgb, var(--paper) 72%, var(--surface));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.briefing-tile a {
  min-height: 100%;
  padding: 22px;
  display: flex;
  flex-direction: column;
  color: inherit;
}

.briefing-tile h3 {
  margin: 14px 0 10px;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(20px, 2.1vw, 25px);
  line-height: 1.17;
}

.briefing-tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.tile-footer {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.briefing-tile[hidden],
.empty-results[hidden] {
  display: none;
}

.empty-results {
  margin-top: 18px;
  padding: 34px 22px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
}

.empty-results h3 {
  margin: 0 0 8px;
  font-family: "Lora", Georgia, serif;
  font-size: 1.3rem;
}

.empty-results p {
  margin: 0 auto 16px;
  max-width: 520px;
  color: var(--muted);
}

.empty-results button {
  border: 0;
  border-radius: 4px;
  background: var(--accent);
  color: var(--paper);
  padding: 9px 13px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 750;
  cursor: pointer;
}

@media (max-width: 880px) {
  .site-header,
  .site-footer,
  .edition-strip,
  .front-page,
  .home-grid,
  .article-shell {
    display: block;
  }

  .site-header nav {
    margin-top: 14px;
  }

  .masthead-row {
    min-height: auto;
    padding-top: 18px;
    padding-bottom: 18px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .deskline,
  .header-actions {
    justify-self: center;
  }

  .header-actions {
    justify-content: center;
  }

  .search-control {
    width: min(72vw, 320px);
  }

  .coverage-row,
  .editorial-note {
    display: block;
  }

  .coverage-badges {
    justify-content: center;
    margin-top: 12px;
  }

  .coverage-row p {
    text-align: center;
  }

  .editorial-anchor-grid {
    grid-template-columns: 1fr;
  }

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

  .editorial-note a {
    display: inline-block;
    margin-top: 14px;
  }

  .edition-strip > p {
    margin-top: 12px;
  }

  .front-rail {
    margin-top: 28px;
  }

  .side-rail,
  .article-aside {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 24px;
    margin-top: 34px;
    position: static;
  }

  .story-card a {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 14px;
  }

  .story-card h2 {
    font-size: 1.35rem;
  }

  .story-card p {
    display: none;
  }
}

@media (max-width: 540px) {
  .site-header {
    padding: 0;
  }

  .masthead-row {
    padding-top: 0;
  }

  .brand {
    font-size: clamp(31px, 11vw, 42px);
  }

  .site-header nav {
    gap: 8px 12px;
    font-size: 0.96rem;
  }

  .edition-strip h1,
  .article-header h1,
  .archive-heading h1 {
    line-height: 1.04;
  }

  .lead-story h2 {
    line-height: 1.04;
  }

  .story-card a {
    grid-template-columns: 1fr;
  }

  .story-card img {
    aspect-ratio: 16 / 9;
  }

  .category-filters {
    gap: 6px;
  }

  .category-filters a {
    font-size: 0.78rem;
    padding: 5px 8px;
  }

  .lead-briefing,
  .signals-rail,
  .briefing-tile a {
    padding: 18px;
  }

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

  .site-footer nav {
    margin-top: 18px;
  }
}