:root {
  --forest: #142b20;
  --forest-deep: #0f251b;
  --ivory: #f4efe4;
  --cream: #eee6d6;
  --ink: #14261d;
  --paper-ink: #1e211d;
  --gold: #a98548;
  /* AUDIT: #a98548 scores only 2.98:1 on ivory — below the 4.5:1 WCAG AA
     threshold for text and the 3:1 threshold for UI borders. Two darker
     shades of the same hue and saturation fix that without changing the
     colour's character. Decorative rules keep the original --gold. */
  --gold-ink: #846838;   /* 4.56:1 on ivory — small text          */
  --gold-edge: #9a7942;  /* 3.53:1 on ivory, 3.72:1 on forest — UI borders */
  --gold-soft: #c4aa76;
  --desktop-canvas-width: 1200px;
  --page-width: 1120px;
  --serif-display: "Cormorant Garamond", Georgia, serif;
  --serif-body: "Libre Caslon Text", Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: #d8d4ca;
  color: var(--paper-ink);
  font-family: var(--serif-body);
  font-size: 16px;
  line-height: 1.55;
}

/* Fixed desktop design canvas. The page sits as one centred block on the
   paper-grey ground, which is the intended look — full-bleed bands were
   trialled during the audit and deliberately reverted. */
.site-header,
main,
.site-footer {
  width: min(100%, var(--desktop-canvas-width));
  margin-inline: auto;
}

main { overflow: hidden; }

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

/* AUDIT: images are wrapped in <picture> so browsers can pick the much
   smaller WebP file. `display: contents` makes the wrapper generate no box
   of its own, so every existing rule written for the <img> keeps working
   exactly as before. */
picture { display: contents; }

/* AUDIT: article cards are now <a> elements rather than <article role="button">,
   so they work with JavaScript disabled, can be opened in a new tab, are
   crawlable, and no longer bury their <h3> inside a button role. The
   `display: block` this needs lives in the .article-card rule below, at the
   same specificity as the phone layout, so the phone grid still wins. */

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

figure, h1, h2, h3, p { margin-top: 0; }

.page-shell {
  width: min(calc(100% - 112px), var(--page-width));
  margin-inline: auto;
}

/* AUDIT: keyboard users can now jump past the header straight to the articles. */
.skip-link {
  position: absolute;
  z-index: 1200;
  top: 0;
  left: 50%;
  padding: 10px 20px;
  background: var(--forest);
  color: var(--ivory);
  font-family: var(--serif-display);
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translate(-50%, -120%);
}

.skip-link:focus {
  transform: translate(-50%, 0);
  outline: 1px solid var(--gold-soft);
  outline-offset: 2px;
}

/* AUDIT: stops the sticky-free header from covering #featured when the
   browser jumps to it from a link or from the article back button. */
#featured { scroll-margin-top: 16px; }

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

.site-header {
  min-height: 150px;
  background: var(--forest);
  color: var(--ivory);
}

.header-inner {
  position: relative;
  min-height: 150px;
  display: flex;
  align-items: center;
  padding-left: 172px;
}

.brand {
  position: absolute;
  top: 0;
  left: -24px;
  width: 164px;
  height: 150px;
  overflow: hidden;
}

.brand img {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: auto;
}

.issue-masthead {
  width: 100%;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  border-bottom: 1px solid rgba(196, 170, 118, .65);
  color: var(--ivory);
  font-family: var(--serif-display);
  text-align: center;
  text-transform: uppercase;
}

.issue-title {
  font-size: 21px;
  line-height: 1.1;
  letter-spacing: .24em;
}

.issue-number {
  color: var(--cream);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .25em;
}

.hero {
  min-height: 530px;
  display: grid;
  grid-template-columns: minmax(380px, 38.5%) 1fr;
  background: var(--ivory);
  border-bottom: 1px solid var(--forest);
}

