:root {
  --bg: #edf2f8;
  --bg-accent: #dfe8f3;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-strong: #ffffff;
  --surface-muted: #f6f9fc;
  --ink: #101828;
  --ink-soft: #344054;
  --muted: #667085;
  --line: #d8e1ec;
  --line-strong: #b8c7d8;
  --brand: #123b66;
  --brand-strong: #0d2f52;
  --brand-soft: #d7e6f5;
  --alert: #a1372f;
  --alert-soft: #f7e7e4;
  --shadow: 0 24px 64px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  font-family: "Segoe UI", "Avenir Next", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(18, 59, 102, 0.1), transparent 24rem),
    linear-gradient(180deg, #f7fafe 0%, var(--bg) 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  background-image:
    linear-gradient(rgba(18, 59, 102, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 59, 102, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
}

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

img {
  max-width: 100%;
}

.page-shell {
  width: min(1240px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 20px 0 44px;
}

.site-header,
.site-footer,
.hero-panel,
.headline-grid,
.secondary-block,
.secondary-grid,
.daily-digest,
.latest-block,
.category-block,
.category-page,
.article-page {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-header,
.site-footer {
  border-radius: 24px;
}

.site-header {
  margin-bottom: 18px;
  overflow: hidden;
}

.brand-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 20px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--line);
}

.brand-stack {
  display: grid;
  gap: 8px;
}

.brand {
  font: 700 clamp(2.2rem, 5vw, 4.8rem) / 0.92 "Georgia", "Iowan Old Style", serif;
  letter-spacing: 0.03em;
  color: var(--brand-strong);
}

.brand-domain {
  display: inline-block;
}

.brand-mark-registered {
  font-size: 0.26em;
  line-height: 1;
  vertical-align: top;
  margin-left: 0.06em;
}

.descriptor {
  margin: 0;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-note {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--surface-muted), #eef4fb);
  border: 1px solid var(--line);
}

.tagline,
.section-copy,
.muted,
.header-kicker {
  color: var(--muted);
}

.tagline,
.header-kicker {
  margin: 0;
  line-height: 1.5;
}

.header-lower {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 24px 18px;
}

.site-nav,
.social-nav,
.source-row,
.article-chips,
.lead-links,
.card-footer,
.article-actions,
.hero-metrics,
.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.site-nav a,
.source-badge,
.article-chip,
.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-muted);
}

.site-nav a {
  font-weight: 600;
  color: var(--ink-soft);
}

.site-nav a:hover,
.ghost-link:hover,
.source-badge:hover {
  color: var(--brand);
}

.social-nav {
  gap: 8px;
}

.social-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(18, 59, 102, 0.12);
  background: rgba(18, 59, 102, 0.08);
  color: var(--brand);
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.social-link svg {
  width: 16px;
  height: 16px;
  display: block;
}

.social-link:hover {
  background: rgba(18, 59, 102, 0.14);
  border-color: rgba(18, 59, 102, 0.18);
  transform: translateY(-1px);
}

.social-link[data-network="telegram"]:hover {
  color: #229ed9;
}

.social-link[data-network="facebook"]:hover {
  color: #1877f2;
}

.social-link[data-network="linkedin"]:hover {
  color: #0a66c2;
}

