/* Editorial Hub — reader site */
:root {
  --eh-bg: #f6f3ee;
  --eh-paper: #fffcf7;
  --eh-ink: #121212;
  --eh-muted: #5c5c5c;
  --eh-line: #d9d2c5;
  --eh-signal: #bb1919;
  --eh-signal-dark: #8f1212;
  --eh-link: #1a0dab;
  --eh-chip: #ebe4d8;
  --eh-shadow: 0 18px 40px rgba(18, 18, 18, 0.08);
  --eh-max: 1120px;
  --eh-serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --eh-sans: "Figtree", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--eh-ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(187, 25, 25, 0.08), transparent 55%),
    linear-gradient(180deg, #fffdf9 0%, var(--eh-bg) 240px);
  font-family: var(--eh-sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--eh-signal-dark); }
img { max-width: 100%; display: block; }

.eh-wrap {
  width: 100%;
  max-width: var(--eh-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
  box-sizing: border-box;
}

.eh-topbar {
  background: var(--eh-ink);
  color: #f5f5f5;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
.eh-topbar .eh-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
}
.eh-topbar a { color: #f5f5f5; opacity: 0.85; }
.eh-topbar a:hover { opacity: 1; color: #fff; }

.eh-masthead {
  border-bottom: 4px solid var(--eh-signal);
  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.eh-masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}
.eh-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.eh-brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.4rem;
  background: var(--eh-signal);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  flex: 0 0 auto;
  overflow: hidden;
}
.eh-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eh-brand-text { min-width: 0; }
.eh-brand-name {
  font-family: var(--eh-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.eh-brand-tag {
  color: var(--eh-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.15rem;
}
.eh-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
}
.eh-nav a {
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}
.eh-nav a:hover,
.eh-nav a[aria-current="page"] {
  border-bottom-color: var(--eh-signal);
  color: var(--eh-ink);
}

.eh-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}
.eh-lead {
  background: var(--eh-paper);
  border: 1px solid var(--eh-line);
  box-shadow: var(--eh-shadow);
  padding: clamp(1.25rem, 3vw, 2rem);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.eh-lead::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(187, 25, 25, 0.12), transparent 42%),
    linear-gradient(180deg, transparent 30%, rgba(18, 18, 18, 0.04));
  pointer-events: none;
}
.eh-lead > * { position: relative; }
.eh-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eh-signal);
  margin-bottom: 0.75rem;
}
.eh-lead h1,
.eh-section-title,
.eh-article-title {
  font-family: var(--eh-serif);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0;
}
.eh-lead h1 { font-size: clamp(1.8rem, 4vw, 3rem); max-width: 18ch; }
.eh-lead p {
  margin: 0.9rem 0 0;
  color: var(--eh-muted);
  font-size: 1.05rem;
  max-width: 42ch;
}
.eh-meta {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--eh-muted);
}
.eh-side-stack { display: grid; gap: 0.85rem; }
.eh-side-card {
  background: var(--eh-paper);
  border: 1px solid var(--eh-line);
  padding: 1rem 1.1rem;
}
.eh-side-card h2 {
  font-family: var(--eh-serif);
  font-size: 1.15rem;
  line-height: 1.25;
  margin: 0.35rem 0 0;
  letter-spacing: -0.02em;
}
.eh-side-card p {
  margin: 0.45rem 0 0;
  color: var(--eh-muted);
  font-size: 0.92rem;
}

.eh-section { margin: 2.25rem 0; }
.eh-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-top: 2px solid var(--eh-ink);
  padding-top: 0.65rem;
  margin-bottom: 1rem;
}
.eh-section-title { font-size: 1.35rem; }
.eh-section-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--eh-signal);
}
.eh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.eh-card {
  background: var(--eh-paper);
  border: 1px solid var(--eh-line);
  padding: 1rem 1.05rem 1.15rem;
  height: 100%;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.eh-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--eh-shadow);
}
.eh-card h3 {
  font-family: var(--eh-serif);
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 0.4rem 0 0;
  letter-spacing: -0.02em;
}
.eh-card p {
  margin: 0.55rem 0 0;
  color: var(--eh-muted);
  font-size: 0.92rem;
}
.eh-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--eh-chip);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--eh-ink);
}

