:root {
  color-scheme: light;
  --ink: #17201b;
  --muted: #65736d;
  --line: #dfe7e1;
  --paper: #fbfaf6;
  --white: #ffffff;
  --green: #2f7d58;
  --blue: #286b8f;
  --gold: #8a6a24;
  --violet: #7b5d8f;
  --soft: #f1f5ef;
  --shadow: 0 18px 50px rgba(28, 46, 36, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(223, 231, 225, 0.9);
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
}
.brand strong, .brand small { display: block; }
.brand small, .meta, .form-note, .site-footer span { color: var(--muted); font-size: 12px; }
nav { display: flex; align-items: center; gap: 20px; color: #33413a; font-size: 14px; }
nav a.is-active,
nav .current-menu-item > a,
nav .current_page_item > a {
  color: var(--green);
  font-weight: 800;
}

.region-badge {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

main { min-height: 70vh; }
.page-hero, .story-shell, .section, .grid-section, .policy-page {
  padding: clamp(38px, 6vw, 76px) clamp(18px, 5vw, 72px);
}
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 780px; margin-bottom: 16px; font-size: clamp(42px, 5.5vw, 72px); line-height: 0.98; letter-spacing: 0; }
h2 { margin-bottom: 18px; font-size: clamp(30px, 4vw, 54px); line-height: 1.02; letter-spacing: 0; }
h3 { margin-bottom: 8px; font-size: 21px; line-height: 1.18; }
.lede { max-width: 680px; color: #46524c; font-size: clamp(17px, 1.8vw, 21px); line-height: 1.55; }
.subscribe-form { width: min(430px, 100%); margin-top: 22px; }
.subscribe-form label { display: block; margin-bottom: 8px; color: #2e3934; font-size: 14px; font-weight: 800; }
.form-row { display: flex; gap: 8px; }
input, textarea, button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}
input, textarea {
  width: 100%;
  background: var(--white);
  color: var(--ink);
  padding: 0 14px;
}
textarea { min-height: 150px; padding-top: 12px; resize: vertical; }
button, .button {
  flex: 0 0 auto;
  border: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}
.button { display: inline-flex; align-items: center; min-height: 44px; }

button:hover, .button:hover, .button:focus-visible {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(47, 125, 88, 0.28);
  transform: translateY(-1px);
}
button:active, .button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(47, 125, 88, 0.22);
}
.channel-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.channel-pill {
  min-height: 130px;
  padding: 16px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--accent);
  border-radius: 8px;
  background: var(--white);
}
.channel-pill strong, .channel-pill span { display: block; }
.channel-pill span { margin-top: 10px; color: var(--muted); font-size: 14px; line-height: 1.45; }
.feature-stack { display: grid; gap: 10px; }
.feature-card, .story-tile, .issue-row, .note-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(28, 46, 36, 0.055);
}
.feature-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
}
.feature-card.large { grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr); align-items: stretch; }
.feature-card img { height: 112px; border-radius: 7px; object-fit: cover; }
.feature-card.large img { height: 100%; min-height: 310px; }
.feature-card p, .story-tile p, .issue-row p { color: #526058; line-height: 1.5; }
.meta {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}
.grid-section { padding-top: 24px; }
.section-header { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 18px; }
.section-header p { max-width: 560px; color: var(--muted); line-height: 1.55; }
.story-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.story-tile { overflow: hidden; }
.story-tile img { aspect-ratio: 10 / 7; object-fit: cover; }
.story-tile .meta, .story-tile h3 { margin-right: 14px; margin-left: 14px; }
.story-tile .meta { margin-top: 14px; }
.issue-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.issue-filters a {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #2e3934;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.issue-filters a.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}
.issue-list { display: grid; gap: 12px; }
.archive-month-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.archive-month-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(28, 46, 36, 0.055);
  text-decoration: none;
}
.archive-month-card strong {
  font-size: 18px;
  line-height: 1.25;
}
.archive-month-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.issue-row {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 18px;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
.issue-row:hover {
  border-color: #9bb89f;
  background: #f6faf6;
  box-shadow: 0 12px 30px rgba(28, 46, 36, 0.09);
  transform: translateY(-1px);
}
.issue-meta-block {
  display: grid;
  gap: 6px;
}
.issue-meta-block strong { color: var(--green); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.issue-meta-block span { color: var(--muted); font-size: 14px; line-height: 1.35; }
.issue-copy h3 {
  margin-bottom: 8px;
}
.issue-copy h3 a {
  color: inherit;
  text-decoration: none;
}
.issue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}
.issue-tags span,
.issue-tags a {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: #2e3934;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.issue-read {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.archive-subscribe-cta {
  display: flex;
  max-width: 1320px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 24px auto 0;
  padding: 14px 16px;
  border-color: #d1b266;
  background: #fff7e3;
  text-align: center;
}
.archive-subscribe-cta p {
  margin: 0;
  color: #5d471c;
}
.archive-month-nav {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  gap: 12px;
  align-items: center;
  max-width: 1320px;
  margin: 24px auto 0;
}
.archive-month-nav strong {
  text-align: center;
  font-size: 18px;
}
.month-link {
  display: inline-flex;
  width: 100%;
  max-width: 180px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
.month-link.next {
  justify-self: end;
}
.month-link.is-disabled {
  visibility: hidden;
  pointer-events: none;
}
.story-shell {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 0.34fr);
  gap: clamp(30px, 5vw, 70px);
}
.article-body { font-size: 19px; line-height: 1.75; }
.article-body h2 { margin-top: 42px; font-size: 34px; }
.article-body p, .article-body li { color: #34413a; }
.article-hero-image { margin: 28px 0; border-radius: 8px; aspect-ratio: 16 / 9; object-fit: cover; }
.sidebar { display: grid; align-content: start; gap: 14px; }
.note-card { padding: 18px; }
.note-card strong { display: block; margin-bottom: 8px; }
.split-page {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.45fr);
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(38px, 6vw, 76px) clamp(18px, 5vw, 72px);
}
.contact-stack {
  display: grid;
  gap: 14px;
}
.contact-notice {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.contact-notice p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}
.contact-notice--success {
  border-color: rgba(47, 125, 88, 0.28);
  background: #f4fbf7;
}
.contact-notice--error {
  border-color: rgba(160, 52, 52, 0.28);
  background: #fff7f7;
}
.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #2e3934;
  font-size: 14px;
  font-weight: 800;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
}

.contact-form .form-note {
  margin: 0;
}
.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
}
.contact-honeypot input {
  position: absolute;
  inset: auto;
}
.policy-page { width: min(920px, calc(100% - 36px)); margin: 0 auto; }
.policy-page section { margin-top: 32px; }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px) 44px;
  color: var(--muted);
  font-size: 14px;
}
.site-footer strong, .site-footer span { display: block; }
.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.toast.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
  .site-header, .site-footer, .section-header { align-items: flex-start; flex-direction: column; }
  .page-hero, .split-page, .story-shell, .feature-card.large { grid-template-columns: 1fr; }
  .channel-grid, .story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-card.large img { min-height: 240px; }
}
@media (max-width: 620px) {
  nav { flex-wrap: wrap; gap: 12px; }
  .form-row { flex-direction: column; }
  button, .button { justify-content: center; width: 100%; }
  .channel-grid, .story-grid { grid-template-columns: 1fr; }
  .issue-row {
    gap: 12px;
    padding: 14px;
  }
  .issue-meta-block {
    gap: 4px;
  }
  .issue-copy h3 {
    margin-bottom: 6px;
  }
  .issue-tags {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    margin-top: 8px;
    scrollbar-width: thin;
  }
  .issue-tags span,
  .issue-tags a {
    flex: 0 0 auto;
  }
  .feature-card { grid-template-columns: 96px minmax(0, 1fr); }
  .feature-card img { height: 96px; }
  .feature-card p { display: none; }
  .issue-row { grid-template-columns: 1fr; }
  .issue-read {
    justify-self: stretch;
    width: 100%;
  }
  .archive-subscribe-cta {
    align-items: stretch;
    flex-direction: column;
  }
  .archive-month-nav {
    grid-template-columns: 1fr;
  }
  .archive-month-nav strong,
  .month-link.next {
    justify-self: stretch;
    text-align: center;
  }
  .month-link {
    max-width: none;
  }
}


