:root {
  color-scheme: light;
  --background: #f7f8f7;
  --surface: #ffffff;
  --surface-slate: #f3f5f4;
  --surface-hover: #edf1ef;
  --foreground: #252525;
  --muted: #67645e;
  --subtle: #948f86;
  --border: rgba(37, 37, 37, 0.12);
  --border-strong: rgba(37, 37, 37, 0.22);
  --primary: #1f6f64;
  --primary-hover: #174f48;
  --primary-soft: #edf6f3;
  --accent: #b85c2b;
  --accent-soft: #fbefe8;
  --success: #15803d;
  --success-soft: #edf8ef;
  --warning: #a16207;
  --warning-soft: #fffbeb;
  --danger: #b42318;
  --danger-soft: #fff4f1;
  --cyan: #1d6b82;
  --cyan-soft: #ecfeff;
  --paper: #fffefa;
  --shadow: 0 8px 18px rgba(37, 37, 37, 0.06);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--background);
  color: var(--foreground);
}

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

button,
input {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  padding: 0 28px;
  border-bottom: 1px solid var(--border);
  background: rgba(247, 248, 247, 0.96);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 8px;
  box-shadow: none;
}

.brand strong {
  display: block;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.topnav a {
  border-radius: 6px;
  padding: 7px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.topnav a:hover {
  background: var(--surface-hover);
  color: var(--foreground);
}

.topnav a:focus-visible,
.language-button:focus-visible,
.topic-shortcut:focus-visible,
.issue-card:focus-visible,
.button:focus-visible,
.source-list a:focus-visible,
.static-card:focus-visible {
  outline: 3px solid rgba(31, 111, 100, 0.2);
  outline-offset: 2px;
}

.updated-pill,
.draft-badge,
.status-chip {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
}

.updated-pill {
  padding: 8px 11px;
}

.draft-badge,
.status-chip {
  padding: 6px 9px;
}

.app-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 28px 20px 40px;
}

.sidebar {
  order: 2;
  position: static;
  align-self: start;
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 16px;
}

.workspace {
  order: 1;
  display: grid;
  gap: 18px;
}

.language-panel,
.official-card,
.topic-nav,
.hero-panel,
.detail-panel,
.resource-band,
.sources-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: none;
}

.language-panel,
.official-card,
.topic-nav {
  padding: 18px;
}

.language-panel {
  grid-column: 1 / -1;
}

.topic-nav {
  grid-column: span 1;
}

