:root {
  --bg: #f7f8f7;
  --surface: #fbfbfa;
  --surface-muted: #f0f2f1;
  --frame-surface: rgba(240, 243, 244, 0.94);
  --ink: #171a1d;
  --ink-muted: #596169;
  --rule: #d2d8dc;
  --rule-strong: #aab6bf;
  --accent: #28495a;
  --accent-soft: #e7edf0;
  --max-width: 74rem;
  --reading-width: 41rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --serif: "Georgia", "Times New Roman", Times, serif;
  --sans: "Aptos", "Segoe UI", Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--serif);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.78;
  text-rendering: optimizeLegibility;
}

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

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

a:hover,
a:focus {
  text-decoration: underline;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  border-bottom: 1px solid rgba(170, 182, 191, 0.55);
  background: var(--frame-surface);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
  transition:
    opacity 220ms ease,
    visibility 220ms ease,
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.header-inner,
.page-section,
.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 0 1rem;
}

.home-page .site-header {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  border-bottom-color: transparent;
  background: rgba(240, 243, 244, 0);
  backdrop-filter: blur(0);
  pointer-events: none;
}

.home-page.home-scrolled .site-header {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  border-bottom-color: rgba(170, 182, 191, 0.55);
  background: var(--frame-surface);
  backdrop-filter: blur(8px);
  pointer-events: auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
}