/* Homepage launch styles. Keep homepage aligned with the approved Studio draft. */
:root {
  color-scheme: light;
  --ink: #17201b;
  --muted: #65736d;
  --line: #dfe7e1;
  --paper: #fbfaf6;
  --white: #ffffff;
  --wood: #b97745;
  --green: #2f7d58;
  --blue: #286b8f;
  --leaf: #e5f2e7;
  --sky: #e5f1f6;
  --shadow: 0 18px 50px rgba(28, 46, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(223, 231, 225, 0.9);
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

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

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #33413a;
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(38px, 6vw, 70px) clamp(18px, 5vw, 72px) clamp(34px, 5vw, 58px);
  text-align: left;
}

.hero-copy {
  display: grid;
  justify-items: start;
  max-width: 710px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 16px;
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
}

.lede {
  max-width: 640px;
  color: #46524c;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
}

.subscribe-form {
  width: min(430px, 100%);
  margin-top: 22px;
}

.subscribe-form label {
  display: block;
  margin-bottom: 8px;
  color: #2e3934;
  font-size: 14px;
  font-weight: 800;
}

.form-row {
  display: flex;
  gap: 8px;
}

input,
select,
button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

input,
select {
  width: 100%;
  background: var(--white);
  color: var(--ink);
  padding: 0 14px;
}

button,
.partner-button {
  flex: 0 0 auto;
  border: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-note a {
  color: var(--ink);
  font-weight: 800;
}

.reader-proof {
  justify-content: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.reader-proof span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: #3e4c45;
  font-size: 13px;
  font-weight: 700;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, color 180ms ease;
}

.reader-proof span a {
  color: inherit;
  text-decoration: none;
}

.reader-proof span:hover,
.reader-proof span:focus-within {
  border-color: var(--green);
  background: #f6faf6;
  color: var(--green);
  box-shadow: 0 8px 20px rgba(47, 125, 88, 0.18);
  transform: translateY(-1px);
}

.hero-samples {
  display: grid;
  gap: 10px;
  width: 100%;
}

.hero-article {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(28, 46, 36, 0.055);
  color: inherit;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hero-article:hover,
.hero-article:focus-visible {
  border-color: #9bb89f;
  background: #f6faf6;
  box-shadow: 0 12px 30px rgba(28, 46, 36, 0.09);
  transform: translateY(-1px);
}

.hero-article img {
  align-self: stretch;
  height: 104px;
  border-radius: 7px;
  object-fit: cover;
}

.hero-article-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-height: 104px;
  overflow: hidden;
}

.hero-article .hero-eyebrow {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-article h2 {
  margin: 0 0 4px;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.18;
}

.hero-article-summary-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.hero-article-summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0;
  padding-right: 78px; /* reserve room so Read more never overlaps text */
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
  text-overflow: ellipsis;
}

.hero-read {
  position: absolute;
  right: 0;
  bottom: 0;
  padding-left: 18px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), var(--white) 12px);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.42;
  white-space: nowrap;
  text-decoration-thickness: 2px;
}