.panel-heading,
.detail-header,
.sources-panel {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.language-list,
#topic-shortcuts,
.quality-grid,
.source-list {
  display: grid;
  gap: 8px;
}

.language-list {
  margin-top: 14px;
}

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

.sidebar #topic-shortcuts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.language-button,
.topic-shortcut,
.issue-card,
.button,
.primary-link,
.source-list a {
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.language-button,
.topic-shortcut {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 9px;
  text-align: left;
  cursor: pointer;
}

.sidebar .topic-shortcut {
  min-height: 52px;
}

.language-button:hover,
.topic-shortcut:hover,
.language-button.active,
.topic-shortcut.active {
  border-color: rgba(31, 111, 100, 0.28);
  background: var(--primary-soft);
}

.language-code {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: var(--surface-hover);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.language-name {
  display: block;
  overflow-wrap: anywhere;
  font-size: 13px;
  font-weight: 750;
}

.language-native {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.official-card h2 {
  margin: 8px 0 4px;
  font-size: 34px;
  letter-spacing: 0;
}

.official-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.primary-link {
  display: inline-flex;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.primary-link:hover {
  color: var(--primary-hover);
}

#topic-shortcuts {
  margin-top: 12px;
}

.topic-shortcut {
  grid-template-columns: 1fr auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.topic-shortcut span:last-child {
  color: var(--subtle);
}

.hero-panel {
  display: grid;
  grid-template-areas:
    "copy media"
    "tool media";
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.68fr);
  gap: 30px;
  align-items: stretch;
  padding: 30px;
  background: var(--surface);
  border-top: 3px solid var(--accent);
}

.hero-copy {
  grid-area: copy;
}

.hero-copy h1 {
  max-width: 740px;
  margin: 8px 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1.08;
}

.hero-copy p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 720px;
  margin-top: 22px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-item {
  min-width: 0;
  border-right: 1px solid var(--border);
  padding: 12px 14px 12px 0;
}

.trust-item + .trust-item {
  padding-left: 14px;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
}

.trust-item span {
  display: block;
  margin-top: 4px;
  color: var(--foreground);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.hero-media {
  grid-area: media;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-slate);
  box-shadow: none;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
}

.hero-tool {
  grid-area: tool;
  display: grid;
  gap: 8px;
  align-self: end;
}

.hero-tool label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

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

.search-row input {
  width: 100%;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--foreground);
  padding: 0 12px;
  outline: none;
}

.search-row input:focus {
  border-color: rgba(31, 111, 100, 0.5);
  box-shadow: 0 0 0 3px rgba(31, 111, 100, 0.12);
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}

.icon-button:hover {
  background: var(--surface-hover);
  color: var(--foreground);
}

.emergency-strip {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(180, 35, 24, 0.18);
  border-radius: var(--radius);
  background: var(--danger-soft);
}

.emergency-strip strong {
  display: block;
  margin-top: 4px;
  color: var(--danger);
  font-size: 15px;
}

.emergency-strip p {
  margin: 0;
  color: #7f1d1d;
  font-size: 13px;
  line-height: 1.45;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.button-secondary {
  border-color: rgba(180, 35, 24, 0.22);
  background: var(--surface);
  color: var(--danger);
}

.button-secondary:hover {
  border-color: rgba(180, 35, 24, 0.35);
  background: var(--danger-soft);
}

.section-intro {
  max-width: 820px;
  padding: 4px 0 0;
}

.section-intro h2 {
  margin: 8px 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
}

.section-intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  align-items: start;
  gap: 16px;
}

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

.issue-card {
  display: grid;
  gap: 10px;
  min-height: 174px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
  text-align: left;
  cursor: pointer;
}

.issue-card:hover,
.issue-card.active {
  border-color: rgba(31, 111, 100, 0.34);
  box-shadow: none;
  transform: none;
}

.issue-card.active {
  background: var(--primary-soft);
}

.issue-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.issue-card h2 {
  margin: 0;
  font-size: 17px;
  letter-spacing: 0;
  line-height: 1.3;
}

.issue-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.urgency {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  height: 26px;
  border-radius: 6px;
  padding: 0 9px;
  font-size: 11px;
  font-weight: 800;
}

.urgency.high {
  background: var(--danger-soft);
  color: var(--danger);
}

.urgency.medium {
  background: var(--warning-soft);
  color: var(--warning);
}

.urgency.standard {
  background: var(--cyan-soft);
  color: var(--cyan);
}

.issue-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.issue-meta span {
  border-radius: 5px;
  background: var(--surface-hover);
  color: var(--muted);
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 700;
}

.detail-panel {
  position: static;
  overflow: hidden;
  border-top: 3px solid var(--primary);
}

.detail-header {
  display: grid;
  gap: 10px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.detail-header h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 0;
  line-height: 1.12;
}

.detail-header p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.detail-body {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.detail-body h3 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
}

.detail-body ol,
.detail-body ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: var(--foreground);
  font-size: 14px;
  line-height: 1.55;
}

.script-box {
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: var(--radius);
  background: var(--primary-soft);
  padding: 14px;
}

.script-box p {
  margin: 0;
  color: #134e4a;
  font-size: 14px;
  line-height: 1.55;
}

.resource-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 22px;
  padding: 24px;
}

.resource-band h2,
.sources-panel h2 {
  margin: 8px 0;
  font-size: 24px;
  line-height: 1.2;
}

.resource-band p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.quality-item {
  min-height: 112px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-slate);
  padding: 14px;
}

.quality-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.quality-item p {
  font-size: 13px;
}

.sources-panel {
  align-items: start;
  padding: 20px;
}

.source-list a {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-slate);
  padding: 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.source-list a:hover {
  border-color: rgba(15, 118, 110, 0.28);
  background: var(--primary-soft);
}

.no-results {
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
  color: var(--muted);
  font-size: 14px;
}

.static-topbar {
  grid-template-columns: minmax(210px, 1fr) auto auto;
}

.static-lang-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.static-lang-nav a {
  display: inline-flex;
  min-width: 38px;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 7px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.static-lang-nav a[aria-current="page"] {
  border-color: rgba(31, 111, 100, 0.24);
  background: var(--primary-soft);
  color: var(--primary);
}

.static-shell {
  display: grid;
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 22px;
}

.static-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  border-top: 3px solid var(--accent);
  padding: 30px;
}

.static-hero h1,
.article-header h1 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: 0;
}

