.reader-page {
  max-width: 1060px;
  padding: clamp(64px, 10vw, 118px) 0 clamp(88px, 12vw, 140px);
}

.reader-page h1 {
  max-width: 930px;
  font-size: clamp(3.25rem, 7vw, 6.7rem);
  overflow-wrap: anywhere;
}

.reader-lede {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  line-height: 1.75;
}

.notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin: 34px 0 0;
  padding: 20px 22px;
  border: 1px solid var(--green);
  border-radius: 3px;
  background: rgba(40, 180, 126, 0.08);
}

.notice strong {
  color: var(--green);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.notice p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 20px;
  margin-top: 64px;
}

.coverage-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.38);
}

.coverage-card:first-child {
  box-shadow: 0 30px 80px rgba(38, 47, 42, 0.07);
}

.coverage-card h2 {
  margin-top: 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.coverage-card h3 {
  margin: 18px 0 0;
  font-size: 1.3rem;
}

.coverage-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.coverage-card .card-link,
.related-card {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 28px;
  color: var(--green);
  font-weight: 700;
  text-underline-offset: 0.18em;
}

.empty-state {
  margin-top: 28px;
  padding: 22px;
  border-left: 3px solid var(--green-bright);
  background: rgba(255, 255, 255, 0.3);
}

.empty-state h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.empty-state p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.article-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  gap: clamp(46px, 7vw, 92px);
  align-items: start;
}

.article-header {
  grid-column: 1 / -1;
}

.article-header h1 {
  max-width: 1000px;
}

.article-deck {
  max-width: 810px;
  margin: 30px 0 0;
  color: var(--muted);
  font-family: "Newsreader", serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.4;
}

.evidence-summary {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 16px 0 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.evidence-field {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.evidence-field:last-child {
  border-right: 0;
}

.field-label {
  display: block;
  margin-bottom: 9px;
  color: var(--green);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.evidence-field strong {
  font-size: 0.92rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.article-body {
  min-width: 0;
}

.story-section {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.story-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.story-number {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-section h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.story-section p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.article-rail {
  position: sticky;
  top: 30px;
  display: grid;
  gap: 18px;
}

.rail-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.36);
}

.rail-card h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rail-card p,
.rail-card li {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.rail-card p {
  margin: 14px 0 0;
}

.rail-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 18px;
}

.article-notes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 50px;
  border-top: 1px solid var(--line);
}

.article-note {
  padding: 24px;
  border: 1px solid var(--line);
}

.article-note h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
}

.article-note p,
.article-note li {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.article-note p {
  margin: 14px 0 0;
}

.article-note ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.recirculation {
  grid-column: 1 / -1;
  padding-top: 42px;
}

.recirculation h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.related-card {
  width: 100%;
  min-height: 120px;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
}

.reader-page a:focus-visible,
.homepage-feature a:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
  border-radius: 2px;
}

.homepage-feature {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

.homepage-feature p {
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.homepage-feature-card {
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
}

.homepage-feature-card h3 {
  margin: 16px 0 0;
  font-family: "Newsreader", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.05;
}

.homepage-feature-card a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  margin-top: 24px;
  color: var(--green);
  font-weight: 700;
  text-underline-offset: 0.18em;
}

@media (max-width: 800px) {
  .coverage-grid,
  .article-page,
  .homepage-feature {
    grid-template-columns: 1fr;
  }

  .article-header,
  .evidence-summary,
  .article-notes,
  .recirculation {
    grid-column: auto;
  }

  .article-rail {
    position: static;
  }
}

@media (max-width: 620px) {
  .notice,
  .evidence-summary,
  .article-notes,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .notice {
    gap: 8px;
  }

  .evidence-field {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .evidence-field:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 360px) {
  .reader-page h1 {
    font-size: clamp(2.7rem, 14vw, 3rem);
    line-height: 0.98;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reader-page *,
  .homepage-feature * {
    scroll-behavior: auto;
    transition: none;
  }
}