.brand-logo {
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 auto;
  opacity: 0.92;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.brand-kicker,
.eyebrow,
.meta-label,
.issue-meta,
.page-intro,
.references li,
.footer-note {
  font-family: var(--sans);
  letter-spacing: 0.08em;
}

.brand-kicker,
.eyebrow,
.meta-label {
  font-size: 0.66rem;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.brand-title {
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  font-family: var(--sans);
}

.site-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  color: var(--ink);
}

.hero-grid,
.feature-grid,
.two-column,
.issue-layout {
  display: grid;
  gap: 3.25rem;
}

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

.hero-copy h1,
.page-title,
.issue-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.04;
  margin: 0.7rem 0 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.hero-copy p,
.summary,
.lede {
  max-width: 39rem;
  font-size: 1rem;
  color: var(--ink-muted);
  margin: 0 0 1.25rem;
}

.hero-aside,
.card,
.issue-card,
.reference-box,
.latest-preview,
.redirect-note {
  background: var(--surface);
  border: 1px solid var(--rule);
}

.hero-aside,
.card,
.reference-box,
.latest-preview,
.redirect-note {
  padding: 1.45rem 1.5rem;
}

.page-section {
  padding: 3.25rem 0 5.25rem;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: 1.22rem;
  margin: 0 0 0.9rem;
  font-weight: 600;
  line-height: 1.28;
}

.card-list,
.year-list,
.inline-list,
.references,
.issue-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-list,
.year-list,
.issue-list {
  display: grid;
  gap: 1.3rem;
}

.issue-card {
  padding: 1.25rem 0;
  border-left: 0;
  border-right: 0;
  background: transparent;
  border-top: 1px solid var(--rule);
  border-bottom: 0;
}

.issue-card:last-child {
  border-bottom: 1px solid var(--rule);
}

.issue-card h3,
.issue-card h2 {
  margin: 0.25rem 0 0.55rem;
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 600;
}

.issue-card p,
.article-body p,
.article-body li,
.content-block p {
  margin: 0 0 1.2rem;
}

.article-body {
  max-width: var(--reading-width);
  font-size: 1rem;
  margin: 0 auto;
}

.article-body ul {
  padding-left: 1.1rem;
  margin: 0 0 1.35rem;
}

.issue-layout {
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
}

.issue-article {
  max-width: 100%;
}

.issue-meta {
  font-size: 0.68rem;
  color: var(--ink-muted);
  text-transform: uppercase;
}

.issue-path {
  margin: 0 0 1.35rem;
}

.issue-header {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0.65rem;
}

.issue-header-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.issue-header-copy {
  padding: 2rem 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.issue-title {
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  line-height: 1.02;
  margin: 0 0 0.9rem;
  max-width: 11ch;
  letter-spacing: -0.04em;
}

.issue-byline {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.issue-byline a {
  text-decoration: none;
}

.issue-transition {
  width: 100%;
  height: 1px;
  margin: 0 0 2rem;
  background: linear-gradient(
    90deg,
    rgba(210, 216, 220, 0) 0%,
    rgba(170, 182, 191, 0.92) 14%,
    rgba(170, 182, 191, 0.92) 86%,
    rgba(210, 216, 220, 0) 100%
  );
  opacity: 0.88;
}

.reference-box h2,
.reference-box h3 {
  font-size: 0.9rem;
  margin-top: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--sans);
}

.issue-endnotes {
  margin-top: 3rem;
  padding: 1.7rem 0 0;
  border-top: 1px solid var(--rule-strong);
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.issue-endnotes .references {
  margin-top: 1.1rem;
}

.issue-closing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem 1.15rem;
  margin-top: 1.85rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--rule);
}

.issue-closing a,
.share-link-button {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--accent);
  text-underline-offset: 0.25rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.issue-closing a {
  text-decoration: none;
}

.share-link-button {
  cursor: pointer;
}

.issue-closing .share-link-button {
  margin-left: auto;
}

.share-link-button:hover,
.share-link-button:focus,
.issue-closing a:hover,
.issue-closing a:focus {
  text-decoration: underline;
}

.references li {
  font-family: var(--serif);
  font-size: 0.95rem;
  line-height: 1.75;
  letter-spacing: normal;
  color: var(--ink-muted);
  padding: 0.95rem 0;
  border-top: 1px solid var(--rule);
}

.references li:first-child {
  border-top: 0;
  padding-top: 0;
}

.button-link,
.text-link {
  font-family: var(--sans);
  font-weight: 600;
}

.button-link {
  display: inline-block;
  padding: 0.78rem 1rem;
  border: 1px solid var(--rule-strong);
  background: transparent;
  color: var(--ink);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-link:hover,
.button-link:focus {
  text-decoration: none;
  border-color: var(--accent);
  color: var(--accent);
}

.text-link {
  color: var(--accent);
  text-underline-offset: 0.25rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kpi {
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
  margin-top: 1.35rem;
}

.kpi strong {
  display: block;
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 600;
}

.hero-note,
.issue-date {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero-note {
  margin-top: 1.75rem;
}

.latest-preview {
  align-self: start;
}

.latest-preview-media {
  display: block;
  margin-bottom: 1.35rem;
}

.latest-preview-media img {
  width: 100%;
  border: 1px solid var(--rule);
  background: var(--surface-muted);
}

.latest-preview-body .section-title a {
  text-decoration: none;
}

.issue-date {
  margin: 0 0 1rem;
}

.archive-prompt {
  max-width: 34rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--rule);
}

.past-editions {
  padding-top: 1.35rem;
  border-top: 1px solid var(--rule);
}

.past-editions .section-title {
  margin: 0 0 1.2rem;
}

.past-editions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem 1.35rem;
}

.past-edition-item {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.past-edition-media {
  display: block;
}

.past-edition-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border: 1px solid var(--rule);
  background: var(--surface-muted);
}

.past-edition-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
}

.past-edition-title a {
  text-decoration: none;
}

.past-edition-date {
  margin: 0.35rem 0 0;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.past-editions-more {
  margin: 1.2rem 0 0;
  color: var(--ink-muted);
}

.about-page-shell {
  max-width: 55rem;
  margin: 0 auto;
}

.about-page-intro {
  max-width: 41rem;
  margin: 0 0 2.85rem;
  padding-top: 0.45rem;
}

.about-page-intro .page-title {
  max-width: 14ch;
  margin-bottom: 0;
}

.about-stack {
  display: grid;
  gap: 2.35rem;
  max-width: 48rem;
  margin: 0 auto;
}

.about-section {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
}

.about-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.about-subsection {
  margin-top: 2.35rem;
}

.about-subsection-title {
  margin: 0 0 0.8rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.source-list {
  list-style: none;
  margin: 0.95rem 0 0;
  padding: 0;
}

.source-list li {
  break-inside: avoid;
  margin: 0 0 0.55rem;
  padding: 0;
}

.source-list a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18rem;
}

.redirect-note {
  max-width: 36rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
  padding-top: 0.25rem;
}

.issue-hero {
  margin: 0;
}

.issue-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--rule);
  background: var(--surface-muted);
}