.static-hero p,
.article-header p,
.article-block p,
.side-card p {
  color: var(--muted);
  line-height: 1.65;
}

.static-hero img,
.article-side img {
  display: block;
  width: 100%;
  min-height: 260px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  object-fit: cover;
}

.static-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.static-trust-row,
.keyword-strip,
.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.static-trust-row {
  margin-top: 18px;
}

.static-trust-row span,
.keyword-strip a,
.article-meta-row span {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  color: var(--muted);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.keyword-strip {
  margin-top: 14px;
}

.keyword-strip a {
  color: var(--primary);
  transition:
    background 160ms ease,
    border-color 160ms ease;
}

.keyword-strip a:hover {
  border-color: rgba(31, 111, 100, 0.28);
  background: var(--primary-soft);
}

.static-actions .button {
  background: var(--primary);
  color: white;
}

.static-actions .button-secondary {
  border-color: rgba(180, 35, 24, 0.22);
  background: var(--surface);
  color: var(--danger);
}

.static-section,
.article-main,
.article-side,
.static-sources {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.static-section h1 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.static-section p {
  max-width: 840px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.static-section {
  padding: 24px;
}

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

.static-section-heading h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

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

.static-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  min-height: 170px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-slate);
  padding: 18px;
}

.static-card:hover {
  border-color: rgba(31, 111, 100, 0.26);
  background: var(--primary-soft);
}

.static-card-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.static-card-top strong {
  line-height: 1.35;
}

.static-card-top span {
  height: max-content;
  border-radius: 6px;
  background: var(--surface);
  color: var(--primary);
  padding: 5px 7px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.static-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.static-emergency {
  margin: 0;
}

.static-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 18px;
}

.static-sources .eyebrow {
  margin: 0 10px 0 0;
}

.static-sources a {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-slate);
  padding: 7px 10px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.article-shell {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.article-main,
.article-side {
  padding: 20px;
}

.article-main {
  display: grid;
  gap: 18px;
  background: var(--paper);
  border-top: 3px solid var(--accent);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--primary);
}

.article-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
}

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

.article-meta-row {
  margin-top: 14px;
}

.article-note {
  border: 1px solid rgba(31, 111, 100, 0.16);
  border-radius: var(--radius);
  background: var(--primary-soft);
  padding: 14px;
}

.article-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--foreground);
  font-size: 14px;
}

.article-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.tag-list span {
  border: 1px solid rgba(31, 111, 100, 0.18);
  border-radius: 6px;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 800;
}

.article-block {
  display: grid;
  gap: 8px;
}

.article-block h2,
.article-script h2 {
  margin: 0;
  font-size: 18px;
}

.article-block ol,
.article-block ul {
  margin: 0;
  padding-left: 22px;
  color: var(--foreground);
  line-height: 1.7;
}

.article-script {
  margin: 0;
}

.article-side {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 12px;
  background: transparent;
  border: 0;
  padding: 0;
}

.side-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-slate);
  padding: 14px;
}

.side-links {
  display: grid;
  gap: 7px;
}

.side-links a {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .app-shell,
  .content-grid,
  .hero-panel,
  .resource-band,
  .static-hero,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-areas:
      "copy"
      "media"
      "tool";
  }

  .sidebar,
  .detail-panel,
  .article-side {
    position: static;
  }

  .workspace {
    order: 1;
  }

  .sidebar {
    order: 2;
    grid-template-columns: 1fr;
  }

  .language-panel,
  .topic-nav {
    grid-column: auto;
  }

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

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

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

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

  #topic-shortcuts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .topbar,
  .static-topbar {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 16px;
  }

  .topnav,
  .updated-pill {
    display: none;
  }

  .app-shell,
  .static-shell {
    padding: 12px;
  }

  .language-list,
  #topic-shortcuts,
  .hero-trust,
  .quality-grid,
  .static-grid {
    grid-template-columns: 1fr;
  }

  .sidebar .language-list,
  .sidebar #topic-shortcuts {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .static-hero,
  .article-main,
  .article-side,
  .static-section {
    padding: 18px;
  }

  .hero-copy h1,
  .static-hero h1,
  .article-header h1 {
    font-size: 32px;
  }

  .emergency-strip,
  .static-emergency {
    grid-template-columns: 1fr;
  }

  .content-grid {
    gap: 12px;
  }

  .issue-card,
  .detail-body,
  .detail-header,
  .resource-band,
  .sources-panel {
    padding: 16px;
  }
}
