:root {
  --green: #1f4d3a;
  --green-2: #6f8f7b;
  --cream: #f4f1e8;
  --paper: #faf8f2;
  --ink: #202522;
  --muted: #707770;
  --pale: #d8e2d7;
  --line: #c9c9bd;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Source Sans 3", Arial, sans-serif;
  --shell: min(1320px, calc(100vw - 64px));
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

a {
  color: inherit;
  text-decoration: none;
}

a:hover { color: var(--green-2); }

img {
  display: block;
  width: 100%;
  background: var(--pale);
  object-fit: cover;
}

button,
input,
textarea { font: inherit; }

button { color: inherit; }

.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;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--cream);
  color: var(--green);
  transform: translateY(-150%);
}

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

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  color: var(--cream);
  background: var(--green);
  border-bottom: 1px solid rgba(244, 241, 232, 0.25);
}

.header-inner {
  width: var(--shell);
  height: 78px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}

.wordmark {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.wordmark span { color: #a9c4ad; }

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(17px, 2vw, 34px);
}

.desktop-nav a,
.about-link {
  color: rgba(244, 241, 232, 0.86);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

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

.desktop-nav a[aria-current="page"] { box-shadow: inset 0 -1px #fff; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-button,
.menu-button {
  appearance: none;
  width: 32px;
  height: 32px;
  padding: 5px;
  border: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}

.icon-button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.menu-button {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.mobile-nav { display: none; }

.home-intro {
  width: var(--shell);
  margin: 0 auto;
  padding: 64px 0 44px;
  display: grid;
  grid-template-columns: 1.5fr 0.65fr;
  align-items: end;
  gap: 80px;
  border-bottom: 1px solid var(--ink);
}

.eyebrow,
.category-label {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-intro h1 {
  max-width: 900px;
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(54px, 6.5vw, 104px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.home-intro p {
  margin: 0 0 7px;
  color: #4e554f;
  font-size: 19px;
  line-height: 1.5;
}

.hero-grid {
  width: var(--shell);
  margin: 0 auto;
  padding: 38px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.68fr) minmax(300px, 0.78fr);
  gap: 42px;
}

.lead-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.lead-image img { height: 100%; transition: transform 500ms ease; }
.lead-image:hover img { transform: scale(1.015); }

.lead-copy { padding-top: 21px; }

.lead-copy h2 {
  max-width: 950px;
  margin: 9px 0 10px;
  font-family: var(--serif);
  font-size: clamp(38px, 4.2vw, 65px);
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.025em;
}

.lead-copy p {
  max-width: 760px;
  margin: 0 0 19px;
  color: #525852;
  font-size: 18px;
}

.byline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.byline a { color: var(--ink); font-weight: 600; }

.secondary-stories {
  border-top: 1px solid var(--ink);
}

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

.story-image {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.story-image img {
  height: 100%;
  transition: transform 450ms ease;
}

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

.story-copy { padding-top: 15px; }

.story-copy h3 {
  margin: 7px 0 8px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.012em;
}

.story-copy p {
  margin: 0 0 11px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.story-copy time {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.story-card--compact {
  padding: 19px 0;
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.story-card--compact .story-image { aspect-ratio: 4 / 3; }
.story-card--compact .story-copy { padding-top: 0; }
.story-card--compact .story-copy h3 { font-size: 22px; }

.section-block {
  width: var(--shell);
  margin: 0 auto;
  padding: 66px 0 76px;
  border-top: 1px solid var(--ink);
}

.section-head {
  margin-bottom: 30px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 30px;
}

.section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(41px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

.section-head > a {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section-head > a span { margin-left: 6px; }

.latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 28px;
}

.category-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.8fr);
  gap: 52px;
}

.story-card--feature .story-copy h3 {
  font-size: clamp(35px, 4vw, 53px);
}

.category-side { border-top: 1px solid var(--line); }

.story-card--row {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 154px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.story-card--row .story-image { aspect-ratio: 4 / 3; }
.story-card--row .story-copy { padding-top: 0; }
.story-card--row .story-copy h3 { font-size: 24px; }
.story-card--row .story-copy p { display: none; }

.alternating-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 28px;
}

.story-card--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  align-items: start;
}

.story-card--wide .story-copy { padding-top: 0; }
.story-card--wide .story-copy h3 { font-size: 35px; }

.most-read {
  width: 100%;
  padding-inline: max(32px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 88px;
  color: var(--cream);
  background: var(--green);
  border-top: 0;
}

.most-read .eyebrow { color: #a9c4ad; }

.most-read-intro h2 {
  margin: 12px 0 16px;
  font-family: var(--serif);
  font-size: 70px;
  font-weight: 400;
  line-height: 0.95;
}

.most-read-intro p {
  max-width: 380px;
  margin: 0;
  color: rgba(244, 241, 232, 0.7);
}

.most-read ol { margin: 0; padding: 0; list-style: none; }

.most-read li {
  min-height: 100px;
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 26px;
  border-top: 1px solid rgba(244, 241, 232, 0.25);
}

.most-read li:last-child { border-bottom: 1px solid rgba(244, 241, 232, 0.25); }

.most-read li > span {
  color: #a9c4ad;
  font-family: var(--serif);
  font-size: 45px;
  font-style: italic;
}

.most-read .category-label { color: #a9c4ad; }

.most-read h3 {
  margin: 3px 0 0;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.08;
}

.most-read a:hover { color: #bdd2c0; }

.guide-stack { border-top: 1px solid var(--line); }

.guide-stack article {
  padding: 26px 0;
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) 1.32fr;
  align-items: center;
  gap: 36px;
  border-bottom: 1px solid var(--line);
}

.guide-image { aspect-ratio: 16 / 9; overflow: hidden; }
.guide-image img { height: 100%; }

.guide-stack h3 {
  margin: 7px 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 45px);
  font-weight: 400;
  line-height: 1;
}

.guide-stack p {
  max-width: 700px;
  margin: 0 0 12px;
  color: var(--muted);
}

.guide-stack article > div > span { color: var(--muted); font-size: 12px; }

.newsletter {
  margin: 48px 0 92px;
  padding: clamp(36px, 6vw, 78px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
  background: var(--pale);
}

.newsletter h2 {
  max-width: 680px;
  margin: 12px 0 10px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 57px);
  font-weight: 400;
  line-height: 0.98;
}

.newsletter p { margin: 0; color: #596159; }

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  border-bottom: 1px solid var(--green);
}

.newsletter-form input {
  min-width: 0;
  padding: 14px 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.newsletter-form input::placeholder { color: #687368; }

.newsletter-form button,
.contact-form button {
  padding: 12px 18px;
  border: 0;
  color: var(--cream);
  background: var(--green);
  font-weight: 700;
  cursor: pointer;
}

.newsletter-form small {
  grid-column: 1 / -1;
  padding: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.newsletter--compact { margin: 64px 0; }

.site-footer {
  padding: 70px max(32px, calc((100vw - 1320px) / 2)) 28px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px 100px;
  color: var(--cream);
  background: #173a2d;
}

.footer-brand .wordmark { font-size: 42px; }

.footer-brand p {
  max-width: 430px;
  margin: 22px 0 0;
  color: rgba(244, 241, 232, 0.68);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.footer-links h3 {
  margin: 0 0 18px;
  color: #a9c4ad;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  margin: 8px 0;
  display: block;
  color: rgba(244, 241, 232, 0.82);
  font-size: 14px;
}

.footer-base {
  grid-column: 1 / -1;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(244, 241, 232, 0.5);
  font-size: 12px;
  border-top: 1px solid rgba(244, 241, 232, 0.2);
}

/* Search */
.search-dialog {
  width: min(720px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 50px));
  padding: 32px;
  color: var(--ink);
  background: var(--cream);
  border: 0;
  border-radius: 0;
}

.search-dialog::backdrop { background: rgba(14, 37, 28, 0.82); }

.search-head {
  margin-bottom: 35px;
  padding-bottom: 14px;
  display: flex;
  justify-content: space-between;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.search-head button {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 25px;
  line-height: 0.6;
  cursor: pointer;
}

.search-dialog label {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
}

.search-dialog input {
  width: 100%;
  margin-top: 13px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--green);
  outline: 0;
  background: transparent;
  font-size: 19px;
}

.search-hint { margin: 8px 0 22px; color: var(--muted); font-size: 13px; }
.search-results { overflow: auto; }

.search-result {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 24px;
  border-top: 1px solid var(--line);
}

.search-result h3 { margin: 0; font-family: var(--serif); font-size: 23px; font-weight: 400; }
.search-result p { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 14px; }
.search-result span { color: var(--green); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.search-empty { padding: 30px 0; color: var(--muted); }

/* Listing pages */
.listing-header {
  max-width: 900px;
  padding: 72px 0 50px;
}

.listing-header h1 {
  margin: 10px 0 15px;
  font-family: var(--serif);
  font-size: clamp(62px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.listing-header p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.listing-feature {
  padding: 36px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 48px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.listing-feature > a { aspect-ratio: 16 / 9; overflow: hidden; }
.listing-feature img { height: 100%; }

.listing-feature h2 {
  margin: 9px 0 12px;
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 59px);
  font-weight: 400;
  line-height: 0.98;
}

.listing-feature p { margin: 0 0 18px; color: var(--muted); }

.listing-grid {
  padding: 54px 0 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 28px;
}

.pagination {
  padding: 0 0 52px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.pagination a {
  min-width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1px solid var(--line);
  font-size: 13px;
}

.pagination a[aria-current="page"] { color: var(--cream); background: var(--green); border-color: var(--green); }
.pagination .pagination-next { width: auto; margin-left: auto; padding: 0 15px; border-color: transparent; }

/* Archive */
.archive-layout {
  padding: 48px 0 96px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 90px;
  border-top: 1px solid var(--ink);
}

.archive-layout aside h2,
.prose-layout aside > span {
  margin: 0 0 17px;
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.archive-layout aside a,
.prose-layout aside a {
  width: fit-content;
  margin: 9px 0;
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.archive-years > section + section { margin-top: 65px; }

.archive-years h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
}

.archive-years details { border-top: 1px solid var(--line); }
.archive-years details:last-child { border-bottom: 1px solid var(--line); }
.archive-years summary { padding: 18px 0; display: flex; justify-content: space-between; cursor: pointer; }
.archive-years summary span:last-child { color: var(--muted); font-size: 13px; }
.archive-years details div { padding: 0 0 15px; }
.archive-years details a { padding: 11px 0; display: grid; grid-template-columns: 130px 1fr; gap: 20px; border-top: 1px dotted var(--line); }
.archive-years details time { color: var(--muted); font-size: 13px; }

/* Article */
.article-shell {
  width: min(980px, calc(100vw - 64px));
  margin-inline: auto;
}

.breadcrumbs {
  padding: 30px 0 16px;
  display: flex;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
}

.article-header { padding: 30px 0 48px; text-align: center; }

.article-header h1 {
  margin: 15px auto 18px;
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.standfirst {
  max-width: 760px;
  margin: 0 auto;
  color: #596059;
  font-size: 21px;
  line-height: 1.45;
}

.article-meta {
  max-width: 740px;
  margin: 35px auto 0;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  text-align: left;
  border-top: 1px solid var(--line);
}

.article-meta > a { display: flex; align-items: center; gap: 12px; }
.article-meta img { width: 44px; height: 44px; border-radius: 50%; }
.article-meta small { display: block; color: var(--muted); font-size: 11px; }
.article-meta strong { font-size: 14px; }
.article-meta > div { display: flex; flex-direction: column; align-items: flex-end; color: var(--muted); font-size: 12px; }

.article-hero {
  width: min(1220px, calc(100vw - 64px));
  margin: 0 auto 58px;
}

.article-hero img { aspect-ratio: 16 / 9; }
.article-hero figcaption { margin-top: 8px; color: var(--muted); font-size: 11px; }

.article-body {
  width: min(740px, calc(100vw - 40px));
  margin-inline: auto;
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.75;
}

.article-body p { margin: 0 0 25px; }
.article-body a { color: var(--green); box-shadow: inset 0 -1px var(--green-2); }

.article-body .dropcap::first-letter {
  margin: 8px 9px 0 0;
  float: left;
  color: var(--green);
  font-family: var(--serif);
  font-size: 76px;
  line-height: 0.7;
}

.article-body h2 {
  margin: 58px 0 17px;
  font-family: var(--serif);
  font-size: 43px;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.article-body ol,
.article-body ul { margin: 15px 0 30px; padding-left: 23px; }
.article-body li { margin: 10px 0; padding-left: 7px; }

.takeaway {
  margin: 42px -55px;
  padding: 29px 36px;
  background: var(--pale);
  border-left: 3px solid var(--green);
}

.takeaway span {
  color: var(--green);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.takeaway p {
  margin: 7px 0 0;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.25;
}

.article-body blockquote {
  margin: 48px -100px;
  padding: 0 0 0 30px;
  color: var(--green);
  font-family: var(--serif);
  font-size: 38px;
  font-style: italic;
  line-height: 1.15;
  border-left: 1px solid var(--green);
}

.article-table-wrap { width: calc(100% + 160px); margin: 38px -80px; overflow-x: auto; }

.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 14px;
}

.article-body th { color: var(--green); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.article-body th,
.article-body td { padding: 14px 15px; text-align: left; vertical-align: top; border-top: 1px solid var(--line); }
.article-body tbody tr:last-child td { border-bottom: 1px solid var(--line); }

.author-box {
  max-width: 900px;
  margin: 88px auto 0;
  padding: 36px;
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 32px;
  background: #e8e9df;
}

.author-box img { width: 130px; height: 150px; }
.author-box span { color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.author-box h2 { margin: 4px 0 7px; font-family: var(--serif); font-size: 32px; font-weight: 400; }
.author-box p { max-width: 580px; margin: 0 0 9px; color: var(--muted); }
.author-box a { color: var(--green); font-size: 13px; font-weight: 700; }

.related-stories { padding: 0 0 85px; }
.related-stories > div:last-child { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* Author and information pages */
.author-profile {
  padding: 76px 0 55px;
  display: grid;
  grid-template-columns: 220px minmax(0, 750px);
  align-items: end;
  gap: 46px;
}

.author-profile img { width: 220px; height: 270px; }

.author-profile h1,
.prose-page > header h1 {
  margin: 10px 0 12px;
  font-family: var(--serif);
  font-size: clamp(60px, 8vw, 105px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.author-profile p,
.prose-page > header p { max-width: 680px; margin: 0; color: var(--muted); font-size: 19px; }

.prose-page > header { padding: 78px 0 56px; }

.prose-layout {
  padding: 52px 0 95px;
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: 90px;
  border-top: 1px solid var(--ink);
}

.prose-layout article section { margin: 0 0 50px; scroll-margin-top: 30px; }

.prose-layout article h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.05;
}

.prose-layout article p { margin: 0; color: #4f574f; font-size: 18px; line-height: 1.7; }

.contact-form { margin-top: 55px; padding-top: 40px; border-top: 1px solid var(--line); }
.contact-form > div { margin-bottom: 23px; }
.contact-form label { display: block; margin-bottom: 6px; color: var(--green); font-size: 13px; font-weight: 700; }
.contact-form input,
.contact-form textarea { width: 100%; padding: 12px 0; border: 0; border-bottom: 1px solid var(--line); outline: 0; background: transparent; }
.contact-form textarea { border: 1px solid var(--line); padding: 13px; }
.contact-form button { margin-top: 5px; }
.contact-form [data-form-note] { margin-top: 14px; color: var(--green); font-family: var(--sans); font-size: 14px; }

@media (max-width: 1120px) {
  :root { --shell: min(calc(100% - 46px), 1320px); }
  .header-inner { gap: 24px; }
  .desktop-nav { gap: 16px; }
  .desktop-nav a { font-size: 13px; }
  .about-link { display: none; }
  .home-intro { gap: 50px; }
  .hero-grid { grid-template-columns: 1.45fr 0.75fr; gap: 28px; }
  .story-card--compact { grid-template-columns: 104px 1fr; gap: 14px; }
  .story-card--compact .story-copy h3 { font-size: 19px; }
  .category-lead { gap: 34px; }
  .story-card--row { grid-template-columns: 125px 1fr; }
  .story-card--row .story-copy h3 { font-size: 21px; }
  .most-read { gap: 55px; }
}

@media (max-width: 900px) {
  :root { --shell: min(calc(100% - 40px), 1320px); }
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: auto 1fr; }
  .header-actions { justify-self: end; }
  .about-link { display: inline; }
  .menu-button { display: flex; }
  .mobile-nav {
    position: absolute;
    inset: 78px 0 auto;
    padding: 24px 20px 30px;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--green);
    border-top: 1px solid rgba(244, 241, 232, 0.2);
  }
  .mobile-nav.is-open { display: grid; }
  .mobile-nav a { padding: 12px 0; color: var(--cream); border-bottom: 1px solid rgba(244, 241, 232, 0.15); }
  .home-intro { padding-top: 48px; grid-template-columns: 1fr; gap: 25px; }
  .home-intro p { max-width: 580px; }
  .hero-grid { grid-template-columns: 1fr; }
  .secondary-stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .story-card--compact { padding: 21px 0; display: block; }
  .story-card--compact .story-copy { padding-top: 13px; }
  .latest-grid,
  .listing-grid { grid-template-columns: repeat(2, 1fr); }
  .category-lead { grid-template-columns: 1fr; }
  .category-side { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .story-card--row { padding: 18px 0; display: block; border-bottom: 0; }
  .story-card--row .story-copy { padding-top: 13px; }
  .story-card--row .story-copy h3 { font-size: 23px; }
  .alternating-grid { grid-template-columns: repeat(2, 1fr); }
  .story-card--wide { grid-column: span 2; }
  .most-read { grid-template-columns: 1fr; gap: 35px; }
  .most-read-intro p { max-width: 600px; }
  .newsletter { grid-template-columns: 1fr; gap: 35px; }
  .listing-feature { grid-template-columns: 1fr; }
  .archive-layout { grid-template-columns: 190px 1fr; gap: 50px; }
  .article-body blockquote { margin-inline: -35px; }
  .article-table-wrap { width: calc(100% + 70px); margin-inline: -35px; }
  .site-footer { grid-template-columns: 1fr; }
  .prose-layout { grid-template-columns: 180px 1fr; gap: 50px; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100vw - 32px); }
  body { font-size: 16px; }
  .header-inner { height: 67px; }
  .wordmark { font-size: 27px; }
  .about-link { display: none; }
  .mobile-nav { inset: 67px 0 auto; grid-template-columns: 1fr; max-height: calc(100vh - 67px); overflow: auto; }
  .home-intro { padding: 37px 0 29px; }
  .home-intro h1 { font-size: clamp(42px, 14vw, 55px); line-height: 0.93; }
  .home-intro p { font-size: 17px; }
  .hero-grid { padding: 24px 0 48px; }
  .lead-copy h2 { font-size: 40px; }
  .lead-copy p { font-size: 16px; }
  .secondary-stories { grid-template-columns: 1fr; gap: 0; }
  .story-card--compact { padding: 18px 0; display: grid; grid-template-columns: 115px 1fr; }
  .story-card--compact .story-copy { padding-top: 0; }
  .section-block { padding: 45px 0 52px; }
  .section-head { margin-bottom: 23px; }
  .section-head h2 { font-size: 42px; }
  .section-head > a { max-width: 90px; text-align: right; }
  .latest-grid,
  .listing-grid { grid-template-columns: 1fr; gap: 35px; }
  .story-copy h3 { font-size: 29px; }
  .category-side { grid-template-columns: 1fr; gap: 0; }
  .story-card--row { padding: 17px 0; display: grid; grid-template-columns: 118px 1fr; border-bottom: 1px solid var(--line); }
  .story-card--row .story-copy { padding-top: 0; }
  .alternating-grid { grid-template-columns: 1fr; }
  .story-card--wide { grid-column: auto; display: block; }
  .story-card--wide .story-copy { padding-top: 15px; }
  .story-card--wide .story-copy h3 { font-size: 30px; }
  .most-read { padding: 52px 16px; }
  .most-read-intro h2 { font-size: 57px; }
  .most-read li { grid-template-columns: 63px 1fr; gap: 13px; }
  .most-read li > span { font-size: 35px; }
  .most-read h3 { font-size: 22px; }
  .guide-stack article { grid-template-columns: 1fr; gap: 18px; }
  .guide-stack h3 { font-size: 32px; }
  .newsletter { margin: 28px 0 60px; padding: 32px 24px; }
  .newsletter h2 { font-size: 38px; }
  .newsletter-form { grid-template-columns: 1fr; border: 0; }
  .newsletter-form input { border-bottom: 1px solid var(--green); }
  .newsletter-form button { margin-top: 10px; }
  .site-footer { padding: 55px 16px 25px; gap: 50px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-base { display: grid; gap: 5px; }
  .listing-header { padding: 52px 0 35px; }
  .listing-header h1 { font-size: 65px; }
  .listing-feature { padding: 25px 0 42px; gap: 25px; }
  .listing-feature h2 { font-size: 39px; }
  .listing-grid { padding: 42px 0 60px; }
  .archive-layout { padding-top: 35px; grid-template-columns: 1fr; gap: 30px; }
  .archive-layout aside { display: none; }
  .archive-years h2 { font-size: 50px; }
  .archive-years details a { grid-template-columns: 90px 1fr; gap: 12px; }
  .article-shell { width: calc(100vw - 32px); }
  .breadcrumbs { padding-top: 20px; }
  .article-header { padding: 22px 0 35px; text-align: left; }
  .article-header h1 { margin-inline: 0; font-size: 50px; }
  .standfirst { font-size: 18px; }
  .article-meta { align-items: flex-start; }
  .article-meta > div { align-items: flex-end; text-align: right; }
  .article-hero { width: 100%; margin-bottom: 40px; }
  .article-hero figcaption { padding-inline: 16px; }
  .article-body { width: calc(100vw - 32px); font-size: 17px; }
  .article-body h2 { font-size: 36px; }
  .takeaway { margin-inline: 0; padding: 25px 23px; }
  .article-body blockquote { margin-inline: 0; font-size: 31px; }
  .article-table-wrap { width: 100%; margin-inline: 0; }
  .article-body table { min-width: 600px; }
  .author-box { margin-top: 58px; padding: 26px 22px; grid-template-columns: 83px 1fr; gap: 19px; }
  .author-box img { width: 83px; height: 105px; }
  .author-box p { grid-column: 1 / -1; }
  .related-stories > div:last-child { grid-template-columns: 1fr; gap: 35px; }
  .author-profile { padding: 52px 0 35px; grid-template-columns: 100px 1fr; gap: 22px; }
  .author-profile img { width: 100px; height: 130px; }
  .author-profile h1 { font-size: 51px; }
  .prose-page > header { padding: 54px 0 40px; }
  .prose-page > header h1 { font-size: 59px; }
  .prose-layout { padding-top: 35px; grid-template-columns: 1fr; gap: 0; }
  .prose-layout aside { display: none; }
  .search-dialog { padding: 24px 20px; }
  .search-dialog label { font-size: 30px; }
}

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