.eh-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px) 280px;
  gap: 2rem;
  margin: 1.5rem 0 3rem;
  align-items: start;
}
.eh-article-main {
  background: var(--eh-paper);
  border: 1px solid var(--eh-line);
  box-shadow: var(--eh-shadow);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  max-width: 100%;
  overflow-wrap: anywhere;
}
.eh-article-title {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  margin: 0.35rem 0 0.75rem;
}
.eh-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  color: var(--eh-muted);
  font-size: 0.92rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--eh-line);
  margin-bottom: 1.35rem;
}
.eh-byline strong { color: var(--eh-ink); }
.eh-prose {
  font-family: var(--eh-serif);
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 68ch;
}
.eh-prose h2, .eh-prose h3 {
  font-family: var(--eh-serif);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 1.75rem 0 0.7rem;
}
.eh-prose p { margin: 0 0 1rem; }
.eh-prose a { color: var(--eh-link); text-decoration: underline; text-underline-offset: 2px; }
.eh-prose ul, .eh-prose ol { padding-left: 1.2rem; }
.eh-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.25rem 0 0;
}
.eh-contact-card {
  border: 1px solid var(--eh-line);
  background: #fff;
  padding: 1rem 1.1rem;
}
.eh-contact-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--eh-serif);
  font-size: 1.15rem;
}
.eh-contact-card p {
  margin: 0;
  color: var(--eh-muted);
  font-size: 0.92rem;
}
.eh-contact-card a { color: var(--eh-signal-dark); font-weight: 700; }
@media (max-width: 700px) {
  .eh-contact-grid { grid-template-columns: 1fr; }
}
.eh-disclosure {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--eh-line);
  font-family: var(--eh-sans);
  font-size: 0.85rem;
  color: var(--eh-muted);
}
.eh-rail {
  position: sticky;
  top: 5.5rem;
  display: grid;
  gap: 0.85rem;
}
.eh-rail-box {
  background: var(--eh-paper);
  border: 1px solid var(--eh-line);
  padding: 1rem;
}
.eh-rail-box h2 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 0.75rem;
  color: var(--eh-muted);
}
.eh-rail-list { display: grid; gap: 0.75rem; }
.eh-rail-list a {
  font-family: var(--eh-serif);
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.eh-page-hero {
  padding: 2rem 0 1rem;
  border-bottom: 1px solid var(--eh-line);
  margin-bottom: 1.5rem;
}
.eh-page-hero h1 {
  font-family: var(--eh-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0.25rem 0 0.5rem;
  letter-spacing: -0.03em;
}
.eh-page-hero p { margin: 0; color: var(--eh-muted); max-width: 55ch; }

.eh-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.82rem;
  color: var(--eh-muted);
  margin: 1rem auto 0;
}
.eh-breadcrumbs a:hover { color: var(--eh-signal-dark); }

.eh-faq {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 2px solid var(--eh-ink);
}
.eh-faq h2 { margin-top: 0; }
.eh-faq h3 {
  font-size: 1.15rem;
  margin: 1.25rem 0 0.4rem;
}
.eh-cta-box {
  margin: 1.5rem 0;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--eh-line);
  background: linear-gradient(135deg, rgba(187,25,25,.06), transparent 55%);
}
.eh-cta-box a { color: var(--eh-signal-dark); font-weight: 700; }

.eh-footer {
  margin-top: 3rem;
  background: var(--eh-ink);
  color: #ddd;
  padding: 2rem 0 2.5rem;
}
.eh-footer a { color: #eee; }
.eh-footer a:hover { color: #fff; }
.eh-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
}
.eh-footer h2 {
  font-family: var(--eh-serif);
  color: #fff;
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}
.eh-footer p, .eh-footer li { font-size: 0.9rem; color: #bdbdbd; }
.eh-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem; }
.eh-footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
  font-size: 0.8rem;
  color: #999;
}

@media (max-width: 900px) {
  .eh-hero, .eh-article-layout, .eh-footer-grid, .eh-grid {
    grid-template-columns: 1fr;
  }
  .eh-rail { position: static; }
  .eh-nav { display: none; }
}