.brief-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.brief-section-heading span {
  color: var(--green);
  text-transform: uppercase;
}

.brief-item span,
.archive-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.sponsored-preview {
  margin: 6px -8px 0;
  padding-right: 8px !important;
  padding-left: 8px !important;
  border-radius: 8px;
  background: #f4f1eb;
}

.lead-story div {
  padding: 24px;
}

.lead-story span,
.story-list span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-story p,
.story-list p,
.pillars p,
.case-grid p,
.partner p {
  color: var(--muted);
  line-height: 1.55;
}

.lead-story a {
  color: var(--green);
  font-weight: 800;
  text-decoration-thickness: 2px;
}

.inline-subscribe,
.partner,
.final-cta {
  margin: 0 clamp(18px, 5vw, 72px);
  padding: clamp(28px, 4vw, 42px);
  border-radius: 8px;
}

.more-stories {
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px);
}

.more-stories > h2 {
  max-width: 1120px;
  margin: 0 auto 28px;
  font-size: 24px;
  line-height: 1.2;
}

.more-category {
  max-width: 1260px;
  margin: 0 auto 38px;
}

.more-category h3 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 18px;
  line-height: 1.2;
}

.more-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, 300px);
  gap: 22px 20px;
  align-items: start;
}

.more-item {
  display: block;
  width: 300px;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.more-item:hover,
.more-item:focus-visible {
  background: #f6faf6;
  /* 1px ring via box-shadow keeps layout untouched, then the lift shadow */
  box-shadow: 0 0 0 1px #9bb89f, 0 12px 30px rgba(28, 46, 36, 0.09);
  transform: translateY(-1px);
}

.more-item img {
  width: 300px;
  height: 210px;
  border-radius: 4px;
  object-fit: cover;
}

.more-item span {
  display: block;
  margin-top: 8px;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.more-item h4 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.more-item p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.inline-subscribe {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 26px;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.inline-subscribe h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 38px);
}

.inline-subscribe .subscribe-form {
  max-width: none;
  margin-top: 0;
}

.briefing,
.pillars,
.archive,
.stories {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 22px;
}

.content-board {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 18px;
  align-items: start;
}

.brief-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(28, 46, 36, 0.06);
}