.reference-entry-title {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
}

.reference-entry-title:hover,
.reference-entry-title:focus {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.22rem;
}

.home-lead {
  padding-top: 0.7rem;
  position: relative;
  transition: padding-top 220ms ease;
}

.home-lead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 13.05rem;
  transform: translateX(-50%);
  background: rgba(240, 243, 244, 0.78);
  pointer-events: none;
  z-index: 0;
  transition:
    height 220ms ease,
    background 220ms ease,
    opacity 220ms ease;
}

.home-intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: stretch;
  gap: 1.35rem;
  max-width: 52rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  transition:
    margin-bottom 220ms ease,
    transform 220ms ease,
    opacity 220ms ease;
}

.home-intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-logo {
  width: auto;
  height: 100%;
  max-height: 11.2rem;
  align-self: stretch;
  margin-bottom: 0;
  opacity: 0.96;
  transition:
    width 220ms ease,
    height 220ms ease,
    max-height 220ms ease,
    margin-bottom 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

.home-title {
  margin: 0.5rem 0 1rem;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition:
    font-size 220ms ease,
    margin 220ms ease,
    letter-spacing 220ms ease;
}

.home-framing,
.archive-prompt-copy,
.featured-edition-excerpt {
  color: var(--ink-muted);
}

.home-framing {
  margin: 0;
  max-width: 43rem;
  transition:
    max-width 220ms ease,
    opacity 220ms ease;
}

.featured-edition {
  display: grid;
  gap: 1.6rem;
  align-items: start;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.home-transition {
  width: 100%;
  height: 1px;
  margin: 0 0 1.35rem;
  background: linear-gradient(
    90deg,
    rgba(210, 216, 220, 0) 0%,
    rgba(170, 182, 191, 0.92) 14%,
    rgba(170, 182, 191, 0.92) 86%,
    rgba(210, 216, 220, 0) 100%
  );
  opacity: 0.88;
  transition:
    margin 220ms ease,
    opacity 220ms ease;
  position: relative;
  z-index: 1;
}

.featured-edition-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.featured-edition-copy {
  padding: 2rem 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-edition-title {
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  line-height: 1.02;
  margin: 0 0 0.9rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.featured-edition-title a {
  text-decoration: none;
}

.featured-edition-excerpt {
  margin: 0 0 0.95rem;
  max-width: none;
}

.featured-edition-media {
  display: block;
}

.featured-edition-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--rule);
  background: var(--surface-muted);
}

.featured-edition-excerpt p {
  max-width: none;
  margin: 0 0 1rem;
}

.featured-edition-excerpt p:last-child {
  margin-bottom: 0;
}

.featured-edition-action {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.featured-edition-primary-link {
  font-family: var(--sans);
  text-decoration: none;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-edition-primary-link:hover,
.featured-edition-primary-link:focus {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  color: var(--accent);
}

.archive-prompt-copy {
  margin: 0;
}

.archive-prompt-copy .text-link {
  margin-left: 0;
}

.past-editions-more .text-link {
  margin-left: 0;
}

.archive-page-section {
  overflow: hidden;
  padding-bottom: 0.95rem;
}

.archive-page-shell {
  display: grid;
  gap: 2.4rem;
}

.archive-page-intro {
  max-width: 42rem;
  padding: 0.8rem 0 0.45rem;
}

.archive-page-intro .page-title {
  max-width: 9ch;
  margin-bottom: 0.95rem;
}

.archive-page-copy {
  margin: 0;
  max-width: 37rem;
  color: var(--ink-muted);
}

.archive-page-transition {
  width: 100%;
  height: 1px;
  margin: 0;
  background: linear-gradient(
    90deg,
    rgba(210, 216, 220, 0) 0%,
    rgba(170, 182, 191, 0.92) 14%,
    rgba(170, 182, 191, 0.92) 86%,
    rgba(210, 216, 220, 0) 100%
  );
  opacity: 0.88;
}

.archive-list {
  display: grid;
  gap: 2.1rem;
}

.archive-ending-rule {
  width: 100%;
  height: 1px;
  margin-top: 0.95rem;
  background: var(--rule);
}

.archive-edition {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.92fr);
  gap: 2rem;
  align-items: stretch;
  padding-top: 2.1rem;
  border-top: 1px solid var(--rule);
}

.archive-edition:first-child {
  padding-top: 0;
  border-top: 0;
}

.archive-edition-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.3rem 0 0.7rem;
}

.archive-edition-title {
  margin: 0;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.archive-edition-title a {
  text-decoration: none;
}

.archive-edition-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  margin: 0;
}

.archive-edition-date,
.archive-edition-reading-time {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.archive-meta-separator {
  color: var(--rule-strong);
  font-family: var(--sans);
  font-size: 0.72rem;
}

.archive-edition-excerpt {
  margin: 0;
  max-width: 38rem;
  color: var(--ink-muted);
  line-height: 1.72;
}

.archive-edition-action {
  margin: 0.2rem 0 0;
}

.archive-edition-media {
  display: block;
}

.archive-edition-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--rule);
  background: var(--surface-muted);
  transition:
    border-color 220ms ease,
    transform 220ms ease,
    opacity 220ms ease;
}

.archive-edition:hover .archive-edition-media img,
.archive-edition:focus-within .archive-edition-media img {
  border-color: var(--rule-strong);
  transform: translateY(-0.08rem);
  opacity: 0.98;
}

.home-page .home-intro .eyebrow {
  font-size: 0.7rem;
  transition:
    font-size 220ms ease,
    letter-spacing 220ms ease,
    opacity 220ms ease;
}

.home-page.home-scrolled .home-lead {
  padding-top: 1.5rem;
}

.home-page.home-scrolled .home-lead::before {
  height: 9.95rem;
  background: rgba(240, 243, 244, 0.72);
  opacity: 0.94;
}

.home-page.home-scrolled .home-intro {
  margin-bottom: 0.7rem;
  transform: translateY(-0.15rem);
}

.home-page.home-scrolled .home-logo {
  max-height: 7rem;
  opacity: 0.92;
  transform: translateY(-0.05rem);
}

.home-page.home-scrolled .home-title {
  margin: 0.3rem 0 0.55rem;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  letter-spacing: -0.015em;
}

.home-page.home-scrolled .home-framing {
  max-width: 38rem;
  opacity: 0.86;
}

.home-page.home-scrolled .home-intro .eyebrow {
  font-size: 0.64rem;
  letter-spacing: 0.07em;
  opacity: 0.9;
}

.home-page.home-scrolled .home-transition {
  margin-bottom: 1rem;
  opacity: 0.74;
}

.archive-year {
  border-top: 1px solid var(--rule-strong);
  padding-top: 2rem;
  margin-top: 2rem;
}

.archive-year:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.page-intro {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.site-footer {
  position: relative;
  padding: 1.5rem 0 2.2rem;
  background: var(--frame-surface);
  color: var(--ink-muted);
  z-index: 0;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--frame-surface);
  border-top: 1px solid var(--rule);
  z-index: -1;
}

.footer-note {
  font-size: 0.68rem;
  text-transform: uppercase;
}

.footer-note a {
  text-underline-offset: 0.25rem;
}

.footer-separator {
  display: inline-block;
  margin: 0 0.6rem;
}

.hero-copy,
.content-block,
.article-body {
  hanging-punctuation: first;
}

@media (max-width: 860px) {
  .feature-grid,
  .two-column,
  .issue-layout {
    grid-template-columns: 1fr;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 1rem;
  }

  .site-nav ul {
    gap: 0.65rem 0.9rem;
  }

  .featured-edition {
    gap: 1.3rem;
  }

  .archive-edition {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.88fr);
    gap: 1.35rem;
  }

  .featured-edition-header {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .page-title,
  .issue-title {
    line-height: 1.1;
  }

  .featured-edition-copy {
    padding: 0;
  }

  .featured-edition-title {
    max-width: none;
  }

  .issue-header-grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .issue-header-copy {
    padding: 0;
  }

  .issue-title {
    max-width: none;
  }

  .issue-transition {
    margin-bottom: 1.35rem;
  }

  .issue-closing {
    flex-direction: column;
    align-items: flex-start;
  }

  .issue-closing .share-link-button {
    margin-left: 0;
  }

}

@media (max-width: 520px) {
  body {
    font-size: 0.96rem;
  }

  .header-inner,
  .page-section,
  .site-footer {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .page-section {
    padding: 2.25rem 0 4rem;
  }

  .hero-aside,
  .card,
  .issue-card,
  .reference-box,
  .latest-preview,
  .redirect-note {
    padding: 1rem 0;
  }

  .button-link {
    width: 100%;
    text-align: center;
  }

  .hero-aside,
  .card,
  .reference-box,
  .latest-preview,
  .redirect-note {
    padding: 1.1rem;
  }

  .brand-mark {
    gap: 0.55rem;
  }

  .brand-logo {
    width: 1.45rem;
    height: 1.45rem;
  }

  .brand-title {
    font-size: 0.86rem;
  }

  .feature-grid,
  .two-column,
  .issue-layout {
    gap: 1.8rem;
  }

  .home-lead {
    padding-top: 0.45rem;
  }

  .archive-page-shell {
    gap: 1.75rem;
  }

  .archive-page-section {
    padding-bottom: 0.85rem;
  }

  .archive-page-intro {
    max-width: 100%;
    padding-top: 0.45rem;
  }

  .home-lead::before {
    height: 10.35rem;
    background: rgba(240, 243, 244, 0.76);
  }

  .home-intro {
    grid-template-columns: 3.3rem minmax(0, 1fr);
    max-width: 100%;
    margin-bottom: 0.75rem;
  }

  .home-logo {
    max-height: 8.9rem;
  }

  .featured-edition {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .home-transition {
    margin-bottom: 0.95rem;
  }

  .featured-edition-title {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .home-title {
    white-space: normal;
  }

  .past-editions-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .archive-list {
    gap: 1.6rem;
  }

  .archive-edition {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 1.6rem;
  }

  .archive-edition-body {
    padding: 0;
  }

  .archive-edition-title {
    max-width: none;
  }

  .past-edition-item {
    grid-template-columns: minmax(0, 7rem) minmax(0, 1fr);
    gap: 0.9rem;
    align-items: start;
  }

  .past-edition-media img {
    aspect-ratio: 1 / 1;
  }

  .archive-prompt-copy .text-link {
    display: inline-block;
    margin-left: 0;
    margin-top: 0.35rem;
  }

  .past-editions-more .text-link {
    display: inline-block;
    margin-top: 0.35rem;
  }

  .home-page.home-scrolled .home-lead {
    padding-top: 1.05rem;
  }

  .home-page.home-scrolled .home-lead::before {
    height: 8.15rem;
    background: rgba(240, 243, 244, 0.7);
  }

  .home-page.home-scrolled .home-logo {
    max-height: 5.8rem;
  }

  .home-page.home-scrolled .home-title {
    font-size: clamp(1.55rem, 8vw, 2rem);
    white-space: normal;
  }

  .home-page.home-scrolled .home-framing {
    opacity: 0.92;
  }

  .home-page.home-scrolled .home-transition {
    margin-bottom: 0.8rem;
  }

  .about-page-shell {
    max-width: 100%;
  }

  .about-page-intro {
    max-width: 100%;
    margin-bottom: 2.2rem;
    padding-top: 0.2rem;
  }

  .about-stack {
    max-width: 100%;
    gap: 1.85rem;
  }

  .about-section {
    padding-bottom: 1.7rem;
  }

  .about-subsection {
    margin-top: 1.85rem;
  }

  .issue-path {
    margin-bottom: 1rem;
  }

  .issue-transition {
    margin-bottom: 1.1rem;
  }

  .issue-endnotes {
    padding: 1.35rem 0 0;
  }

  .issue-closing {
    margin-top: 1.45rem;
    padding-top: 1rem;
  }

  .issue-card {
    padding: 1rem 0;
  }

  .issue-header {
    padding-bottom: 1.35rem;
    margin-bottom: 1.8rem;
  }
}