.social-fallback {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero-panel {
  padding: 18px 22px;
  border-radius: 28px;
}

.hero-copy h1,
.section-head h2,
.category-page h1,
.article-page h1,
.lead-story h2,
.stream-card h3,
.compact-card h3 {
  font-family: "Georgia", "Iowan Old Style", serif;
}

.hero-label {
  margin: 0;
  color: var(--alert);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-muted);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.status-pill-live {
  background: var(--brand-soft);
  border-color: rgba(18, 59, 102, 0.18);
  color: var(--brand-strong);
}

.hero-panel-home {
  display: block;
}

.status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.status-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.status-group-signals {
  justify-content: flex-end;
}

.digest-card {
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #f9fbfe, #f2f6fb);
}

.section-head-tight {
  margin-bottom: 12px;
}

.section-head-tight > div {
  min-width: 0;
}

.digest-card h2 {
  margin: 4px 0 0;
  font-size: 1.55rem;
  line-height: 1.05;
}

.digest-link-row {
  margin: 10px 0 0;
}

.digest-link {
  display: inline-flex;
  align-items: center;
  color: var(--brand);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.25;
  white-space: normal;
}

.digest-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.digest-item {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.digest-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.digest-item a {
  font-family: "Georgia", "Iowan Old Style", serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.2;
}

.digest-item span {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 600;
}

.summary-section {
  margin-top: 24px;
}

.summary-story-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.summary-story {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface-muted);
}

.summary-story-head {
  display: grid;
  gap: 6px;
}

.summary-story-head a {
  font-family: "Georgia", "Iowan Old Style", serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.2;
}

.summary-story-head span {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 600;
}

.summary-story p {
  margin: 12px 0 0;
}

.summary-page .signal-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.topic-hub-intro {
  display: grid;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.topic-current-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.topic-current-item {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface-muted), #fbfdff);
}

.topic-current-item a {
  display: grid;
  gap: 8px;
}

.topic-current-item strong {
  font-family: "Georgia", "Iowan Old Style", serif;
  font-size: 1.05rem;
  line-height: 1.2;
}

.topic-current-item span {
  color: var(--ink-soft);
}

.topic-current-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 600;
}

.topic-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.topic-hub-card {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface-muted), #fbfdff);
}

.topic-hub-card h2,
.topic-hub-card h3 {
  margin: 6px 0 0;
  font-family: "Georgia", "Iowan Old Style", serif;
  line-height: 1.12;
}

.topic-hub-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.topic-hub-card-large {
  min-height: 100%;
}

.topic-hub-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.topic-event-card p {
  margin-bottom: 0;
}

.topic-context {
  display: grid;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.topic-watch-list {
  padding-left: 20px;
}

.metric {
  min-width: 180px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-muted);
}

.metric strong,
.signal-value {
  display: block;
  color: var(--brand-strong);
  font-size: 1.16rem;
  margin-top: 4px;
}

.metric-label,
.signal-text,
.section-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.source-row {
  margin-top: 18px;
}

.source-row-details {
  margin-top: 14px;
}

.signal-label,
.eyebrow,
.lead-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
}

.eyebrow,
.lead-kicker {
  color: var(--alert);
}

.headline-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.9fr);
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 28px;
}

.category-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.85fr);
  gap: 18px;
  margin-top: 18px;
}

.headline-side,
.stream-grid {
  display: grid;
  gap: 16px;
}

.secondary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 28px;
}

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

.lead-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: 18px;
}

.headline-lead,
.headline-side,
.lead-story,
.lead-body,
.compact-card {
  min-width: 0;
}

.headline-lead {
  overflow: hidden;
}

.headline-side {
  max-width: 420px;
  width: 100%;
}

.headline-digest-side {
  align-content: start;
}

.lead-image {
  width: 100%;
  min-height: 360px;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  border-radius: 22px;
  background-color: #d4dfeb;
  border: 1px solid var(--line);
}

.lead-image-fallback {
  display: block;
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(18, 59, 102, 0.24), rgba(215, 230, 245, 0.8)),
    linear-gradient(45deg, #eef4fb, #dbe6f1);
}

.lead-body,
.compact-card,
.stream-card,
.category-page,
.article-page,
.daily-digest,
.latest-block,
.category-block {
  padding: 22px;
}

.lead-body {
  display: grid;
  align-content: start;
}