.brief-section-featured {
  grid-row: span 2;
}

.brief-section-heading {
  padding: 14px 16px;
}

.brief-section-heading a {
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
}

.brief-item {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.brief-item:last-child {
  border-bottom: 0;
}

.brief-item img {
  height: 106px;
  border-radius: 8px;
  object-fit: cover;
}

.brief-item h3,
.brief-row h3,
.archive-grid h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
}

.brief-item p,
.archive-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.sponsored-item {
  grid-template-columns: 46px minmax(0, 1fr);
  background: #f4f1eb;
}

.sponsor-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--wood);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.brief-row {
  display: grid;
  grid-template-columns: 58px 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}

.brief-row:last-child {
  border-bottom: 0;
}

.brief-row > span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.brief-row img {
  width: 58px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
}

.brief-row h3 {
  margin-bottom: 0;
}

.lead-story,
.story-list article,
.pillar-grid article,
.case-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.lead-story {
  overflow: hidden;
}

.lead-story img {
  height: 330px;
  object-fit: cover;
}

.story-list {
  display: grid;
  gap: 12px;
}

.story-list article {
  padding: 20px;
}

.story-list article.is-muted {
  opacity: 0.42;
}

.pillar-grid,
.case-grid,
.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pillar-grid article,
.archive-grid article {
  padding: 24px;
}

.archive-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.archive-grid img {
  width: calc(100% + 48px);
  height: 126px;
  margin: -24px -24px 18px;
  object-fit: cover;
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--leaf);
  color: var(--green);
  font-weight: 900;
}

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

.case-grid article {
  overflow: hidden;
}

.case-grid img {
  height: 220px;
  object-fit: cover;
}

.case-grid h3,
.case-grid p {
  padding: 0 18px;
}

.case-grid h3 {
  margin-top: 18px;
}

.case-grid p {
  padding-bottom: 20px;
}

.partner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #f1eee8;
}

.partner div {
  max-width: 720px;
}

.partner-button {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  white-space: nowrap;
}