.hero-copy {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-copy-inner {
  width: min(330px, calc(100% - 72px));
  margin-right: 58px;
  padding-block: 54px;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--ink);
  font-family: var(--serif-display);
  font-size: clamp(50px, 4.5vw, 61px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.gold-rule {
  display: block;
  width: 46px;
  height: 1px;
  margin-bottom: 26px;
  background: var(--gold);
}

.hero-copy p {
  max-width: 310px;
  margin-bottom: 34px;
  font-size: 15px;
  line-height: 1.55;
}

.hero-image {
  min-height: inherit;
  margin: 0;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(20, 43, 32, .62); /* AUDIT: was .45 — 2.63:1, below the 3:1 UI minimum */
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.editorial-link span { font-size: 25px; line-height: .5; }

.editor-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  padding-block: 50px;
  background: var(--ivory);
  box-shadow: 0 0 0 100vmax var(--ivory);
  clip-path: inset(0 -100vmax);
}

.note-image { margin: 0; }

.note-image img {
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}

.note-copy {
  width: 100%;
  max-width: none;
  align-self: start;
  padding-top: 45px;
  color: var(--forest);
}

.section-label, .article-category {
  font-family: var(--serif-display);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.note-heading {
  width: 100%;
  margin-bottom: 38px;
  font-family: var(--serif-display);
  font-weight: 500;
  text-transform: uppercase;
}

.note-heading-intro,
.note-heading-main {
  display: block;
}

.note-heading-intro {
  margin-bottom: 48px;
  font-size: 24px;
  line-height: 1;
  letter-spacing: .2em;
}

.note-heading-intro::after {
  content: "";
  display: block;
  width: 138px;
  height: 1px;
  margin-top: 20px;
  background: var(--gold);
}

.note-heading-main {
  font-size: 55px;
  line-height: .96;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.note-ornament {
  position: relative;
  width: 100%;
  height: 62px;
  margin-bottom: 18px;
  overflow: hidden;
}

.note-ornament::before,
.note-ornament::after {
  content: "";
  position: absolute;
  top: 30px;
  width: calc(50% - 51px);
  height: 1px;
  background: rgba(169, 133, 72, .62);
}

.note-ornament::before { left: 0; }
.note-ornament::after { right: 0; }

.note-ornament img {
  position: absolute;
  z-index: 1;
  top: -34px;
  left: 50%;
  width: 135px;
  height: auto;
  transform: translateX(-50%);
}

.note-button {
  width: 100%;
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 24px 36px 23px;
  border: 1px solid var(--gold-edge); /* AUDIT: was var(--gold) — 2.98:1, below the 3:1 UI minimum */
  box-shadow: inset 0 0 0 3px var(--ivory), inset 0 0 0 4px rgba(154, 121, 66, .78);
  color: var(--forest);
  font-family: var(--serif-display);
  font-size: 17px;
  letter-spacing: .2em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform .3s ease-in-out;
}

.note-button-label {
  grid-column: 2;
}

.note-button-arrow {
  grid-column: 3;
  justify-self: end;
  font-size: 26px;
  line-height: .6;
}

.featured {
  padding: 28px 0 34px;
  background: var(--forest);
  color: var(--ivory);
}

.section-label {
  display: inline-block;
  margin-bottom: 15px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  font-size: 14px;
  font-weight: 400;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 44px;
  row-gap: 27px;
}

.article-card {
  display: block; /* AUDIT: <a> is inline by default; <article> was not */
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid rgba(196, 170, 118, .5);
  color: var(--forest);
  cursor: pointer;
  transition: transform .3s ease-in-out;
}

.article-card:focus-visible {
  outline: 2px solid var(--gold-soft); /* AUDIT: 1px was hard to see against the ivory card */
  outline-offset: 4px;
}

.brand:focus-visible,
.note-button:focus-visible,
.editorial-link:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 4px;
}

.article-image {
  aspect-ratio: 1.95 / 1;
  overflow: hidden;
}

.article-image img {
  height: 100%;
  aspect-ratio: 1.95 / 1;
  margin-bottom: 0;
  object-fit: cover;
  object-position: center;
}

@media (hover: hover) and (pointer: fine) {
  .article-card:hover {
    transform: scale(1.03);
  }

  .note-button:hover {
    transform: scale(1.05);
  }
}

.article-category {
  margin: 0 0 6px;
  padding: 0;
  color: var(--gold-ink); /* AUDIT: was var(--gold) — 2.98:1, failed WCAG AA */
  font-size: 10px;
  line-height: 1;
  letter-spacing: .18em;
}

.article-text {
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 18px;
}

.article-card h3 {
  min-height: 0;
  display: block;
  margin: 0;
  padding: 0;
  font-family: var(--serif-display);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.02;
}

.article-meta {
  display: none;
}

body.reader-open {
  overflow: hidden;
}

.article-reader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px 76px;
  background: rgba(8, 22, 15, .78);
  opacity: 0;
  transition: opacity .3s ease-in-out;
}

.article-reader[hidden] {
  display: none;
}

.article-reader.is-open {
  opacity: 1;
}

.article-reader-dialog {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 100%;
  opacity: 0;
  transform: scale(.985);
  transition: opacity .3s ease-in-out, transform .3s ease-in-out;
}

.article-reader.is-open .article-reader-dialog {
  opacity: 1;
  transform: scale(1);
}

.reader-page {
  width: auto;
  height: auto;
  max-width: calc(100vw - 152px);
  max-height: calc(100vh - 60px);
  max-height: calc(100dvh - 60px); /* AUDIT: dvh accounts for mobile browser chrome */
  object-fit: contain;
}

.reader-close,
.reader-nav {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(244, 239, 228, .65);
  background: rgba(20, 43, 32, .82);
  color: var(--ivory);
  font-family: var(--serif-display);
  font-weight: 400;
  cursor: pointer;
}

.reader-nav[hidden] {
  display: none;
}

.reader-close {
  top: 0;
  right: -52px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  appearance: none;
}

.reader-close svg {
  display: block;
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: square;
}

.reader-nav {
  top: 50%;
  width: 42px;
  height: 58px;
  font-size: 25px;
  transform: translateY(-50%);
}

.reader-prev { left: -58px; }
.reader-next { right: -58px; }

.reader-close:focus-visible,
.reader-nav:focus-visible {
  outline: 1px solid var(--gold-soft);
  outline-offset: 3px;
}

.site-footer {
  padding-bottom: 28px;
  background: var(--forest);
  color: var(--cream);
  text-align: center;
}

.footer-inner {
  padding-top: 22px;
  border-top: 1px solid rgba(196, 170, 118, .55);
}

.bridge-motif {
  position: relative;
  width: 260px;
  height: 46px;
  margin: 0 auto 7px;
}

.bridge-deck {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  border-top: 1px solid var(--gold-soft);
}

.bridge-arch {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 5px;
  height: 38px;
  border: 1px solid var(--gold-soft);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}

.bridge-arch::before,
.bridge-arch::after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 1px;
  height: 32px;
  background: var(--gold-soft);
}

.bridge-arch::before { left: 31%; }
.bridge-arch::after { right: 31%; }

.footer-statement {
  margin-bottom: 3px;
  color: var(--ivory);
  font-family: var(--serif-display);
  font-size: 19px;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.footer-support {
  margin-bottom: 0;
  color: #d1c7b4;
  font-family: var(--serif-display);
  font-size: 15px;
  font-style: italic;
}

/*
 * TEMPORARILY DISABLED: RESPONSIVE VIEWPORT RULES
 * Restore tablet, mobile, and large-screen scaling by removing this comment wrapper.
 *
@media (max-width: 900px) {
  .page-shell { width: min(calc(100% - 56px), var(--page-width)); }
  .header-inner { padding-left: 142px; }
  .brand { width: 120px; }
  .primary-nav a { padding-inline: 20px; font-size: 13px; }
  .hero { grid-template-columns: 42% 58%; min-height: 480px; }
  .hero-copy-inner { width: calc(100% - 54px); margin-right: 28px; }
  .hero h1 { font-size: clamp(41px, 5.5vw, 51px); }
  .editor-note { gap: 34px; }
  .article-grid { grid-template-columns: repeat(2, 1fr); column-gap: 30px; }
  .article-card h3 { font-size: 20px; }
}

@media (max-width: 700px) {
  .page-shell { width: min(calc(100% - 40px), var(--page-width)); }
  .site-header, .header-inner { min-height: 112px; }
  .header-inner { padding-left: 0; }
  .brand { top: 1px; width: 108px; }
  .menu-toggle {
    position: absolute;
    z-index: 3;
    right: 0;
    top: 36px;
    width: 35px;
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 5px;
    border: 0;
    background: transparent;
  }
  .menu-toggle span:not(.sr-only) { width: 25px; height: 1px; background: var(--cream); }
  .primary-nav {
    position: absolute;
    z-index: 2;
    top: 0;
    left: -20px;
    right: -20px;
    min-height: 0;
    display: none;
    flex-direction: column;
    align-items: flex-end;
    padding: 93px 20px 20px;
    border: 0;
    background: var(--forest-deep);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(196, 170, 118, .25); text-align: right; }
  .primary-nav a + a::before { display: none; }
  .hero { display: flex; flex-direction: column; }
  .hero-copy { order: 2; justify-content: flex-start; }
  .hero-copy-inner { width: auto; margin: 0; padding: 42px 28px 48px; }
  .hero h1 { font-size: clamp(46px, 14vw, 62px); }
  .hero-image { min-height: 360px; }
  .hero-image img { min-height: 360px; }
  .editor-note { grid-template-columns: 1fr; gap: 30px; padding-block: 35px 45px; }
  .note-image img { min-height: 0; aspect-ratio: 1.15 / 1; }
  .note-copy > p:not(.eyebrow) { font-size: 14px; }
  .article-grid { grid-template-columns: 1fr; gap: 38px; }
  .article-card img { aspect-ratio: 1.65 / 1; }
  .article-card h3 { min-height: 0; font-size: 29px; }
  .article-category, .article-meta { font-size: 10px; }
  .featured { padding-block: 32px 45px; }
  .footer-statement { font-size: 14px; letter-spacing: .16em; }
  .bridge-motif { width: 210px; }
}

@media (min-width: 1440px) {
  :root { --page-width: 1320px; }
  .site-header, .header-inner { min-height: 178px; }
  .header-inner { padding-left: 194px; }
  .brand { width: 164px; top: 7px; }
  .hero { min-height: 620px; grid-template-columns: minmax(440px, 38.5%) 1fr; }
  .hero-copy-inner { width: 370px; margin-right: 72px; }
  .hero h1 { font-size: 75px; }
  .hero-copy p { font-size: 17px; }
  .editor-note { padding-block: 56px; }
  .article-grid { column-gap: 52px; }
}
*/

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

  .article-card,
  .note-button,
  .article-reader,
  .article-reader-dialog,
  .skip-link {
    transition: none;
  }
}

/* Active phone layout. Desktop rules above remain unchanged. */
@media (max-width: 700px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header,
  main,
  .site-footer {
    width: 100%;
    max-width: 100%;
  }

  .page-shell {
    width: calc(100% - 40px);
  }

  .header-inner {
    min-height: 150px;
    padding-left: 0;
    align-items: flex-end;
  }

  .brand {
    top: 6px;
    right: auto;
    left: 0;
    width: clamp(90px, 24vw, 94px);
    height: clamp(90px, 24vw, 94px);
  }

  .brand img {
    top: 0;
  }

  .issue-masthead {
    position: absolute;
    right: 0;
    bottom: 8px;
    left: 0;
    width: 100%;
    min-height: 45px;
  }

  .issue-title {
    font-size: clamp(17px, 4.4vw, 18px);
    letter-spacing: clamp(.16em, .7vw, .2em);
  }

  .issue-number {
    font-size: clamp(9px, 2.45vw, 10px);
    letter-spacing: .22em;
  }

  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .hero-image {
    order: 1;
    width: 100%;
    min-height: 0;
    aspect-ratio: 1.25 / 1;
  }

  .hero-image img {
    min-height: 0;
  }

  .hero-copy {
    order: 2;
    justify-content: flex-start;
  }

  .hero-copy-inner {
    width: 100%;
    margin: 0;
    padding: clamp(36px, 9.5vw, 40px) 24px clamp(42px, 10.7vw, 46px);
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 52px);
    line-height: .96;
  }

  .hero-copy p {
    max-width: 100%;
    font-size: 15px;
  }

  .editor-note {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 35px 42px;
  }

  .note-image img {
    min-height: 0;
    aspect-ratio: 1.2 / 1;
    object-fit: cover;
  }

  .note-copy {
    padding-top: 0;
  }

  .note-heading {
    margin-bottom: 30px;
  }

  .note-heading-intro {
    margin-bottom: 36px;
    font-size: 18px;
    letter-spacing: .16em;
  }

  .note-heading-intro::after {
    width: 104px;
    margin-top: 16px;
  }

  .note-heading-main {
    font-size: clamp(38px, 9.4vw, 40px);
    line-height: .96;
  }

  .note-button {
    min-height: 74px;
    padding: 18px 20px 17px;
    font-size: 15px;
    letter-spacing: .16em;
  }

  .note-button-arrow {
    font-size: 24px;
  }

  .featured {
    padding-block: 30px 42px;
  }

  .article-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .article-card {
    min-height: clamp(156px, 39vw, 168px);
    display: grid;
    grid-template-columns: 43% 57%;
  }

  .article-image {
    height: 100%;
    min-height: clamp(156px, 39vw, 168px);
    aspect-ratio: auto;
  }

  .article-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }

  .article-text {
    width: 100%;
    height: auto;
    min-height: clamp(156px, 39vw, 168px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 14px;
  }

  .article-category {
    margin-bottom: 7px;
    font-size: 10px; /* AUDIT: was 9px */
  }

  .article-card h3 {
    min-height: 0;
    margin: 0;
    padding: 0;
    font-size: clamp(17px, 4.7vw, 20px);
    line-height: 1.03;
  }

  .article-reader {
    padding: 14px;
  }

  .article-reader-dialog {
    width: 100%;
    height: 100%;
  }

  .reader-page {
    max-width: 100%;
    max-height: calc(100vh - 28px);
    max-height: calc(100dvh - 28px); /* AUDIT */
  }

  .reader-close {
    top: 8px;
    right: 8px;
    width: 42px;
    height: 42px;
  }

  .reader-close svg {
    width: 14px;
    height: 14px;
  }

  .reader-nav {
    width: 44px;
    height: 52px;
    font-size: 23px;
  }

  .reader-prev {
    left: 6px;
  }

  .reader-next {
    right: 6px;
  }

  .site-footer {
    padding-bottom: 24px;
  }

  .footer-inner {
    padding-top: 20px;
  }

  .bridge-motif {
    width: 210px;
    height: 42px;
  }

  .footer-statement {
    font-size: 14px;
    letter-spacing: .15em;
  }

  .footer-support {
    font-size: 14px;
    line-height: 1.35;
  }
}