.lead-story h2,
.article-page h1 {
  margin: 10px 0 12px;
  font-size: clamp(1.7rem, 2.35vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.lead-story h2 {
  max-width: 12ch;
  word-break: break-word;
}

.lead-summary,
.article-dek {
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.72;
}

.compact-card h3,
.stream-card h3 {
  margin: 10px 0 12px;
  font-size: 1.38rem;
  line-height: 1.14;
  letter-spacing: -0.01em;
}

.compact-card,
.stream-card {
  display: grid;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-strong);
}

.category-page .compact-card,
.category-page .stream-card {
  min-height: 100%;
}

.stream-card-placeholder {
  background: linear-gradient(180deg, var(--surface-muted), #fbfdff);
}

.daily-digest,
.latest-block,
.secondary-block,
.category-block,
.category-page,
.article-page {
  margin-top: 18px;
  border-radius: 28px;
}

.secondary-block {
  padding: 22px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 14px;
}

.section-head h2,
.category-page h1 {
  margin: 4px 0 0;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: 1.02;
}

.section-head a,
.ghost-link {
  color: var(--brand);
  font-weight: 600;
}

.system-details {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.system-details summary {
  cursor: pointer;
  color: var(--brand);
  font-weight: 700;
  list-style: none;
}

.system-details summary::-webkit-details-marker {
  display: none;
}

.system-details-grid,
.health-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.system-details-link {
  margin: 14px 0 0;
}

.system-line {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding: 16px 24px 2px;
  color: var(--muted);
}

.system-line p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.system-line strong {
  color: var(--ink);
  font-weight: 700;
}

.health-json {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.88rem;
  line-height: 1.65;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
}

.meta-item,
.card-footer span,
.card-footer a {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.meta-item {
  display: inline-flex;
  align-items: center;
}

.meta-source-link {
  text-decoration: none;
}

.meta-source-link:hover,
.meta-source-link:focus-visible {
  color: var(--brand);
  text-decoration: underline;
}

.meta-line .meta-item + .meta-item::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  margin-right: 8px;
  background: var(--line-strong);
}

.meta-live {
  color: var(--brand);
}

.event-trace-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.event-trace-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(18, 59, 102, 0.08);
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.card-footer {
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-muted);
  color: var(--ink-soft);
  font-weight: 700;
}

.page-link.is-current {
  background: linear-gradient(135deg, var(--brand), #225387);
  border-color: transparent;
  color: #f8fbff;
}

.page-link-nav {
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--brand), #225387);
  color: #f8fbff;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(18, 59, 102, 0.18);
}

.article-image {
  width: 100%;
  border-radius: 22px;
  margin: 20px 0 0;
  display: block;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  border: 1px solid var(--line);
}

.article-image-credit {
  margin: 10px 4px 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.article-summary {
  margin-top: 18px;
  font-size: 1.08rem;
  line-height: 1.78;
  color: var(--ink-soft);
}

.article-story {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.article-story .section-head {
  margin-bottom: 12px;
}

.article-prose {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.82;
}

.article-prose p {
  margin: 0;
}

.article-prose p + p {
  margin-top: 14px;
}

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

.article-fact {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-muted);
}

.article-fact-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-fact strong {
  color: var(--ink);
  font-size: 0.97rem;
  line-height: 1.5;
}

.article-cluster {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fafcff, #f3f7fb);
}

.article-cluster .section-head {
  margin-bottom: 14px;
}

.article-cluster-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cluster-link {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.cluster-link:hover {
  color: var(--brand);
  border-color: rgba(19, 65, 110, 0.25);
}

.signal-layer {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.signal-card {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-muted);
}

.signal-card-tldr {
  background: linear-gradient(180deg, #f9fbfe, #f2f6fb);
}

.signal-eyebrow {
  margin: 0 0 8px;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
}

.signal-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.signal-list-article {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  display: grid;
  gap: 8px;
  line-height: 1.65;
}

.article-related {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.article-related .section-head {
  margin-bottom: 18px;
}

.source-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-muted);
  color: var(--muted);
  line-height: 1.65;
}

.source-note .source-secondary {
  display: inline-block;
  margin-left: 6px;
}

.meta-secondary {
  color: var(--muted);
  font-size: 0.95em;
}

.static-page {
  margin-top: 18px;
}

.static-copy {
  max-width: 72ch;
  color: var(--ink-soft);
  line-height: 1.75;
}

.static-lede {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.8;
}

.static-section + .static-section {
  margin-top: 24px;
}

.static-section h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.2;
}

.static-copy p {
  margin: 0 0 16px;
}

.static-list {
  margin: 0 0 16px 18px;
  padding: 0;
}

.static-list li {
  margin: 0 0 10px;
}

.site-footer {
  margin-top: 24px;
  padding: 18px 24px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-left {
  color: var(--muted);
}

.trademark-note {
  white-space: nowrap;
}

.footer-center,
.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-center a,
.footer-right a {
  color: var(--muted);
  text-decoration: none;
}

.footer-center a:hover,
.footer-right a:hover {
  color: var(--brand);
}

@media (max-width: 960px) {
  .brand-row,
  .headline-grid,
  .secondary-grid,
  .category-hero-grid,
  .lead-story,
  .stream-grid {
    grid-template-columns: 1fr;
  }

  .system-details-grid,
  .health-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-lower,
  .section-head,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .status-strip,
  .status-group,
  .status-group-signals {
    justify-content: flex-start;
  }

  .status-group,
  .status-group-signals {
    width: 100%;
  }

  .trademark-note {
    white-space: normal;
  }

  .section-head-tight {
    align-items: flex-start;
  }

  .lead-image {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100vw - 18px, 1240px);
    padding-top: 12px;
  }

  .site-header,
  .site-footer,
  .hero-panel,
  .headline-grid,
  .secondary-block,
  .secondary-grid,
  .latest-block,
  .category-block,
  .category-page,
  .article-page,
  .system-line {
    border-radius: 20px;
  }

  .brand-row,
  .header-lower,
  .lead-body,
  .compact-card,
  .stream-card,
  .latest-block,
  .category-block,
  .category-page,
  .article-page,
  .site-footer,
  .system-line {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand {
    font-size: 2.5rem;
  }

  .article-page h1 {
    font-size: 2rem;
  }

  .compact-card h3,
  .stream-card h3 {
    font-size: 1.2rem;
  }

  .tagline,
  .header-kicker,
  .digest-item span,
  .summary-story-head span,
  .topic-current-meta,
  .meta-item,
  .card-footer span,
  .card-footer a,
  .metric-label,
  .signal-text,
  .section-note {
    color: #56657a;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .status-pill {
    color: #435168;
    font-size: 0.95rem;
  }

  .lead-summary,
  .article-dek,
  .article-summary,
  .article-prose,
  .topic-hub-intro,
  .topic-context,
  .topic-current-item span,
  .signal-copy,
  .source-note,
  .summary-story p,
  .compact-card p,
  .stream-card p {
    color: #445062;
  }

  .topic-hub-intro,
  .topic-context,
  .topic-current-item span,
  .summary-story p,
  .compact-card p,
  .stream-card p {
    line-height: 1.62;
  }

  .article-fact-grid {
    grid-template-columns: 1fr;
  }

  .topic-current-item span {
    font-size: 1rem;
  }

  .site-footer,
  .footer-left,
  .footer-center a,
  .footer-right a {
    color: #586474;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .topic-hub-page > .summary-section:first-of-type {
    padding: 14px;
    border: 1px solid #dfe7f1;
    border-radius: 16px;
    background: linear-gradient(180deg, #f7fafe, #f3f7fb);
  }

  .topic-hub-page > .summary-section:first-of-type .section-head {
    margin-bottom: 12px;
  }

  .topic-hub-page > .summary-section .section-head h2 {
    font-size: 1.5rem;
    line-height: 1.08;
    color: #243041;
  }

  .topic-hub-page > .summary-section + .summary-section {
    margin-top: 22px;
  }

  .site-nav {
    gap: 10px;
  }

  .system-details-grid,
  .health-strip {
    grid-template-columns: 1fr;
  }

  .footer-center,
  .footer-right {
    width: 100%;
  }
}