.final-cta {
  margin-top: 56px;
  margin-bottom: 34px;
  background: var(--green);
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.final-cta .subscribe-form {
  width: min(620px, 100%);
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.final-cta label,
.final-cta .form-note {
  color: var(--white);
}

.final-cta .form-note {
  white-space: nowrap;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px) 44px;
  color: var(--muted);
  font-size: 14px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.button-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.button-secondary:hover, .button-secondary:focus-visible {
  background: var(--soft, #f1f5ef);
  color: var(--green);
  border-color: #9bb89f;
  box-shadow: 0 12px 26px rgba(28, 46, 36, 0.10);
  transform: translateY(-1px);
}

.home-cta .home-actions {
  justify-content: center;
}

@media (max-width: 980px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .inline-subscribe,
  .story-layout,
  .content-board {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-article {
    max-width: 640px;
  }

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

  .more-list {
    grid-template-columns: repeat(auto-fill, minmax(260px, 300px));
  }

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

nav .menu {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compact-hero {
  grid-template-columns: minmax(0, 860px);
}

.channels-shell,
.subscribe-layout {
  display: grid;
  gap: clamp(34px, 6vw, 72px);
  padding: clamp(34px, 6vw, 78px) clamp(18px, 5vw, 72px);
}

.channels-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.45fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}

.channel-map {
  display: grid;
  gap: 18px;
}

.channel-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr) minmax(230px, 0.32fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.channel-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(21px, 1.8vw, 24px);
  line-height: 1.15;
  white-space: nowrap;
}

.channel-panel h3 {
  margin: 0 0 10px;
  font-size: 17px;
}

.channel-panel p {
  margin: 0;
  color: #46524c;
  line-height: 1.55;
}

.subtopic-list,
.wish-list-row,
.latest-list,
.reader-requests {
  display: grid;
  gap: 10px;
}

.subtopic-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.topic-pill,
.topic-chip {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8f8f4;
  color: #2e3934;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reader-requests {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.reader-requests h3 {
  margin-bottom: 12px;
}

@media (max-width: 620px) {
  .subtopic-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.topic-chip {
  width: auto;
  min-height: 36px;
  background: var(--white);
  cursor: pointer;
}

.topic-chip.is-selected {
  border-color: #9bb89f;
  background: var(--leaf);
}

.wish-item {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fff;
}

.wish-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #2e3934;
  font-size: 13px;
  font-weight: 900;
}

.wish-topline span {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.wish-meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #ecece8;
}

.wish-meter span {
  display: block;
  width: var(--vote-width);
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.latest-list a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.latest-list strong {
  display: block;
  margin-bottom: 4px;
}

.latest-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.channel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.outline-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.channel-note {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.channel-note strong {
  display: block;
}

.subscribe-layout {
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
}

.form-shell {
  display: grid;
  gap: 22px;
}

.wire {
  border: 1px solid var(--line);
  background: var(--white);
}

.label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #333;
  font-size: 11px;
  font-weight: 900;
  text-transform: none;
  white-space: nowrap;
}

.step-badge.is-required {
  border-color: #9bb89f;
  background: var(--leaf);
}

.subscription-mini {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: grid;
  width: 100%;
  justify-items: center;
  gap: 6px;
  padding: 10px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.96);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.subscription-mini.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mini-item {
  display: flex;
  width: min(100%, 760px);
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 13px;
}

.mini-item strong {
  flex: 0 0 auto;
  font-size: 11px;
  text-transform: uppercase;
}

.mini-item span {
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preference-status {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  background: var(--leaf);
  border-color: #9bb89f;
}

.preference-status.is-pending {
  background: #f4f1eb;
  border-color: #d8cbb8;
}

.preference-status.is-pending .status-chip {
  border-color: #b69a72;
}

.preference-status.is-verified {
  background: var(--leaf);
  border-color: #9bb89f;
}

.preference-status.is-unsubscribed {
  background: #f4f1eb;
  border-color: #c8b897;
}

.preference-status.is-unsubscribed .status-chip {
  border-color: #9c7a4b;
}

.preference-status h2 {
  margin: 0 0 4px;
  font-size: 20px;
}

.preference-status p {
  margin: 0;
  color: #344239;
  line-height: 1.5;
}

.status-chip {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid #6f8f73;
  border-radius: 999px;
  background: var(--white);
  color: #2e3934;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.step {
  padding: 22px;
  border-radius: 8px;
}

.step.is-locked {
  background: #fbfbf8;
}

.step.is-locked .theme-grid,
.step.is-locked .topic-groups,
.step.is-locked .review-block {
  opacity: 0.42;
  pointer-events: none;
}

.step-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.step-header h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.step-header p {
  max-width: 520px;
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.step-header p.full-line {
  max-width: none;
}

.email-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 10px;
}

.input-real {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--shade);
}

.verification-panel,
.lock-note {
  margin-top: 12px;
  padding: 12px;
  border: 1px dashed #9bb89f;
  border-radius: 8px;
  background: #f6faf6;
  color: #344239;
  font-size: 14px;
  line-height: 1.5;
}

.verification-panel[hidden],
.is-hidden {
  display: none !important;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.theme-card {
  position: relative;
  min-height: 146px;
  padding: 16px;
  border-radius: 8px;
  cursor: pointer;
}

.theme-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.theme-card.is-selected {
  background: var(--leaf);
  border-color: #9bb89f;
}

.channel-empty-note {
  margin: 12px 0 0;
  color: #7b5b2f;
  font-size: 13px;
  font-weight: 800;
}

.check {
  display: grid;
  width: 24px;
  height: 24px;
  margin-bottom: 14px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 900;
}

.theme-card h3,
.topic-group h3,
.side-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.theme-card p,
.side-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.topic-groups {
  display: grid;
  gap: 18px;
}

.topic-group {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
}

.topic-group.is-hidden {
  display: none;
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-chip.is-default {
  background: #f6f6f2;
  color: #333;
}

.upvote-button {
  justify-self: start;
  min-height: 34px;
  padding: 0 12px;
  font-size: 13px;
}

.upvote-button.is-upvoted {
  border-color: #6f8f73;
  background: var(--leaf);
  color: #2e3934;
}

.topic-add-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  gap: 8px;
}

.topic-add-row input.is-error {
  border-color: #b66565;
  background: #fff7f5;
  color: #8a2f2f;
}

.custom-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.review-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 8px;
}

.review-bar p {
  margin: 4px 0 0;
  color: var(--muted);
}

.review-block {
  align-items: stretch;
}

.review-groups {
  display: grid;
  gap: 16px;
  margin-top: 14px;
}

.review-section {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.review-section h4 {
  margin: 0;
  color: #333;
  font-size: 13px;
  text-transform: uppercase;
}

.review-empty {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.unsubscribe-review {
  display: none;
  margin-top: 12px;
  padding: 14px;
  border: 1px dashed #9bb89f;
  border-radius: 8px;
  background: #f6faf6;
  color: #344239;
  line-height: 1.5;
}

.review-block.is-unsubscribe .review-groups {
  display: none;
}

.review-block.is-unsubscribe .unsubscribe-review {
  display: block;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(24, 24, 24, 0.28);
}

.modal-backdrop.is-visible {
  display: grid;
}

.confirm-modal {
  width: min(100%, 560px);
  padding: 20px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(24, 24, 24, 0.18);
}

.confirm-modal h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.confirm-modal p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.5;
}

.modal-list {
  display: grid;
  gap: 10px;
  margin: 14px 0;
}

.modal-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  text-transform: uppercase;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 10px;
  margin-top: 18px;
}

.update-list {
  display: grid;
  gap: 18px;
}

.update-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 22px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.update-row h2 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 34px);
}

.update-row p {
  margin: 0;
  color: #46524c;
  line-height: 1.58;
}

.update-row p a {
  color: var(--green);
  font-weight: 900;
}

.update-thumb img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.update-detail-shell {
  display: grid;
  justify-content: center;
  padding: clamp(38px, 6vw, 82px) clamp(18px, 5vw, 72px);
}

.update-detail {
  width: min(880px, 100%);
}

.update-detail-header {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.update-detail-header h1 {
  max-width: 860px;
  margin-bottom: 14px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
}

.update-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.update-detail-image {
  margin: 28px 0;
}

.update-detail-image img {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
}

.update-detail-body {
  padding-top: 28px;
  color: #34413a;
  font-size: 19px;
  line-height: 1.75;
}

.update-detail-body h2,
.update-detail-body h3 {
  margin-top: 38px;
}

.update-detail-body h2 {
  font-size: 34px;
}

.update-detail-body p,
.update-detail-body li {
  color: #34413a;
}

.update-detail-body a {
  color: var(--green);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.update-detail-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.simple-link.secondary {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.post-shell {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 340px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 78px) clamp(18px, 5vw, 72px);
}

.post-main {
  min-width: 0;
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.newsletter-top {
  display: grid;
  gap: 8px;
  padding: 18px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  text-align: center;
}

.newsletter-top.in-post {
  margin-bottom: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.newsletter-actions {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.newsletter-actions a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.newsletter-tagline {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.newsletter-top .entry-title {
  order: 2;
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.newsletter-meta-line {
  order: 3;
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.1;
}

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

.newsletter-section h2 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.12;
}

.newsletter-section p {
  margin-bottom: 16px;
  color: #444;
  line-height: 1.58;
}

.newsletter-section p:last-child {
  margin-bottom: 0;
}

.newsletter-section > h2:not(:first-child) {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.newsletter-items {
  display: grid;
  gap: 14px;
}

.newsletter-item {
  padding: 16px;
  border-radius: 8px;
}

.newsletter-item.has-thumb {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.newsletter-item.has-thumb > p:empty {
  display: none;
}

.newsletter-item.has-thumb > div {
  min-width: 0;
}

.newsletter-section.is-link-list .newsletter-items {
  gap: 8px;
}

.newsletter-section.is-link-list .newsletter-item {
  padding: 0;
  border: 0;
  background: transparent;
}

.newsletter-section.is-link-list .newsletter-item h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.newsletter-section.is-link-list .newsletter-item p {
  color: var(--muted);
}

.item-thumb {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 84px;
  border-radius: 7px;
  object-fit: cover;
  background: var(--shade);
}

.newsletter-thumb {
  display: block;
  overflow: hidden;
  width: 112px;
  height: 84px;
  border-radius: 7px;
  background: var(--shade);
  text-decoration: none;
}

.newsletter-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter-item h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.2;
}

.newsletter-item p {
  margin: 0;
  color: #444;
  line-height: 1.52;
}

.newsletter-item a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.item-time {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.simple-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.chip {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #333;
  font-size: 12px;
  font-weight: 800;
}

.post-shell .sidebar {
  position: sticky;
  top: 88px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.side-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.side-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.side-card p {
  margin: 0;
  color: #444;
  line-height: 1.5;
}

.related {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 72px) clamp(48px, 7vw, 86px);
}

.related h2 {
  margin: 0 0 16px;
  font-size: 30px;
}

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

.related-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 178px;
  padding: 16px;
  border-radius: 8px;
}

.related-thumb {
  display: block;
  overflow: hidden;
  width: 112px;
  height: 84px;
  border-radius: 7px;
  background: var(--shade);
}

.related-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-copy {
  min-width: 0;
}

.related-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.2;
}

.related-card p {
  margin: 0;
  color: #444;
  line-height: 1.5;
}

.related-source {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.related-card a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  nav .menu {
    gap: 16px;
  }

  .channels-hero,
  .channel-panel,
  .update-row,
  .post-shell {
    grid-template-columns: 1fr;
  }

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

  .related-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .newsletter-item.has-thumb {
    grid-template-columns: 1fr;
  }

  .post-shell .sidebar {
    position: static;
  }

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

@media (max-width: 620px) {
  nav .menu {
    flex-wrap: wrap;
    gap: 12px;
  }

  .channels-shell,
  .subscribe-layout,
  .update-detail-shell,
  .post-shell {
    width: min(100%, 430px);
    margin-right: auto;
    margin-left: auto;
  }

  .theme-grid,
  .email-row,
  .topic-add-row {
    grid-template-columns: 1fr;
  }

  .step-header,
  .preference-status,
  .review-bar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .channel-panel h2 {
    white-space: normal;
  }

  .newsletter-meta-line {
    font-size: clamp(22px, 7vw, 28px);
  }

  .related {
    width: min(100%, 430px);
    margin-right: auto;
    margin-left: auto;
  }

  .related-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
  }

  .related-thumb {
    width: 96px;
    height: 72px;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  nav {
    flex-wrap: wrap;
    gap: 10px 14px;
    line-height: 1.15;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .home-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
  }

  .final-cta .form-note {
    white-space: normal;
  }

  .form-row,
  .partner {
    align-items: stretch;
    flex-direction: column;
  }

  button,
  .partner-button {
    justify-content: center;
    width: 100%;
  }

  .hero-article {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
  }

  .hero-article img {
    height: 96px;
  }

  .hero-article-body {
    max-height: 96px;
  }

  .hero-article h2 {
    font-size: 18px;
  }

  .hero-article-summary {
    -webkit-line-clamp: 2;
  }

  .pillar-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .brief-item {
    grid-template-columns: 1fr;
  }

  .brief-row {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .brief-row > span {
    grid-column: 2;
    grid-row: 1;
  }

  .brief-row h3 {
    grid-column: 2;
  }

  .brief-row img {
    grid-row: 1 / span 2;
    width: 54px;
    height: 54px;
  }

  .more-stories {
    padding-top: 34px;
    text-align: left;
  }

  .more-stories > h2,
  .more-category {
    width: 100%;
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
  }

  .more-category h3 {
    text-align: left;
  }

  .more-list {
    grid-template-columns: minmax(0, 320px);
    justify-content: center;
    justify-items: stretch;
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
  }

  .more-item {
    width: min(320px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .more-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 10 / 7;
  }

  .brief-item img {
    height: 180px;
  }

  .lead-story img {
    height: 250px;
  }

  main > section,
  .page-hero,
  .grid-section,
  .split-page,
  .policy-page,
  .story-shell,
  .hero,
  .more-stories,
  .final-cta,
  .inline-subscribe,
  .content-board {
    width: min(100%, 430px);
    margin-right: auto;
    margin-left: auto;
  }

  h1 {
    font-size: clamp(36px, 10vw, 44px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .hero-samples,
  .more-list,
  .issue-list,
  .archive-grid,
  .story-grid,
  .pillar-grid,
  .contact-stack,
  .contact-form,
  .subscribe-form {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

/* Story section badge on homepage cards */
.story-section-badge {
  display: inline-block;
  margin: 4px 0 8px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(28, 70, 46, 0.08);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
}

.hero-article .story-section-badge {
  margin: 2px 0 6px;
}

.more-item .story-section-badge {
  margin: 6px 0 4px;
}

/* Issue detail story rows — match issue-list hover affordance */
.newsletter-item {
  scroll-margin-top: 96px;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.newsletter-item:hover,
.newsletter-item.is-highlight {
  border-color: #9bb89f;
  background: #f6faf6;
  box-shadow: 0 12px 30px rgba(28, 46, 36, 0.09);
  transform: translateY(-1px);
}

.newsletter-section.is-link-list .newsletter-item:hover,
.newsletter-section.is-link-list .newsletter-item.is-highlight {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  transform: none;
  padding-left: 10px;
  border-left: 3px solid var(--green);
}

/* Deep-link arrival highlight cleared on first user scroll (JS-driven). */
.newsletter-item.is-highlight {
  outline: none;
}

.side-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.side-card-meta .label {
  margin: 0;
}

/* Issue detail header — issue number eyebrow */
.newsletter-issue-no {
  margin: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.newsletter-issue-no--hero {
  order: 1;
  text-align: center;
}