/*
 * AUDIT — small phones (iPhone SE, folded devices, split screen, and any
 * phone at 200% text zoom). `white-space: nowrap` on "EDITOR-IN-CHIEF" gave
 * the note column a 308px minimum width, which blew the grid past the 280px
 * page shell. Because body has overflow-x: hidden the excess was silently
 * cut off rather than scrollable: the final F of CHIEF, the right edge of
 * the photo and the arrow on "Read the Note" all disappeared off-screen.
 * Letting the heading shrink below 360px keeps the nowrap and fixes the clip.
 */
@media (max-width: 700px) {
  .editor-note > *,
  .article-grid > * {
    min-width: 0;
  }
}

@media (max-width: 359px) {
  .note-heading-main {
    font-size: clamp(26px, 10.1vw, 34px);
  }

  .note-heading-intro {
    font-size: 16px;
    letter-spacing: .14em;
  }

  .note-button {
    padding-inline: 14px;
    font-size: 13px;
    letter-spacing: .12em;
  }

  .article-category {
    font-size: 10px; /* AUDIT: 9px is below a comfortable legibility floor */
  }
}

/* Active tablet portrait layout. Phone and desktop rules remain separate. */
@media (min-width: 701px) and (max-width: 900px) {
  .header-inner {
    padding-left: 148px;
  }

  .brand {
    top: 7px;
    width: 136px;
    height: 136px;
  }

  .brand img {
    top: 0;
  }

  .issue-title {
    font-size: clamp(19px, 2.6vw, 21px);
  }

  .hero {
    min-height: 490px;
    grid-template-columns: 42% 58%;
  }

  .hero-copy-inner {
    width: calc(100% - 48px);
    margin-right: 24px;
    padding-block: 44px;
  }

  .hero h1 {
    font-size: clamp(43px, 6vw, 48px);
  }

  .hero-copy p {
    font-size: 14px;
  }

  .editor-note {
    grid-template-columns: minmax(0, 38fr) minmax(0, 62fr);
    gap: 32px;
    align-items: center;
    padding-block: 44px;
  }

  .note-image img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .note-copy {
    min-width: 0;
    align-self: center;
    padding-top: 0;
  }

  .note-heading {
    margin-bottom: 30px;
  }

  .note-heading-intro {
    margin-bottom: 34px;
    font-size: 19px;
  }

  .note-heading-intro::after {
    width: 112px;
    margin-top: 17px;
  }

  .note-heading-main {
    font-size: 40px;
  }

  .note-ornament {
    height: 58px;
    margin-bottom: 16px;
  }

  .note-ornament img {
    width: 125px;
  }

  .note-button {
    min-height: 76px;
    padding: 20px 24px 19px;
    font-size: 15px;
  }

  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
    row-gap: 30px;
  }

  .article-card {
    height: auto;
  }

  .article-text {
    height: auto;
    min-height: 132px;
    justify-content: flex-start;
    padding: 17px 18px 19px;
  }

  .article-card h3 {
    overflow: visible;
    font-size: 21px;
    line-height: 1.06;
  }

  .article-reader {
    padding: 20px;
  }

  .article-reader-dialog {
    width: 100%;
    height: 100%;
  }

  .reader-page {
    max-width: 100%;
    max-height: calc(100vh - 40px);
  }

  .reader-close {
    top: 8px;
    right: 8px;
    width: 42px;
    height: 42px;
  }

  .reader-nav {
    width: 46px;
    height: 56px;
  }

  .reader-prev {
    left: 8px;
  }

  .reader-next {
    right: 8px;
  }
}

/* Compact laptops: retain the desktop composition with more fluid spacing. */
@media (min-width: 901px) and (max-width: 1199px) {
  .editor-note {
    gap: clamp(48px, calc(8.05vw - 24.5px), 72px);
  }

  .note-heading-main {
    font-size: clamp(49px, 5.4vw, 55px);
  }

  .article-grid {
    column-gap: clamp(30px, calc(4.7vw - 12.35px), 44px);
  }

  .article-text {
    height: auto;
    min-height: 112px;
  }

  .article-card h3 {
    overflow: visible;
    font-size: clamp(20px, 2.2vw, 23px);
    line-height: 1.04;
  }
}


/* AUDIT: printing the homepage previously produced a page of dark green ink. */
@media print {
  body { background: #fff; color: #000; }

  .site-header,
  .featured,
  .site-footer {
    background: #fff;
    color: #000;
  }

  .site-header,
  .hero,
  .editor-note,
  .featured {
    box-shadow: none;
    clip-path: none;
  }

  .article-reader,
  .skip-link { display: none !important; }

  .article-card { break-inside: avoid; border: 1px solid #999; }
  .section-label, .footer-statement, .issue-title, .issue-number { color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 10px; }
}
