/* ═══════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-1);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--section-color); }

/* Film grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9000;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */
@keyframes up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes scrollL {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }


/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 800;
  height: var(--nav-h);
  background: rgba(12,12,10,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 40px;
  gap: 32px;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}
.nav-logo-line1 {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
}
.nav-logo-line2 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-logo-line2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--myth-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.nav-link {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-2);
  padding: 0 20px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  transform: scaleX(0);
  transition: transform 0.2s;
  transform-origin: left;
}
.nav-link:last-child { border-right: none; }
.nav-link:hover::after { transform: scaleX(1); }

.nav-link.myth::after  { background: var(--myth-accent); }
.nav-link.prop::after  { background: var(--prop-accent); }
.nav-link.human::after { background: var(--human-accent); }
.nav-link.docs::after  { background: var(--docs-accent); }

.nav-link.myth:hover,  .nav-link.myth.active  { color: var(--myth-accent); }
.nav-link.prop:hover,  .nav-link.prop.active  { color: var(--prop-accent); }
.nav-link.human:hover, .nav-link.human.active { color: var(--human-accent); }
.nav-link.docs:hover,  .nav-link.docs.active  { color: var(--docs-accent); }
.nav-link.obs::after   { background: var(--blue); }
.nav-link.obs:hover,   .nav-link.obs.active   { color: var(--blue); }

.nav-link.active::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 7px 14px;
  transition: border-color 0.2s;
}
.nav-search:focus-within { border-color: var(--border-light); }
.nav-search input {
  background: none;
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: var(--text-1);
  width: 140px;
}
.nav-search input::placeholder { color: var(--text-3); }
.nav-search svg {
  width: 13px; height: 13px;
  stroke: var(--text-3);
  fill: none;
  flex-shrink: 0;
}

.nav-method {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 7px 18px;
  height: 34px;
  display: flex;
  align-items: center;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-method:hover {
  border-color: var(--myth-accent);
  color: var(--myth-accent);
}

/* ═══════════════════════════════════════════════════════════
   PROGRESS BAR (article pages)
═══════════════════════════════════════════════════════════ */
.progress-bar {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  height: 2px;
  background: var(--border);
  z-index: 700;
}
.progress-fill {
  height: 100%;
  background: var(--section-color);
  width: 0%;
  transition: width 0.1s linear;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 60px 80px 48px;
  border-bottom: 1px solid var(--border);
  max-width: 1400px;
  margin: 0 auto;
}
.foot-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}
.foot-brand-name em {
  font-style: italic;
  font-weight: 400;
  color: var(--red);
  display: block;
  font-size: 0.82rem;
}
.foot-brand-desc {
  font-size: 0.78rem;
  line-height: 1.72;
  color: var(--text-2);
  margin-top: 10px;
}
.foot-col-title {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}
.foot-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.foot-links a {
  font-size: 0.78rem;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.foot-links a::before {
  content: '';
  width: 10px; height: 1px;
  background: var(--border);
  flex-shrink: 0;
  transition: all 0.2s;
}
.foot-links a:hover { color: var(--white); }
.foot-links a:hover::before { width: 16px; background: currentColor; }
.foot-links .fl-myth:hover  { color: var(--red); }
.foot-links .fl-prop:hover  { color: var(--amber); }
.foot-links .fl-human:hover { color: var(--green); }
.foot-links .fl-docs:hover  { color: var(--blue); }

.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.foot-copy  { font-size: 0.68rem; color: var(--text-3); }
.foot-motto { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.8rem; color: var(--text-3); }


/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — HERO
═══════════════════════════════════════════════════════════ */
.home-wrap { padding-top: var(--nav-h); }

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 80px;
  border-right: 1px solid var(--border);
  position: relative;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  opacity: 0;
  animation: up 1s 0.1s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-kicker-bar { width: 32px; height: 2px; background: var(--myth-accent); }
.hero-kicker span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--myth-accent);
}

.site-title {
  font-family: 'Playfair Display', serif;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 36px;
  opacity: 0;
  animation: up 1s 0.25s cubic-bezier(0.16,1,0.3,1) forwards;
}
.site-title-it    { display: block; font-size: clamp(2rem,3.5vw,3.2rem); font-weight: 300; font-style: italic; color: var(--text-2); }
.site-title-didnt { display: block; font-size: clamp(3rem,5.5vw,5rem); font-weight: 900; color: var(--white); }
.site-title-start { display: block; font-size: clamp(2.2rem,4vw,3.6rem); font-weight: 400; font-style: italic; color: var(--text-2); }
.site-title-on    { display: block; font-size: clamp(1.6rem,2.8vw,2.4rem); font-weight: 300; color: var(--text-3); letter-spacing: 0.02em; }
.site-title-date  { display: block; font-size: clamp(3.2rem,6vw,5.6rem); font-weight: 900; color: var(--myth-accent); letter-spacing: -0.04em; }
.site-title-period { color: var(--text-2); font-weight: 300; }

.hero-body {
  font-family: 'Source Serif 4', serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.82;
  color: var(--text-2);
  max-width: 460px;
  margin-bottom: 48px;
  opacity: 0;
  animation: up 1s 0.4s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: up 1s 0.55s cubic-bezier(0.16,1,0.3,1) forwards;
}

.btn-primary {
  display: inline-block;
  background: var(--myth-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  transition: all 0.2s;
}
.btn-primary:hover { background: #d04535; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost-arr {
  display: inline-block;
  width: 20px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.25s;
}
.btn-ghost-arr::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 5px; height: 5px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn-ghost:hover .btn-ghost-arr { width: 32px; }

/* ── Hero right panel ── */
.hero-right {
  background: var(--bg-card);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  border-left: 1px solid var(--border);
}
.hero-right-atm {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse at 90% 15%, rgba(191,59,46,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 85%, rgba(191,59,46,0.06) 0%, transparent 45%);
}

/* Featured image block */
.hero-feat-img {
  width: 100%; height: 230px; flex-shrink: 0;
  background-color: var(--bg-raised);
  background-size: cover; background-position: center top;
  position: relative; z-index: 1;
}
/* CSS placeholder — shown when the article has no featured image */
.hero-feat-img-placeholder {
  background-image:
    radial-gradient(ellipse at 30% 40%, rgba(191,59,46,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(78,126,50,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(46,110,158,0.08) 0%, transparent 45%),
    repeating-linear-gradient(
      -45deg,
      transparent, transparent 22px,
      rgba(255,255,255,0.013) 22px, rgba(255,255,255,0.013) 23px
    );
}
/* Gradient that blends the image into the dark card below */
.hero-feat-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,13,11,0.12) 0%,
    rgba(13,13,11,0.45) 60%,
    var(--bg-card)      100%
  );
}

/* Article text area (below the image) */
.hero-featured-area {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 18px 36px 20px; position: relative; z-index: 1;
}
.hero-featured-label {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px;
  opacity: 0; animation: up 1s 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hfl-dot {
  width: 6px; height: 6px; border-radius: 50%;
  animation: pulse 2s 2s infinite; flex-shrink: 0;
}
.hfl-text {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.hero-featured-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  font-weight: 700; line-height: 1.22; color: var(--white);
  text-decoration: none; display: block; margin-bottom: 18px;
  opacity: 0; animation: up 1s 0.95s cubic-bezier(0.16,1,0.3,1) forwards;
  position: relative; transition: color 0.2s;
}
.hero-featured-title:hover { color: var(--text-2); }
.hero-featured-footer {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  opacity: 0; animation: up 1s 1.1s cubic-bezier(0.16,1,0.3,1) forwards;
  position: relative;
}
.hero-verdict {
  display: inline-block; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 11px; border: 1px solid;
}
.hero-featured-meta {
  font-size: 0.7rem; color: var(--text-3); letter-spacing: 0.04em;
}

/* "Also published" strip */
.hero-also {
  border-top: 1px solid var(--border);
  padding: 18px 36px 26px; position: relative; z-index: 1;
  opacity: 0; animation: up 1s 1.25s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-also-label {
  font-size: 0.56rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 12px;
}
.hero-also-item {
  display: block; text-decoration: none;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.hero-also-item:last-child { border-bottom: none; padding-bottom: 0; }
.hai-type {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 4px;
}
.hai-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.hai-dot.myth  { background: var(--myth-accent); }
.hai-dot.prop  { background: var(--prop-accent); }
.hai-dot.human { background: var(--human-accent); }
.hai-title {
  font-size: 0.83rem; line-height: 1.35; color: var(--text-2);
  font-family: 'Playfair Display', serif; font-weight: 600; transition: color 0.2s;
}
.hero-also-item:hover .hai-title { color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — TICKER
═══════════════════════════════════════════════════════════ */
.ticker {
  height: 42px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.ticker-badge {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-right: 1px solid var(--border);
  background: var(--bg-card);
  z-index: 2;
  gap: 7px;
}
.ticker-badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--myth-accent);
  animation: pulse 1.5s infinite;
}
.ticker-badge-text {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--myth-accent);
  white-space: nowrap;
}
.ticker-fade {
  flex-shrink: 0;
  width: 32px; height: 100%;
  background: linear-gradient(90deg, var(--bg-card), transparent);
  z-index: 1;
}
.ticker-scroll { flex: 1; overflow: hidden; }
.ticker-track {
  display: flex;
  gap: 72px;
  animation: scrollL 55s linear infinite;
  white-space: nowrap;
}
.t-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.74rem;
  color: var(--text-2);
}
.t-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--myth-accent);
  flex-shrink: 0;
}
.t-src { font-size: 0.62rem; color: var(--text-3); margin-left: 2px; }


/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — CPT SECTIONS
═══════════════════════════════════════════════════════════ */
.hp-section { padding: 0 0 72px; }

.hp-section.myth-sec  { background: linear-gradient(180deg, var(--myth-fill) 0%, var(--bg) 100%); border-top: 1px solid var(--myth-mid); }
.hp-section.prop-sec  { background: linear-gradient(180deg, var(--prop-fill) 0%, var(--bg) 100%); border-top: 1px solid var(--prop-mid); }
.hp-section.human-sec { background: linear-gradient(180deg, var(--human-fill) 0%, var(--bg) 100%); border-top: 1px solid var(--human-mid); }
.hp-section.docs-sec  { background: linear-gradient(180deg, var(--docs-fill) 0%, var(--bg) 100%); border-top: 1px solid var(--docs-mid); }

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 60px 80px 44px;
}

.sec-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.sec-kicker-bar { width: 22px; height: 2px; }
.sec-kicker-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.myth-sec  .sec-kicker-bar { background: var(--myth-accent); }
.myth-sec  .sec-kicker-label { color: var(--myth-accent); }
.prop-sec  .sec-kicker-bar { background: var(--prop-accent); }
.prop-sec  .sec-kicker-label { color: var(--prop-accent); }
.human-sec .sec-kicker-bar { background: var(--human-accent); }
.human-sec .sec-kicker-label { color: var(--human-accent); }
.docs-sec  .sec-kicker-bar { background: var(--docs-accent); }
.docs-sec  .sec-kicker-label { color: var(--docs-accent); }
.obs-sec    .sec-kicker-bar { background: var(--blue); }
.obs-sec    .sec-kicker-label { color: var(--blue); }
.latest-sec .sec-kicker-bar { background: var(--text-2); }
.latest-sec .sec-kicker-label { color: var(--text-1); }
.post-card-obs .pc-type { color: var(--blue); }
.post-card-obs .pc-type-dot { background: var(--blue); }
/* Direct type-dot colours for mixed-section grids (recently published) */
.pc-type.myth   { color: var(--myth-accent); }
.pc-type.prop   { color: var(--prop-accent); }
.pc-type.human  { color: var(--human-accent); }
.pc-type.docs   { color: var(--docs-accent); }
.pc-type.obs    { color: var(--blue); }
.pc-type-dot.myth  { background: var(--myth-accent); }
.pc-type-dot.prop  { background: var(--prop-accent); }
.pc-type-dot.human { background: var(--human-accent); }
.pc-type-dot.docs  { background: var(--docs-accent); }
.pc-type-dot.obs   { background: var(--blue); }

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}
.sec-title em { font-style: italic; font-weight: 400; }

.sec-all {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
  padding-bottom: 4px;
}
.myth-sec  .sec-all { color: var(--myth-accent); border-bottom: 1px solid rgba(191,59,46,0.3); }
.prop-sec  .sec-all { color: var(--prop-accent); border-bottom: 1px solid rgba(200,144,31,0.3); }
.human-sec .sec-all { color: var(--human-accent); border-bottom: 1px solid rgba(78,126,50,0.3); }
.docs-sec  .sec-all { color: var(--docs-accent); border-bottom: 1px solid rgba(46,110,158,0.3); }
.sec-all:hover { opacity: 0.7; }

/* Post cards grid */
.sec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0 80px;
  background: var(--border);
}

.post-card {
  background: var(--bg-card);
  padding: 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
  position: relative;
}
.post-card:hover { background: var(--bg-raised); }

.pc-type {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.myth-sec  .pc-type { color: var(--myth-accent); }
.prop-sec  .pc-type { color: var(--prop-accent); }
.human-sec .pc-type { color: var(--human-accent); }
.docs-sec  .pc-type { color: var(--docs-accent); }
.pc-type-dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; }

.pc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.post-card:hover .pc-title { color: var(--text-2); }

.pc-deck {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-3);
  margin-bottom: 18px;
  flex: 1;
}

.pc-meta {
  font-size: 0.65rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pc-verdict {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid;
}
.verdict-false     { color: #e74c3c; border-color: rgba(231,76,60,0.4); }
.verdict-misleading { color: var(--amber); border-color: rgba(200,144,31,0.4); }
.verdict-decon     { color: #e07820; border-color: rgba(224,120,32,0.4); }
.verdict-contested { color: #d4aa0d; border-color: rgba(212,170,13,0.4); }
.verdict-partial   { color: #c8b420; border-color: rgba(200,180,32,0.4); }
.verdict-unverifiable { color: var(--text-3); border-color: var(--border); }


/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — METHODOLOGY STRIP
═══════════════════════════════════════════════════════════ */
.meth-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}
.ms-text { font-family: 'Source Serif 4', serif; font-size: 0.92rem; font-weight: 300; line-height: 1.75; color: var(--text-2); max-width: 680px; }
.ms-link {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 12px 24px;
  transition: all 0.2s;
  white-space: nowrap;
}
.ms-link:hover { border-color: var(--myth-accent); color: var(--myth-accent); }


/* ═══════════════════════════════════════════════════════════
   ARTICLE — LAYOUT
═══════════════════════════════════════════════════════════ */
.article-page { padding-top: var(--nav-h); }

/* Two-column: main + 320px sidebar (myth, propaganda) */
.article-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}

/* Single column: human story, document */
.article-wrap.single-col {
  grid-template-columns: 1fr;
  max-width: 860px;
}

/* ── ARTICLE HEADER ── */
.article-header {
  background: var(--section-fill);
  border-bottom: 1px solid var(--section-mid);
  padding: 64px 64px 56px 80px;
  position: relative;
  overflow: hidden;
}
.article-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(191,59,46,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cpt-propaganda .article-header::before { background: radial-gradient(ellipse at 80% 50%, rgba(200,144,31,0.06) 0%, transparent 60%); }
.cpt-human_story .article-header::before { background: radial-gradient(ellipse at 80% 50%, rgba(78,126,50,0.06) 0%, transparent 60%); }
.cpt-document .article-header::before { background: radial-gradient(ellipse at 80% 50%, rgba(46,110,158,0.06) 0%, transparent 60%); }

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  opacity: 0;
  animation: up 0.8s 0.1s forwards;
}
.bc-link { font-size: 0.65rem; color: var(--text-3); text-decoration: none; transition: color 0.2s; }
.bc-link:hover { color: var(--section-color); }
.bc-sep { font-size: 0.65rem; color: var(--text-3); }
.bc-cur { font-size: 0.65rem; color: var(--section-color); font-weight: 500; }

.content-type-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  opacity: 0;
  animation: up 0.8s 0.2s forwards;
}
.ct-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--section-color);
  border: 1px solid;
  border-color: rgba(191,59,46,0.35);
  padding: 4px 10px;
}
.ct-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--section-color); }
.ct-category {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  border: 1px solid var(--border);
  padding: 4px 10px;
}

.claim-being-examined {
  background: rgba(0,0,0,0.3);
  border-left: 3px solid var(--section-color);
  padding: 20px 24px;
  margin-bottom: 28px;
  opacity: 0;
  animation: up 0.8s 0.25s forwards;
}
.cbe-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--section-color);
  margin-bottom: 8px;
}
.cbe-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-2);
}

.article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  animation: up 0.8s 0.35s forwards;
}

.article-deck {
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-2);
  max-width: 640px;
  margin-bottom: 32px;
  opacity: 0;
  animation: up 0.8s 0.45s forwards;
}

.verdict-display {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: up 0.8s 0.55s forwards;
  margin-bottom: 32px;
}
.verdict-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}
.verdict-badge {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 18px;
  border: 1px solid;
}
.verdict-false      { color: #e74c3c; border-color: rgba(231,76,60,0.4); background: rgba(231,76,60,0.05); }
.verdict-misleading { color: var(--amber); border-color: rgba(200,144,31,0.4); background: rgba(200,144,31,0.05); }
.verdict-decon      { color: #e07820; border-color: rgba(224,120,32,0.4); background: rgba(224,120,32,0.05); }
.verdict-contested  { color: #d4aa0d; border-color: rgba(212,170,13,0.4); background: rgba(212,170,13,0.05); }
.verdict-partial    { color: #c8b420; border-color: rgba(200,180,32,0.4); background: rgba(200,180,32,0.05); }
.verdict-unverifiable { color: var(--text-3); border-color: var(--border); }

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.72rem;
  color: var(--text-3);
  padding-top: 24px;
  border-top: 1px solid var(--section-mid);
  opacity: 0;
  animation: up 0.8s 0.65s forwards;
}
.meta-item { display: flex; align-items: center; gap: 6px; }
.meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-3); }
.meta-updated { color: var(--section-color); }

/* ── ARTICLE BODY ── */
.article-body-col {
  padding: 56px 64px 80px 80px;
  border-right: 1px solid var(--border);
}
.article-wrap.single-col .article-body-col {
  border-right: none;
  padding: 56px 48px 80px;
}

.article-body {
  font-family: 'Source Serif 4', serif;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.88;
  color: var(--text-2);
}
.article-body p { margin-bottom: 24px; }
.article-body p:last-child { margin-bottom: 0; }
.article-body strong { color: var(--text-1); font-weight: 600; }
.article-body em { font-style: italic; }
.article-body a { color: var(--section-color); text-decoration: underline; text-underline-offset: 3px; }

/* Gutenberg paragraph block inside article */
.article-body-col .wp-block-paragraph {
  font-family: 'Source Serif 4', serif;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.88;
  color: var(--text-2);
  margin-bottom: 24px;
}
.article-body-col .wp-block-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  margin-top: 48px;
  line-height: 1.2;
}
.article-body-col .wp-block-html { margin-bottom: 0; }

/* Body sections */
.body-section { margin: 48px 0 0; }

.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.sk-bar { width: 20px; height: 2px; background: var(--section-color); }
.sk-text {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--section-color);
}

.body-text { margin-bottom: 0; }

/* Pull quote */
.pull-quote {
  border-left: 2px solid var(--section-color);
  padding: 6px 0 6px 24px;
  margin: 36px 0;
}
.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-1);
}
.pull-quote cite {
  display: block;
  font-size: 0.72rem;
  color: var(--text-3);
  margin-top: 8px;
  font-style: normal;
}

/* Inline citation */
a.cite, .source-cite {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--section-color);
  text-decoration: none;
  border-bottom: 1px solid rgba(191,59,46,0.3);
  vertical-align: super;
  font-style: normal;
  transition: border-color 0.2s;
}
a.cite:hover, .source-cite:hover { border-color: var(--section-color); }

/* Claim vs. Record */
.cvs-block { margin: 48px 0; background: var(--bg-card); border: 1px solid var(--border); overflow: hidden; }
.cvs-header {
  padding: 16px 24px;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.cvs-header-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3); }
.cvs-header-icon  { font-size: 0.75rem; }
.cvs-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.cvs-col { padding: 24px; background: var(--bg-card); }
.cvs-col-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.cvs-col.mainstream .cvs-col-label { color: var(--text-3); }
.cvs-col.record     .cvs-col-label { color: var(--section-color); }
.cvs-col-label-dot { width: 5px; height: 5px; border-radius: 50%; }
.mainstream .cvs-col-label-dot { background: var(--text-3); }
.record     .cvs-col-label-dot { background: var(--section-color); }
.cvs-text {
  font-family: 'Source Serif 4', serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.72;
  color: var(--text-2);
}
.cvs-text strong { color: var(--text-1); font-weight: 600; }

/* Limitations block */
.limitations-block {
  margin: 48px 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--text-3);
}
.lim-header {
  padding: 14px 24px;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.lim-header-icon  { font-size: 0.75rem; color: var(--text-3); }
.lim-header-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3); }
.lim-body {
  padding: 20px 24px;
  font-family: 'Source Serif 4', serif;
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-2);
}

/* Correction notice */
.correction-notice {
  background: rgba(200,144,31,0.06);
  border: 1px solid rgba(200,144,31,0.25);
  border-left: 3px solid var(--amber);
  padding: 16px 20px;
  margin-bottom: 32px;
}
.cn-label { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin-bottom: 6px; }
.cn-text  { font-size: 0.82rem; line-height: 1.65; color: var(--text-2); font-family: 'Source Serif 4', serif; font-weight: 300; }
.cn-date  { font-size: 0.65rem; color: var(--text-3); margin-top: 4px; }

/* Visualization embed */
.viz-embed {
  margin: 40px 0;
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
}
.viz-embed.reveal { /* handled by IntersectionObserver */ }

/* ── Sources block (.sb-* system used in Gutenberg content) ───── */
.sources-block {
  margin: 48px 0;
  border: 1px solid var(--border);
  overflow: hidden;
}

.sb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
}
.sb-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}
.sb-count {
  font-size: 0.65rem;
  color: var(--text-3);
  white-space: nowrap;
}

.sb-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  transition: background 0.2s;
}
.sb-item:last-child { border-bottom: none; }
.sb-item:hover { background: var(--bg-raised); }

.sb-tier {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  font-weight: 900;
  border-right: 1px solid var(--border);
  min-height: 64px;
  flex-shrink: 0;
}
/* Colour variants — combine with t1-badge / t2-badge / t3-badge */
.sb-tier.t1-badge { color: #4a90d9; background: rgba(74,144,217,0.07); }
.sb-tier.t2-badge { color: #5a9e3a; background: rgba(90,158,58,0.07); }
.sb-tier.t3-badge { color: #c8a830; background: rgba(200,168,48,0.07); }

.sb-content {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}
.sb-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.45;
}
.sb-note {
  font-size: 0.7rem;
  color: var(--text-3);
  line-height: 1.55;
}

/* Legacy .sources-title (keep for older content) */
.sources-title {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.sources-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.source-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--bg-card);
  margin-bottom: 2px;
  overflow: hidden;
  transition: border-color 0.2s;
  text-decoration: none;
}
.source-item:hover { border-color: var(--border-hi); }

/* st-badge (used in Gutenberg-pushed articles) */
.st-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  font-weight: 900;
  border-right: 1px solid var(--border);
  color: var(--text-3);
  min-height: 56px;
}
.st-badge.t1 { color: #4a90d9; background: rgba(74,144,217,0.06); }
.st-badge.t2 { color: #5a9e3a; background: rgba(90,158,58,0.06); }
.st-badge.t3 { color: #c8a830; background: rgba(200,168,48,0.06); }
.st-badge.t4 { color: #c07030; background: rgba(192,112,48,0.06); }

/* Legacy source-tier class (same styling) */
.source-tier { display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 0.7rem; font-weight: 900; border-right: 1px solid var(--border); color: var(--text-3); min-height: 56px; }
.source-tier.t1 { color: #4a90d9; background: rgba(74,144,217,0.06); }
.source-tier.t2 { color: #5a9e3a; background: rgba(90,158,58,0.06); }
.source-tier.t3 { color: #c8a830; background: rgba(200,168,48,0.06); }
.source-tier.t4 { color: #c07030; background: rgba(192,112,48,0.06); }

.source-content { padding: 12px 16px; }
.source-org  { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 3px; }
.source-name { font-size: 0.82rem; font-weight: 500; color: var(--text-1); margin-bottom: 3px; text-decoration: none; display: block; transition: color 0.2s; }
.source-name:hover { color: var(--section-color); }
.source-url  { font-size: 0.68rem; color: var(--section-color); text-decoration: none; display: block; transition: opacity 0.2s; }
.source-url:hover { opacity: 0.7; }
/* Legacy */
.source-link { font-size: 0.68rem; color: var(--section-color); text-decoration: none; display: block; transition: opacity 0.2s; }
.source-link:hover { opacity: 0.7; }

/* Resources section */
.resources-section { margin: 48px 0; }
.res-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.res-desc  { font-size: 0.85rem; color: var(--text-2); margin-bottom: 24px; }
.res-category { margin-bottom: 24px; }
.res-cat-title { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.res-cat-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.res-list { display: flex; flex-direction: column; gap: 2px; }
.res-item { display: grid; grid-template-columns: 40px 1fr; gap: 0; border: 1px solid var(--border); background: var(--bg-card); overflow: hidden; transition: border-color 0.2s; }
.res-item:hover { border-color: var(--border-hi); }
.res-tier { display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 700; color: var(--text-3); border-right: 1px solid var(--border); min-height: 52px; }
.res-info  { padding: 10px 14px; }
.res-name  { font-size: 0.82rem; font-weight: 500; color: var(--text-1); text-decoration: none; display: block; margin-bottom: 2px; transition: color 0.2s; }
.res-name:hover { color: var(--section-color); }
.res-org   { font-size: 0.62rem; color: var(--text-3); margin-bottom: 2px; }
.res-link  { font-size: 0.65rem; color: var(--section-color); }


/* ── SIDEBAR ── */
.article-sidebar {
  padding: 40px 32px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.score-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--section-color);
  padding: 24px;
  margin-bottom: 16px;
}
.score-card-title {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.score-total-display {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.score-total-display span { font-size: 0.8rem; color: var(--text-3); font-family: 'DM Sans', sans-serif; font-weight: 400; }
.score-dims { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.sdim-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.sdim-name { font-size: 0.7rem; font-weight: 500; color: var(--text-2); }
.sdim-val  { font-size: 0.7rem; font-weight: 700; color: var(--white); }
.sdim-bar  { height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; }
.sdim-fill { height: 100%; border-radius: 2px; width: 0%; transition: width 1.2s cubic-bezier(0.16,1,0.3,1); }
.fill-full { background: var(--section-color); }
.fill-half { background: var(--amber); }

.score-meth-link {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-3); text-decoration: none;
  padding: 8px; border-top: 1px solid var(--border); margin-top: 16px; transition: color 0.2s;
}
.score-meth-link:hover { color: var(--section-color); }

.last-verified {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 14px 18px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.lv-label { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); }
.lv-date  { font-size: 0.75rem; font-weight: 600; color: var(--section-color); }

.share-block { background: var(--bg-card); border: 1px solid var(--border); padding: 18px; margin-bottom: 16px; }
.share-label { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
.share-btns { display: flex; gap: 6px; flex-wrap: wrap; }
.share-btn {
  flex: 1 1 calc(33.333% - 5px);
  min-width: 72px;
  padding: 9px 6px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-2); text-align: center; cursor: pointer; text-decoration: none; transition: all 0.2s;
  line-height: 1.3;
}
.share-btn:hover { border-color: var(--section-color); color: var(--section-color); }

.related-block { margin-top: 24px; }
.related-title {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.related-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.related-item {
  display: block; padding: 14px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; transition: padding-left 0.2s;
}
.related-item:hover { padding-left: 6px; }
.related-item:last-child { border-bottom: none; }
.ri-type  { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.ri-title { font-family: 'Playfair Display', serif; font-size: 0.88rem; font-weight: 600; line-height: 1.35; color: var(--text-2); transition: color 0.2s; }
.related-item:hover .ri-title { color: var(--white); }


/* ═══════════════════════════════════════════════════════════
   PROPAGANDA — specific components
   (Coverage Audit + Technique Explainer article types)
═══════════════════════════════════════════════════════════ */

/* Outlet being analyzed (header block — replaces claim-being-examined) */
.outlet-being-analyzed {
  background: rgba(0,0,0,0.3);
  border-left: 3px solid var(--prop-accent);
  padding: 20px 24px;
  margin-bottom: 28px;
  opacity: 0;
  animation: up 0.8s 0.25s forwards;
}
.oba-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--prop-accent);
  margin-bottom: 10px;
}
.oba-outlets {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.oba-outlet {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--prop-accent);
  background: rgba(200,144,31,0.1);
  border: 1px solid rgba(200,144,31,0.25);
  padding: 4px 10px;
}
.oba-original-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-2);
}
.oba-date {
  font-size: 0.65rem;
  color: var(--text-3);
  margin-top: 6px;
}

/* Technique tags (article header row) */
.technique-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 28px;
  opacity: 0;
  animation: up 0.8s 0.5s forwards;
  align-items: center;
}
.tech-tags-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-right: 4px;
}
.tech-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--prop-accent);
  border: 1px solid rgba(200,144,31,0.3);
  padding: 4px 10px;
}

/* Original excerpt block (quoted coverage with annotation) */
.original-excerpt {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--text-3);
  padding: 24px 28px;
  margin: 32px 0;
}
.oe-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.oe-outlet {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--prop-accent);
  background: rgba(200,144,31,0.08);
  border: 1px solid rgba(200,144,31,0.2);
  padding: 2px 7px;
}
.oe-text {
  font-family: 'Source Serif 4', serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.72;
  color: var(--text-2);
  font-style: italic;
}
.oe-annotation {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--prop-accent);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: 'Source Serif 4', serif;
  font-weight: 300;
  line-height: 1.65;
}
.oe-ann-icon { flex-shrink: 0; margin-top: 2px; }

/* Technique spotlight block */
.technique-spotlight {
  background: var(--prop-fill);
  border: 1px solid var(--prop-mid);
  padding: 24px 28px;
  margin: 32px 0;
}
.ts-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.ts-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(200,144,31,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--prop-accent);
  flex-shrink: 0;
}
.ts-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--prop-accent);
}
.ts-body {
  font-family: 'Source Serif 4', serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.72;
  color: var(--text-2);
}
.ts-link {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--prop-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  transition: gap 0.2s;
}
.ts-link:hover { gap: 10px; }

/* Omissions block (numbered list of what outlets left out) */
.omissions-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  margin: 32px 0;
  overflow: hidden;
}
.ob-header {
  padding: 20px 24px;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.ob-icon  { font-size: 0.8rem; color: var(--red); }
.ob-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); }
.ob-items { }
.ob-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}
.ob-item:last-child { border-bottom: none; }

/* <ul class="ob-list"> variant used in Gutenberg-authored content */
.ob-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ob-list li {
  position: relative;
  padding: 14px 24px 14px 52px;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-1);
  line-height: 1.6;
}
.ob-list li:last-child { border-bottom: none; }
.ob-list li::before {
  content: '—';
  position: absolute;
  left: 24px;
  top: 14px;
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.6;
}
.ob-n {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--border-hi);
  line-height: 1;
  padding-top: 2px;
  flex-shrink: 0;
  min-width: 28px;
}
.ob-text {
  font-family: 'Source Serif 4', serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-2);
}
.ob-text strong { color: var(--text-1); font-weight: 600; }

/* Fuller picture block (green — "what a complete account would include") */
.fuller-picture {
  background: rgba(78,126,50,0.04);
  border: 1px solid rgba(78,126,50,0.15);
  border-left: 3px solid var(--green);
  padding: 24px 28px;
  margin: 32px 0;
}
.fp-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.fp-body {
  font-family: 'Source Serif 4', serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-2);
}
.fp-body p { margin-bottom: 14px; }
.fp-body p:last-child { margin-bottom: 0; }
.fp-body strong { color: var(--text-1); font-weight: 600; }

/* Score bar fill colours for propaganda sidebar */
.fill-amber { background: var(--prop-accent); }
.fill-red   { background: var(--red); }

/* Dual score cards: evidence (amber top) and framing (red top) */
.score-card.evidence { border-top-color: var(--prop-accent); }
.score-card.framing  { border-top-color: var(--red); }


/* ═══════════════════════════════════════════════════════════
   HUMAN STORY — specific
═══════════════════════════════════════════════════════════ */
.human-article .article-body-col { max-width: 780px; margin: 0 auto; border-right: none; }

/* Location + verified badge row (header) */
.location-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  opacity: 0;
  animation: up 0.8s 0.25s forwards;
  flex-wrap: wrap;
}
.loc-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.loc-icon { color: var(--human-accent); font-size: 0.55rem; }
.loc-text  { color: var(--text-2); }
.loc-sep   { color: var(--text-3); }
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--human-accent);
  border: 1px solid rgba(78,126,50,0.3);
  padding: 3px 8px;
  background: rgba(78,126,50,0.06);
}

/* Story visual — full-width atmospheric image placeholder */
.story-visual {
  width: 100%;
  aspect-ratio: 16 / 7;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: up 0.8s 0.5s forwards;
  margin-bottom: 0;
}
.sv-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 35% 50%, #163014 0%, #050c04 100%);
}
.sv-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--human-fill) 100%);
}
.sv-caption {
  position: absolute;
  bottom: 12px; left: 16px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.5);
  padding: 4px 8px;
  backdrop-filter: blur(3px);
}

/* Verification block — structured grid (not plain text) */
.verification-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--human-accent);
  margin: 40px 0;
  overflow: hidden;
}
.vb-header {
  padding: 14px 24px;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.vb-icon  { font-size: 0.75rem; color: var(--human-accent); }
.vb-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--human-accent); }
.vb-body  {
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.vb-item { display: flex; flex-direction: column; gap: 4px; }
.vb-item-label { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); }
.vb-item-value { font-size: 0.85rem; color: var(--text-1); line-height: 1.5; }
/* Fallback plain-text style for simple verification notes */
.vb-text { padding: 20px 24px; font-size: 0.82rem; line-height: 1.65; color: var(--text-2); }

/* Verification Credibility Score card (inline, single-column human story) */
.hcc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--human-accent);
  padding: 24px 28px 20px;
  margin: 0 0 32px;
}
.hcc-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}
.hcc-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}
.hcc-total {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  flex-shrink: 0;
}
.hcc-total span {
  font-size: 0.85rem;
  color: var(--text-3);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}
.hcc-dims {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px 24px;
}
.hcc-dim { display: flex; flex-direction: column; gap: 4px; }
.hcc-dim-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.hcc-dim-name { font-size: 0.65rem; font-weight: 500; color: var(--text-2); }
.hcc-dim-val  { font-size: 0.65rem; font-weight: 700; color: var(--white); }
.hcc-bar { height: 3px; background: var(--border); border-radius: 2px; overflow: hidden; }
.hcc-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--human-accent);
  width: 0%;
  transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
}
.hcc-note {
  font-size: 0.65rem;
  color: var(--text-3);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}
.hcc-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--human-accent);
  text-decoration: none;
}
.hcc-link:hover { opacity: 0.75; }

/* Full-width share block (human stories — no sidebar) */
.share-block-full {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 20px 24px;
  margin: 32px 0;
}
.share-btns-full {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* 2-column related stories grid (green-themed) */
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--human-mid);
  border: 1px solid var(--human-mid);
  margin: 32px 0;
}
.related-card {
  background: var(--human-fill);
  padding: 20px 22px;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
}
.related-card:hover { background: #0b1608; }
.rc-type  { font-size: 0.56rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--human-accent); margin-bottom: 5px; }
.rc-loc   { font-size: 0.6rem; color: var(--text-3); margin-bottom: 8px; }
.rc-title { font-family: 'Playfair Display', serif; font-size: 0.9rem; font-weight: 600; line-height: 1.35; color: var(--text-2); transition: color 0.2s; }
.related-card:hover .rc-title { color: var(--text-1); }

/* Subject card (optional — shown when subject is named) */
.subject-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}
.subject-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--human-mid);
  border: 2px solid var(--human-accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--human-accent);
}
.subject-name   { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.subject-detail { font-size: 0.78rem; color: var(--text-3); line-height: 1.6; }

@media (max-width: 900px) {
  .vb-body     { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   ARCHIVE / INDEX PAGES
═══════════════════════════════════════════════════════════ */
.archive-page { padding-top: var(--nav-h); }

.archive-header {
  padding: 64px 80px 48px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--section-fill) 0%, var(--bg) 100%);
}
.archive-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.archive-kicker-bar { width: 24px; height: 2px; background: var(--section-color); }
.archive-kicker-text {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--section-color);
}
.archive-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 16px;
}
.archive-desc {
  font-family: 'Source Serif 4', serif;
  font-size: 1rem; font-weight: 300; line-height: 1.75;
  color: var(--text-2); max-width: 600px;
}

.archive-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 80px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  flex-wrap: wrap;
}
.filter-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-3); margin-right: 8px;
}
.filter-btn {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-2);
  background: none; border: 1px solid var(--border);
  padding: 6px 14px; cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--section-color); color: var(--section-color); }
.filter-btn.active { background: var(--section-color); color: #fff; border-color: var(--section-color); }

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1px;
  background: var(--border);
  padding: 0;
}
.archive-grid-wrap { padding: 40px 80px 80px; }

.archive-card {
  background: var(--bg-card);
  padding: 28px;
  text-decoration: none;
  display: flex; flex-direction: column;
  transition: background 0.2s;
  overflow: hidden;
}
.archive-card:hover { background: var(--bg-raised); }

/* Featured image thumbnail on archive cards */
.ac-thumb {
  width: calc(100% + 56px);
  margin: -28px -28px 20px -28px;
  height: 180px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  position: relative;
}
.ac-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.45) 100%);
}

/* Featured image banner on single article pages */
.article-feat-img {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center top;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}
.article-feat-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, var(--bg-page) 100%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .ac-thumb { height: 140px; }
  .article-feat-img { height: 200px; }
}

/* Stats bar (archive header) */
.archive-stats {
  display: flex; gap: 32px;
  padding: 20px 80px;
  border-bottom: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); margin-top: 4px; }


/* ═══════════════════════════════════════════════════════════
   STATIC PAGES (methodology, about, etc.)
═══════════════════════════════════════════════════════════ */
.page-wrap {
  padding-top: var(--nav-h);
  max-width: 1100px;
  margin: 0 auto;
}
.page-wrap.wide { max-width: 1300px; }

.page-header {
  padding: 64px 80px 48px;
  border-bottom: 1px solid var(--border);
}
.page-kicker {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.page-kicker-bar { width: 24px; height: 2px; background: var(--myth-accent); }
.page-kicker-text {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--myth-accent);
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}
.page-desc {
  font-family: 'Source Serif 4', serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-2);
}

.page-body {
  padding: 48px 80px 80px;
  font-family: 'Source Serif 4', serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.82;
  color: var(--text-2);
}
.page-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 48px 0 16px;
  line-height: 1.2;
}
.page-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-1);
  margin: 32px 0 12px;
}
.page-body p { margin-bottom: 20px; }
.page-body strong { color: var(--text-1); font-weight: 600; }
.page-body a { color: var(--myth-accent); text-underline-offset: 3px; }

/* Methodology: 2-col with TOC */
.meth-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  align-items: start;
}
.meth-toc {
  padding: 40px 24px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  border-right: 1px solid var(--border);
}
.meth-toc-title { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; }
.meth-toc-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.meth-toc-list a {
  font-size: 0.75rem; color: var(--text-3); text-decoration: none; padding: 4px 8px;
  border-left: 2px solid transparent; display: block; transition: all 0.2s;
}
.meth-toc-list a:hover, .meth-toc-list a.active { color: var(--myth-accent); border-color: var(--myth-accent); }

.meth-content { padding: 48px 64px 80px; }

/* Accordion (methodology cards) */
.accordion { border: 1px solid var(--border); background: var(--bg-card); margin-bottom: 2px; }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; background: none; border: none; cursor: pointer; text-align: left;
  transition: background 0.2s;
}
.accordion-trigger:hover { background: var(--bg-raised); }
.accordion-trigger-title { font-size: 0.88rem; font-weight: 600; color: var(--text-1); }
.accordion-icon { width: 16px; height: 16px; stroke: var(--text-3); fill: none; flex-shrink: 0; transition: transform 0.3s; }
.accordion.open .accordion-icon { transform: rotate(180deg); }
.accordion-body { display: none; padding: 0 20px 20px; border-top: 1px solid var(--border); }
.accordion.open .accordion-body { display: block; }

/* Source tier stack */
.tier-stack { display: flex; flex-direction: column; gap: 2px; margin: 24px 0; }
.tier-row {
  display: grid; grid-template-columns: 48px 1fr auto;
  gap: 0; border: 1px solid var(--border); background: var(--bg-card); align-items: stretch;
}
.tier-badge {
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 0.8rem; font-weight: 900;
  border-right: 1px solid var(--border);
}
.tier-badge.t1 { color: #4a90d9; background: rgba(74,144,217,0.06); }
.tier-badge.t2 { color: #5a9e3a; background: rgba(90,158,58,0.06); }
.tier-badge.t3 { color: #c8a830; background: rgba(200,168,48,0.06); }
.tier-badge.t4 { color: #c07030; background: rgba(192,112,48,0.06); }
.tier-info { padding: 12px 16px; }
.tier-name { font-size: 0.82rem; font-weight: 600; color: var(--text-1); margin-bottom: 3px; }
.tier-desc { font-size: 0.75rem; color: var(--text-3); line-height: 1.5; }
.tier-examples { padding: 12px 16px; font-size: 0.7rem; color: var(--text-3); border-left: 1px solid var(--border); min-width: 180px; }


/* ═══════════════════════════════════════════════════════════
   GLOSSARY
═══════════════════════════════════════════════════════════ */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
}
.glossary-card {
  background: var(--bg-card);
  padding: 24px;
  text-decoration: none;
  transition: background 0.2s;
}
.glossary-card:hover { background: var(--bg-raised); }
.glossary-term { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.glossary-def  { font-size: 0.82rem; color: var(--text-3); line-height: 1.65; }


/* ═══════════════════════════════════════════════════════════
   CORRECTIONS LOG
═══════════════════════════════════════════════════════════ */
.correction-entry { border: 1px solid var(--border); background: var(--bg-card); margin-bottom: 2px; }
.ce-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; cursor: pointer; transition: background 0.2s;
}
.ce-header:hover { background: var(--bg-raised); }
.ce-date   { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; color: var(--amber); }
.ce-title  { font-size: 0.88rem; font-weight: 600; color: var(--text-1); flex: 1; margin: 0 16px; }
.ce-icon   { width: 14px; height: 14px; stroke: var(--text-3); fill: none; transition: transform 0.3s; }
.correction-entry.open .ce-icon { transform: rotate(180deg); }
.ce-body   { display: none; padding: 0 20px 20px; border-top: 1px solid var(--border); }
.correction-entry.open .ce-body { display: block; }
.ce-text   { font-size: 0.85rem; line-height: 1.72; color: var(--text-2); padding-top: 16px; }
.ce-article-link { font-size: 0.72rem; color: var(--myth-accent); text-decoration: none; margin-top: 10px; display: inline-flex; align-items: center; gap: 6px; }


/* ═══════════════════════════════════════════════════════════
   CONTACT / DISPUTE FORM
═══════════════════════════════════════════════════════════ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-1); font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  padding: 12px 16px; outline: none; transition: border-color 0.2s;
  appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--myth-accent); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-3); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-submit {
  background: var(--myth-accent); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  border: none; padding: 14px 32px; cursor: pointer; transition: background 0.2s;
}
.form-submit:hover { background: #d04535; }


/* ═══════════════════════════════════════════════════════════
   ARTICLE BODY VISUALIZATIONS
   Reusable inside Gutenberg wp:html blocks across all CPTs.
═══════════════════════════════════════════════════════════ */

/* ── Horizontal bar chart ── */
.viz-chart {
  margin: 36px 0; background: var(--bg-card);
  border: 1px solid var(--border); padding: 24px 28px;
}
.viz-chart-title {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 6px;
}
.viz-chart-subtitle {
  font-size: 0.78rem; color: var(--text-2); margin-bottom: 22px; line-height: 1.5;
}
.viz-bar-row { display: flex; align-items: center; gap: 14px; margin-bottom: 11px; }
.viz-bar-label {
  font-size: 0.74rem; color: var(--text-2); width: 140px; flex-shrink: 0; text-align: right;
}
.viz-bar-track {
  flex: 1; height: 7px; background: var(--bg-raised); border: 1px solid var(--border);
}
.viz-bar-fill { height: 100%; background: var(--prop-accent); transition: width 0.8s ease; }
.viz-bar-fill.vbf-red   { background: var(--red); }
.viz-bar-fill.vbf-green { background: var(--human-accent); }
.viz-bar-fill.vbf-blue  { background: var(--docs-accent); }
.viz-bar-fill.vbf-amber { background: var(--prop-accent); }
.viz-bar-value { font-size: 0.72rem; font-weight: 700; color: var(--text-1); width: 38px; flex-shrink: 0; }
.viz-chart-note {
  font-size: 0.7rem; color: var(--text-3); margin-top: 18px;
  padding-top: 14px; border-top: 1px solid var(--border); font-style: italic;
}

/* ── Headline comparison (biased vs neutral) ── */
.headline-compare {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border); margin: 36px 0;
}
.hc-col { background: var(--bg-card); padding: 22px 24px; }
.hc-col.hc-biased  { border-top: 3px solid var(--red); }
.hc-col.hc-neutral { border-top: 3px solid var(--human-accent); }
.hc-label {
  font-size: 0.56rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 12px;
}
.hc-biased .hc-label  { color: var(--red); }
.hc-neutral .hc-label { color: var(--human-accent); }
.hc-headline {
  font-family: 'Playfair Display', serif; font-size: 1rem;
  font-weight: 700; line-height: 1.35; color: var(--text-1); margin-bottom: 12px;
}
.hc-analysis { font-size: 0.76rem; line-height: 1.65; color: var(--text-2); }
.hc-flag {
  display: inline-block; margin-top: 10px; font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 8px; border: 1px solid;
}
.hc-biased .hc-flag  { color: var(--red);          border-color: rgba(191,59,46,0.35);  background: rgba(191,59,46,0.07); }
.hc-neutral .hc-flag { color: var(--human-accent);  border-color: rgba(78,126,50,0.35);  background: rgba(78,126,50,0.07); }

/* ── Detection step checklist ── */
.detection-steps { margin: 36px 0; }
.detection-steps-title {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--prop-accent); margin-bottom: 16px;
}
.dt-step {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.dt-step:first-of-type { border-top: 1px solid var(--border); }
.dt-num {
  width: 30px; height: 30px; background: var(--prop-accent); color: #000;
  font-size: 0.7rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dt-body { flex: 1; }
.dt-q   { font-size: 0.92rem; font-weight: 600; color: var(--text-1); margin-bottom: 5px; }
.dt-hint { font-size: 0.78rem; line-height: 1.65; color: var(--text-2); }
.dt-flag {
  display: inline-block; margin-top: 7px; font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--red);
  background: rgba(191,59,46,0.07); border: 1px solid rgba(191,59,46,0.25); padding: 3px 8px;
}

/* ── Data comparison table ── */
.data-table-wrap { margin: 36px 0; overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
.data-table th {
  text-align: left; font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-3);
  padding: 10px 14px; border-bottom: 2px solid var(--border); white-space: nowrap;
}
.data-table td {
  padding: 12px 14px; border-bottom: 1px solid var(--border);
  color: var(--text-2); vertical-align: top; line-height: 1.5;
}
.data-table tr:hover td { background: var(--bg-raised); }
.dt-high   { color: var(--red);          font-weight: 700; }
.dt-mid    { color: var(--prop-accent);  font-weight: 700; }
.dt-low    { color: var(--human-accent); font-weight: 700; }
.dt-outlet { color: var(--text-1);       font-weight: 600; }

/* ── Disparity callout (large number comparison) ── */
.disparity-callout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border); margin: 36px 0;
}
.dc-cell { background: var(--bg-card); padding: 28px 24px; text-align: center; }
.dc-cell.dc-high { border-top: 3px solid var(--human-accent); }
.dc-cell.dc-low  { border-top: 3px solid var(--red); }
.dc-number {
  font-family: 'Playfair Display', serif; font-size: 2.8rem;
  font-weight: 700; line-height: 1; margin-bottom: 8px;
}
.dc-high .dc-number { color: var(--human-accent); }
.dc-low  .dc-number { color: var(--red); }
.dc-label { font-size: 0.7rem; color: var(--text-2); line-height: 1.5; }
.dc-sub   { font-size: 0.6rem; color: var(--text-3); margin-top: 4px; }

@media (max-width: 700px) {
  .headline-compare  { grid-template-columns: 1fr; }
  .disparity-callout { grid-template-columns: 1fr; }
  .viz-bar-label { width: 90px; font-size: 0.68rem; }
  .data-table th, .data-table td { padding: 9px 10px; }
}


/* ═══════════════════════════════════════════════════════════
   DOCUMENTS ARCHIVE — section hero, list rows, glossary
═══════════════════════════════════════════════════════════ */

/* Section hero */
.section-hero {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.section-hero.docs-hero {
  border-bottom-color: rgba(46,110,158,0.25);
}
.sh-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 40px 56px;
}
.sh-breadcrumb {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 28px;
}
.sh-breadcrumb a { color: var(--text-3); text-decoration: none; }
.sh-breadcrumb a:hover { color: var(--docs-accent); }
.sh-breadcrumb span { margin: 0 8px; }

.sh-kicker {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.sh-kicker-bar {
  width: 28px; height: 2px; background: var(--docs-accent);
}
.sh-kicker-text {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--docs-accent);
}

.sh-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.15; color: var(--text-1);
  margin: 0 0 18px;
}
.sh-desc {
  font-size: 1rem; line-height: 1.75; color: var(--text-2);
  max-width: 640px; margin: 0 0 28px;
}
.sh-principle {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(46,110,158,0.06);
  border: 1px solid rgba(46,110,158,0.18);
  border-left: 3px solid var(--docs-accent);
  padding: 14px 18px;
  max-width: 560px;
}
.sh-principle-icon {
  color: var(--docs-accent); font-size: 0.7rem; margin-top: 3px; flex-shrink: 0;
}
.sh-principle-text {
  font-size: 0.78rem; line-height: 1.6; color: var(--text-2); font-style: italic;
}

/* Main content wrapper */
.docs-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 40px 80px;
}

/* Document search */
.doc-search {
  display: flex; gap: 0; margin-bottom: 48px;
  border: 1px solid var(--border);
}
.doc-search-input {
  flex: 1; background: var(--bg-card); border: none; outline: none;
  color: var(--text-1); font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; padding: 14px 18px;
}
.doc-search-input::placeholder { color: var(--text-3); }
.doc-search-input:focus { background: var(--bg-raised); }
.doc-search-btn {
  background: var(--docs-accent); color: #fff; border: none; cursor: pointer;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 14px 22px; transition: background 0.2s;
}
.doc-search-btn:hover { background: #256090; }

/* Category section */
.doc-category { margin-bottom: 48px; }
.doc-cat-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.dch-left { display: flex; align-items: center; gap: 10px; }
.dch-bar {
  width: 20px; height: 2px; background: var(--docs-accent); flex-shrink: 0;
}
.dch-name {
  font-family: 'Playfair Display', serif; font-size: 1.05rem;
  font-weight: 700; color: var(--text-1);
}
.dch-count {
  font-size: 0.6rem; font-weight: 700; color: var(--docs-accent);
  background: rgba(46,110,158,0.1); border: 1px solid rgba(46,110,158,0.2);
  padding: 2px 8px; letter-spacing: 0.08em;
}
.dch-all {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--docs-accent); text-decoration: none;
  border: 1px solid rgba(46,110,158,0.3); padding: 5px 12px;
  transition: background 0.2s;
}
.dch-all:hover { background: rgba(46,110,158,0.08); }

/* Document list */
.doc-list { display: flex; flex-direction: column; gap: 0; }
.doc-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 0 20px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.doc-item:first-child { border-top: 1px solid var(--border); }
.doc-item:hover { background: var(--bg-raised); }

/* Tier badge column */
.doc-item-tier { display: flex; justify-content: center; padding-top: 2px; }
.doc-tier-badge {
  font-size: 0.55rem; font-weight: 900; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 3px 7px; border: 1px solid;
  white-space: nowrap;
}
.t1-badge { color: #4e7e32; border-color: rgba(78,126,50,0.4); background: rgba(78,126,50,0.08); }
.t2-badge { color: var(--docs-accent); border-color: rgba(46,110,158,0.4); background: rgba(46,110,158,0.08); }
.t3-badge { color: var(--text-3); border-color: rgba(84,80,72,0.5); background: rgba(84,80,72,0.06); }

/* Document content column */
.doc-item-content { min-width: 0; }
.doc-item-org {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--docs-accent); margin-bottom: 5px;
}
.doc-item-name {
  font-family: 'Playfair Display', serif; font-size: 0.98rem;
  font-weight: 600; color: var(--text-1); line-height: 1.3;
  text-decoration: none; display: block; margin-bottom: 6px;
}
.doc-item-name:hover { color: var(--docs-accent); }
.doc-item-desc {
  font-size: 0.8rem; line-height: 1.6; color: var(--text-2);
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

/* Action column */
.doc-item-action { padding-top: 4px; }
.doc-ext-link {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--docs-accent); text-decoration: none;
  border: 1px solid rgba(46,110,158,0.3); padding: 6px 12px; white-space: nowrap;
  display: inline-block; transition: background 0.2s;
}
.doc-ext-link:hover { background: rgba(46,110,158,0.1); }

/* Docs empty state */
.docs-empty {
  padding: 40px 0; color: var(--text-3); font-size: 0.9rem;
}

/* Glossary (embedded in docs archive) */
.docs-glossary-section { margin-top: 64px; }
.gloss-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  margin-top: 4px;
}
.gloss-card {
  background: var(--bg-card); padding: 22px 24px;
}
.gc-term {
  font-family: 'Playfair Display', serif; font-size: 0.98rem;
  font-weight: 700; color: var(--text-1); margin-bottom: 8px;
}
.gc-summary {
  font-size: 0.8rem; line-height: 1.65; color: var(--text-2); margin-bottom: 12px;
}
.gc-status {
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 3px 8px; border: 1px solid; display: inline-block;
}
.gc-status.defined  { color: #4e7e32; border-color: rgba(78,126,50,0.4);  background: rgba(78,126,50,0.07); }
.gc-status.contested{ color: var(--prop-accent); border-color: rgba(200,144,31,0.4); background: rgba(200,144,31,0.07); }
.gc-status.legal    { color: var(--docs-accent); border-color: rgba(46,110,158,0.4); background: rgba(46,110,158,0.07); }

/* Verification block (human stories) — extended grid */
.vb-note {
  margin-top: 14px;
  font-size: 0.8rem; line-height: 1.6; color: var(--text-2);
  border-top: 1px solid rgba(78,126,50,0.2); padding-top: 12px;
  font-style: italic;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .article-wrap { grid-template-columns: 1fr; }
  .article-sidebar { position: static; padding: 0 24px 48px; }
  .article-header { padding: 48px 24px 40px; }
  .article-body-col { padding: 40px 24px 64px; border-right: none; }
  nav, .site-nav { grid-template-columns: 1fr auto; padding: 0 20px; }
  .nav-links { display: none; }
  .cvs-cols { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; padding: 48px 24px; gap: 32px; }
  .foot-bottom { padding: 16px 24px; flex-direction: column; gap: 8px; }
  .sec-head { padding: 48px 24px 32px; }
  .sec-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .archive-header { padding: 48px 24px 36px; }
  .archive-filters { padding: 16px 24px; }
  .archive-grid-wrap { padding: 24px 24px 48px; }
  .archive-stats { padding: 16px 24px; gap: 20px; }
  .meth-layout { grid-template-columns: 1fr; }
  .meth-toc { position: static; border-right: none; border-bottom: 1px solid var(--border); }
  .meth-content { padding: 32px 24px 64px; }
  .page-header { padding: 48px 24px 36px; }
  .page-body { padding: 32px 24px 64px; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 64px 24px; }
  .meth-strip { grid-template-columns: 1fr; padding: 32px 24px; }
  /* Docs archive */
  .sh-inner { padding: 48px 24px 40px; }
  .docs-main { padding: 32px 24px 60px; }
  .doc-item { grid-template-columns: 48px 1fr; }
  .doc-item-action { grid-column: 2; padding-top: 8px; }
  .gloss-grid { grid-template-columns: 1fr; }
  .doc-cat-head { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 600px) {
  .foot-top { grid-template-columns: 1fr; }
  .sec-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .nav-search { display: none; }
  /* Docs archive */
  .doc-item { grid-template-columns: 1fr; gap: 8px; }
  .doc-item-tier { justify-content: flex-start; }
  .doc-item-action { padding-top: 4px; }
  .related-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   PROPAGANDA ARTICLE — BALFOUR BLOCK STYLES
   Added from propaganda-balfour-declaration.html
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── BODY ── */
    .article-body-col { padding: 56px 64px 80px 72px; border-right: 1px solid var(--border); }

    .body-text { font-family: 'Source Serif 4', serif; font-size: 1.02rem; font-weight: 300; line-height: 1.9; color: var(--text-2); max-width: 680px; }
    .body-text p { margin-bottom: 24px; }
    .body-text p:last-child { margin-bottom: 0; }
    .body-text strong { color: var(--text-1); font-weight: 600; }
    .body-text em { font-style: italic; }

    /* Section headers */
    .doc-section { margin: 52px 0 0; }
    .section-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
    .sk-bar { width: 18px; height: 2px; background: var(--amber); }
    .sk-text { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); }
    .section-title { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; color: var(--white); margin-bottom: 18px; line-height: 1.2; }

    /* Inline citation */
    .cite {
      display: inline-flex; align-items: center;
      font-family: 'DM Mono', monospace; font-size: 0.62rem; font-weight: 500;
      color: var(--amber); text-decoration: none; vertical-align: super; line-height: 1;
      border-bottom: 1px solid rgba(200,144,31,0.35); cursor: pointer;
      transition: border-color 0.2s, color 0.2s;
    }
    .cite:hover { border-color: var(--amber); color: #dda030; }

    /* Document quote block */
    .doc-quote {
      background: var(--amber-fill);
      border: 1px solid var(--amber-mid);
      border-left: 4px solid var(--amber);
      padding: 24px 28px; margin: 28px 0;
    }
    .dq-label { font-size: 0.56rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
    .dq-label-ref { font-size: 0.56rem; color: var(--text-3); font-weight: 400; letter-spacing: 0; text-transform: none; font-family: 'DM Mono', monospace; }
    .dq-text { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.05rem; font-weight: 400; line-height: 1.75; color: var(--text-1); margin-bottom: 8px; }
    .dq-text .clause-1 { color: var(--text-1); }
    .dq-text .clause-2 { color: var(--text-3); text-decoration: line-through; text-decoration-color: rgba(191,59,46,0.5); text-decoration-thickness: 1px; }
    .dq-text .clause-2-restored { color: var(--amber); }
    .dq-attribution { font-family: 'DM Mono', monospace; font-size: 0.62rem; color: var(--text-3); }

    /* Plain language */
    .plain-lang { background: var(--bg-card); border: 1px solid var(--border); border-top: 2px solid var(--amber); padding: 18px 22px; margin: 8px 0 28px; }
    .pl-label { font-size: 0.56rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
    .pl-text { font-family: 'Source Serif 4', serif; font-size: 0.9rem; font-weight: 300; line-height: 1.75; color: var(--text-2); }
    .pl-text strong { color: var(--text-1); font-weight: 600; }

    /* Academic voice block */
    .academic-voice {
      background: rgba(46,110,158,0.04); border: 1px solid rgba(46,110,158,0.15); border-left: 3px solid var(--blue);
      padding: 22px 26px; margin: 28px 0;
    }
    .av-who { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
    .av-text { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.95rem; line-height: 1.72; color: var(--text-1); margin-bottom: 8px; }
    .av-src { font-family: 'DM Mono', monospace; font-size: 0.62rem; color: var(--text-3); }

    /* Three promises block */
    .three-promises {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: var(--border);
      border: 1px solid var(--border); margin: 28px 0;
    }
    .tp-item { background: var(--bg-card); padding: 20px 18px; display: flex; flex-direction: column; gap: 8px; }
    .tp-n { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: var(--amber); line-height: 1; }
    .tp-year { font-family: 'DM Mono', monospace; font-size: 0.65rem; color: var(--text-3); }
    .tp-name { font-size: 0.78rem; font-weight: 700; color: var(--text-1); line-height: 1.3; }
    .tp-to { font-size: 0.68rem; color: var(--text-3); }
    .tp-promise { font-family: 'Source Serif 4', serif; font-size: 0.8rem; font-weight: 300; line-height: 1.6; color: var(--text-2); border-top: 1px solid var(--border); padding-top: 8px; margin-top: 4px; }
    .tp-conflict { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-top: 4px; }

    /* Lasswell framework */
    .lasswell-frame { background: var(--bg-card); border: 1px solid var(--border); border-top: 2px solid var(--amber); overflow: hidden; margin: 28px 0; }
    .lf-header { padding: 14px 22px; background: var(--bg-raised); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
    .lf-icon { font-size: 0.8rem; color: var(--amber); }
    .lf-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); }
    .lf-body { padding: 20px 22px; }
    .lf-criteria { display: flex; flex-direction: column; gap: 12px; }
    .lf-criterion { display: flex; align-items: flex-start; gap: 14px; }
    .lf-c-n { width: 28px; height: 28px; border-radius: 50%; background: rgba(200,144,31,0.1); border: 1px solid rgba(200,144,31,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 700; color: var(--amber); flex-shrink: 0; }
    .lf-c-text { flex: 1; }
    .lf-c-label { font-size: 0.72rem; font-weight: 700; color: var(--text-1); margin-bottom: 3px; }
    .lf-c-desc { font-family: 'Source Serif 4', serif; font-size: 0.82rem; font-weight: 300; line-height: 1.65; color: var(--text-2); }
    .lf-c-desc strong { color: var(--text-1); font-weight: 600; }

    /* Two-clause analysis */
    .clause-analysis { margin: 28px 0; }
    .ca-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); }
    .ca-col { padding: 22px; background: var(--bg-card); }
    .ca-col.cited { border-top: 3px solid var(--green); }
    .ca-col.omitted { border-top: 3px solid var(--red); }
    .ca-col-label { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
    .ca-col.cited .ca-col-label { color: var(--green); }
    .ca-col.omitted .ca-col-label { color: var(--red); }
    .ca-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
    .ca-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.9rem; line-height: 1.6; margin-bottom: 12px; }
    .ca-col.cited .ca-quote { color: var(--text-1); }
    .ca-col.omitted .ca-quote { color: var(--text-3); }
    .ca-analysis { font-family: 'Source Serif 4', serif; font-size: 0.82rem; font-weight: 300; line-height: 1.68; color: var(--text-2); }
    .ca-analysis strong { color: var(--text-1); font-weight: 600; }

    /* Western media omission evidence */
    .omission-block { background: var(--bg-card); border: 1px solid var(--border); border-top: 2px solid var(--red); margin: 28px 0; overflow: hidden; }
    .ob-header { padding: 13px 22px; background: var(--bg-raised); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
    .ob-icon { font-size: 0.75rem; color: var(--red); }
    .ob-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); }
    .ob-items { }
    .ob-item { padding: 18px 22px; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 14px; }
    .ob-item:last-child { border-bottom: none; }
    .ob-n { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 900; color: var(--border); flex-shrink: 0; padding-top: 1px; line-height: 1; }
    .ob-content { flex: 1; }
    .ob-source { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; }
    .ob-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.88rem; line-height: 1.55; color: var(--text-2); margin-bottom: 7px; }
    .ob-analysis { font-family: 'Source Serif 4', serif; font-size: 0.8rem; font-weight: 300; line-height: 1.65; color: var(--text-2); }
    .ob-analysis strong { color: var(--text-1); font-weight: 600; }

    /* Pull quote */
    .pull-quote { border-left: 2px solid var(--amber); padding: 6px 0 6px 24px; margin: 36px 0; }
    .pull-quote p { font-family: 'Playfair Display', serif; font-size: 1.12rem; font-weight: 600; font-style: italic; line-height: 1.5; color: var(--text-1); }
    .pull-quote cite { display: block; font-size: 0.7rem; color: var(--text-3); margin-top: 8px; font-style: normal; }

    /* Significance note */
    .significance { background: rgba(200,144,31,0.04); border: 1px solid rgba(200,144,31,0.15); border-left: 3px solid var(--amber); padding: 14px 18px; margin: 8px 0 28px; }
    .sig-label { font-size: 0.56rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 6px; }
    .sig-text { font-family: 'Source Serif 4', serif; font-size: 0.88rem; font-weight: 300; line-height: 1.72; color: var(--text-2); }
    .sig-text strong { color: var(--text-1); font-weight: 600; }

    /* Limitations */
    .limitations-block { background: var(--bg-card); border: 1px solid var(--border); border-top: 2px solid var(--text-3); margin: 40px 0; }
    .lim-header { padding: 12px 22px; background: var(--bg-raised); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 7px; }
    .lim-icon { font-size: 0.75rem; color: var(--text-3); }
    .lim-label { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); }
    .lim-body { padding: 18px 22px; font-family: 'Source Serif 4', serif; font-size: 0.88rem; font-weight: 300; line-height: 1.75; color: var(--text-2); }

    /* Sources */
    .sources-block { margin: 44px 0; }
    .sources-title { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
    .sources-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
    .source-item { display: grid; grid-template-columns: 44px 1fr; background: var(--bg-card); border: 1px solid var(--border); margin-bottom: 2px; overflow: hidden; text-decoration: none; transition: border-color 0.2s; }
    .source-item:hover { border-color: var(--border-hi); }
    .st-badge { display: flex; align-items: center; justify-content: center; font-family: 'DM Mono', monospace; font-size: 0.65rem; font-weight: 700; border-right: 1px solid var(--border); }
    .st-badge.t1 { color: #4a90d9; background: rgba(74,144,217,0.06); }
    .st-badge.t2 { color: #5a9e3a; background: rgba(90,158,58,0.06); }
    .st-badge.t3 { color: #c8a830; background: rgba(200,168,48,0.06); }
    .st-badge.t4 { color: #c07030; background: rgba(192,112,48,0.06); }
    .source-content { padding: 10px 14px; }
    .source-org { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 2px; }
    .source-name { font-size: 0.8rem; font-weight: 500; color: var(--text-1); margin-bottom: 3px; line-height: 1.35; }
    .source-url { font-size: 0.65rem; color: var(--amber); font-family: 'DM Mono', monospace; }

    /* Resources */
    .resources-section { margin-top: 56px; padding-top: 40px; border-top: 2px solid var(--border); }
    .res-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
    .res-desc { font-size: 0.78rem; color: var(--text-2); margin-bottom: 24px; font-family: 'Source Serif 4', serif; font-weight: 300; line-height: 1.6; }
    .res-category { margin-bottom: 28px; }
    .res-cat-title { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
    .res-cat-title::after { content: ''; flex: 1; height: 1px; background: var(--amber-mid); }
    .res-list { display: flex; flex-direction: column; gap: 2px; }
    .res-item { display: flex; align-items: flex-start; gap: 12px; padding: 11px 14px; background: var(--bg-card); border: 1px solid var(--border); text-decoration: none; transition: border-color 0.2s; }
    .res-item:hover { border-color: var(--amber); }
    .res-tier { font-family: 'DM Mono', monospace; font-size: 0.6rem; font-weight: 700; color: var(--text-3); flex-shrink: 0; padding-top: 1px; }
    .res-info { display: flex; flex-direction: column; gap: 2px; }
    .res-name { font-size: 0.82rem; font-weight: 500; color: var(--text-1); line-height: 1.3; }
    .res-org  { font-size: 0.65rem; color: var(--text-3); }
    .res-link { font-size: 0.62rem; color: var(--amber); font-family: 'DM Mono', monospace; }

/* ═══════════════════════════════════════════════════════════════════════════
   BALFOUR VISUALIZATIONS
   Added from propaganda-balfour-visualizations.html
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── VIZ SECTION ── */
    .viz-section { padding: 64px; border-bottom: 1px solid var(--border); }
    .viz-section:last-child { border-bottom: none; }

    .viz-hd {
      display: flex; align-items: flex-start;
      justify-content: space-between; gap: 40px;
      margin-bottom: 44px;
    }
    .viz-num {
      font-size: 0.56rem; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--amber);
      margin-bottom: 8px; display: flex; align-items: center; gap: 8px;
    }
    .viz-num::before { content: ''; width: 16px; height: 2px; background: var(--amber); }
    .viz-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.45rem; font-weight: 700;
      color: var(--white); line-height: 1.15; margin-bottom: 6px;
    }
    .viz-title em { font-style: italic; font-weight: 400; color: var(--amber); }
    .viz-subtitle {
      font-family: 'Source Serif 4', serif;
      font-size: 0.82rem; font-weight: 300;
      line-height: 1.65; color: var(--text-2);
      max-width: 520px;
    }
    .viz-source {
      font-size: 0.6rem; color: var(--text-3);
      text-align: right; flex-shrink: 0; line-height: 1.7;
    }

    /* ══════════════════════════════════════
       VIZ 1 — POPULATION INVERSION
    ══════════════════════════════════════ */
    .v1-bg { background: var(--amber-fill); }

    /* Central comparison */
    .pop-main {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--amber-mid);
      border: 1px solid var(--amber-mid);
      margin-bottom: 2px;
    }

    .pop-col {
      padding: 40px 36px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      position: relative;
      overflow: hidden;
    }

    .pop-col.arab { background: #0e1408; }
    .pop-col.jewish { background: #1a0e04; }

    /* Proportion fill */
    .pop-col::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      transition: height 1.4s cubic-bezier(0.16,1,0.3,1);
    }
    .pop-col.arab::after {
      background: linear-gradient(180deg, transparent 0%, rgba(78,126,50,0.08) 100%);
      height: 94%;
    }
    .pop-col.jewish::after {
      background: linear-gradient(180deg, transparent 0%, rgba(200,144,31,0.06) 100%);
      height: 6%;
    }

    .pop-col-label {
      font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em;
      text-transform: uppercase; margin-bottom: 12px;
      position: relative; z-index: 1;
    }
    .pop-col.arab .pop-col-label { color: var(--green); }
    .pop-col.jewish .pop-col-label { color: var(--amber); }

    .pop-pct {
      font-family: 'Playfair Display', serif;
      font-size: clamp(4rem, 8vw, 7rem);
      font-weight: 900; line-height: 1;
      letter-spacing: -0.04em;
      margin-bottom: 6px;
      position: relative; z-index: 1;
    }
    .pop-col.arab .pop-pct { color: var(--green); }
    .pop-col.jewish .pop-pct { color: var(--amber); }

    .pop-group {
      font-size: 0.88rem; font-weight: 600;
      color: var(--text-1); margin-bottom: 6px;
      position: relative; z-index: 1;
    }
    .pop-note {
      font-family: 'Source Serif 4', serif;
      font-size: 0.78rem; font-weight: 300;
      line-height: 1.6; color: var(--text-2);
      position: relative; z-index: 1;
    }

    /* Rights comparison */
    .rights-compare {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--amber-mid);
      border: 1px solid var(--amber-mid);
      margin-bottom: 2px;
    }

    .rc-col { padding: 20px 24px; }
    .rc-col.arab { background: rgba(78,126,50,0.04); }
    .rc-col.jewish { background: rgba(200,144,31,0.04); }

    .rc-col-label {
      font-size: 0.58rem; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; margin-bottom: 14px;
      display: flex; align-items: center; gap: 6px;
    }
    .rc-col.arab .rc-col-label { color: var(--green); }
    .rc-col.jewish .rc-col-label { color: var(--amber); }
    .rc-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

    .rights-list { display: flex; flex-direction: column; gap: 6px; }

    .right-item {
      display: flex; align-items: flex-start; gap: 10px;
      padding: 8px 12px;
    }

    .ri-icon { font-size: 0.75rem; flex-shrink: 0; margin-top: 1px; }
    .ri-label { font-size: 0.82rem; font-weight: 600; color: var(--text-1); margin-bottom: 2px; }
    .ri-note  { font-size: 0.7rem; color: var(--text-2); line-height: 1.4; }

    .right-item.granted { background: rgba(78,126,50,0.06); border: 1px solid rgba(78,126,50,0.15); }
    .right-item.granted .ri-icon { color: var(--green); }

    .right-item.denied  { background: rgba(191,59,46,0.05); border: 1px solid rgba(191,59,46,0.12); }
    .right-item.denied  .ri-icon { color: var(--red); }

    .right-item.silent  { background: var(--bg-raised); border: 1px solid var(--border); }
    .right-item.silent  .ri-icon { color: var(--text-3); }

    /* Summary callout */
    .pop-summary {
      background: var(--bg-card); border: 1px solid var(--border);
      border-left: 3px solid var(--amber); padding: 18px 22px;
      display: flex; align-items: flex-start; gap: 14px;
    }
    .ps-icon { font-size: 1rem; color: var(--amber); flex-shrink: 0; }
    .ps-text {
      font-family: 'Source Serif 4', serif;
      font-size: 0.88rem; font-weight: 300;
      line-height: 1.72; color: var(--text-2);
    }
    .ps-text strong { color: var(--text-1); font-weight: 600; }

    /* ══════════════════════════════════════
       VIZ 2 — THREE PROMISES TIMELINE
    ══════════════════════════════════════ */
    .v2-bg { background: #060c10; }

    /* Horizontal timeline spine */
    .promise-timeline {
      position: relative;
      padding: 0 0 48px;
    }

    .pt-spine {
      position: absolute;
      top: 36px; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, rgba(46,110,158,0.3) 0%, rgba(46,110,158,0.8) 50%, rgba(191,59,46,0.4) 100%);
    }

    .pt-years {
      display: flex;
      justify-content: space-between;
      position: relative;
      margin-bottom: 60px;
    }

    .pt-year-marker {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex: 1;
      position: relative;
    }

    .pt-node {
      width: 14px; height: 14px;
      border-radius: 50%;
      border: 2px solid;
      background: var(--bg);
      z-index: 1;
      margin-bottom: 8px;
      transition: all 0.3s;
    }

    .pt-year-label {
      font-family: 'DM Mono', monospace;
      font-size: 0.68rem; font-weight: 500;
      color: var(--text-3);
    }

    /* Three promise cards */
    .promise-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border);
      border: 1px solid var(--border);
      position: relative;
    }

    /* Connecting lines from spine to cards */
    .promise-card {
      background: var(--bg-card);
      padding: 28px 22px;
      display: flex; flex-direction: column;
      opacity: 0; transform: translateY(12px);
      transition: opacity 0.6s, transform 0.6s;
    }

    .promise-card.in { opacity: 1; transform: none; }

    .promise-card.mcmahon { border-top: 3px solid var(--blue); }
    .promise-card.sykes   { border-top: 3px solid var(--sand); }
    .promise-card.balfour { border-top: 3px solid var(--amber); }

    .pc-n {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem; font-weight: 900;
      line-height: 1; margin-bottom: 4px;
    }
    .promise-card.mcmahon .pc-n { color: var(--blue); }
    .promise-card.sykes   .pc-n { color: var(--sand); }
    .promise-card.balfour .pc-n { color: var(--amber); }

    .pc-date {
      font-family: 'DM Mono', monospace;
      font-size: 0.65rem; color: var(--text-3);
      margin-bottom: 10px;
    }
    .pc-name {
      font-size: 0.82rem; font-weight: 700;
      color: var(--text-1); margin-bottom: 4px; line-height: 1.3;
    }
    .pc-to {
      font-size: 0.65rem; color: var(--text-3);
      margin-bottom: 14px; font-family: 'DM Mono', monospace;
    }
    .pc-promise {
      font-family: 'Source Serif 4', serif;
      font-size: 0.82rem; font-weight: 300;
      line-height: 1.65; color: var(--text-2);
      flex: 1; margin-bottom: 14px;
    }
    .pc-conflict {
      font-size: 0.6rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--red); display: flex; align-items: center; gap: 5px;
      padding-top: 12px; border-top: 1px solid var(--border);
    }
    .pc-conflict::before { content: '⚡'; font-size: 0.7rem; }

    /* Contradiction arrows */
    .contradiction-band {
      margin: 2px 0;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-top: none;
      padding: 16px 22px;
      display: flex; align-items: center; gap: 12px;
    }
    .cb-icon { font-size: 1rem; color: var(--red); flex-shrink: 0; }
    .cb-text {
      font-family: 'Source Serif 4', serif;
      font-size: 0.82rem; font-weight: 300;
      line-height: 1.65; color: var(--text-2);
    }
    .cb-text strong { color: var(--text-1); font-weight: 600; }

    /* Schneer quote */
    .promise-quote {
      background: rgba(46,110,158,0.04); border: 1px solid rgba(46,110,158,0.15);
      border-left: 3px solid var(--blue); padding: 18px 22px; margin-top: 16px;
    }
    .pq-who { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
    .pq-text { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.88rem; line-height: 1.65; color: var(--text-1); margin-bottom: 6px; }
    .pq-src  { font-family: 'DM Mono', monospace; font-size: 0.6rem; color: var(--text-3); }

    /* Palestine claimed three times */
    .claimed-three {
      margin-top: 16px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-top: 2px solid var(--red);
      overflow: hidden;
    }
    .ct-header {
      padding: 12px 20px; background: var(--bg-raised);
      border-bottom: 1px solid var(--border);
      display: flex; align-items: center; gap: 8px;
    }
    .ct-icon { font-size: 0.8rem; color: var(--red); }
    .ct-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); }
    .ct-body {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: var(--border);
    }
    .ct-cell {
      background: var(--bg-card); padding: 14px 16px;
      opacity: 0; transform: translateY(8px);
      transition: opacity 0.5s, transform 0.5s;
    }
    .ct-cell.in { opacity: 1; transform: none; }
    .ct-cell-to { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }
    .ct-cell.mcm .ct-cell-to { color: var(--blue); }
    .ct-cell.sykes .ct-cell-to { color: var(--sand); }
    .ct-cell.balf .ct-cell-to { color: var(--amber); }
    .ct-cell-what { font-size: 0.78rem; font-weight: 600; color: var(--text-1); margin-bottom: 3px; }
    .ct-cell-note { font-size: 0.68rem; color: var(--text-2); line-height: 1.4; }

    /* ══════════════════════════════════════
       VIZ 3 — LASSWELL QUADRANT
    ══════════════════════════════════════ */
    .v3-bg { background: var(--amber-fill); }

    /* Framework definition */
    .lasswell-def {
      background: var(--bg-card); border: 1px solid var(--amber-mid);
      padding: 20px 24px; margin-bottom: 20px;
      display: flex; align-items: flex-start; gap: 16px;
    }
    .ld-quote-mark {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem; font-weight: 900;
      color: var(--amber); line-height: 1;
      flex-shrink: 0; margin-top: -4px;
      opacity: 0.4;
    }
    .ld-content { flex: 1; }
    .ld-text {
      font-family: 'Playfair Display', serif;
      font-style: italic; font-size: 1rem;
      line-height: 1.65; color: var(--text-1);
      margin-bottom: 8px;
    }
    .ld-attr {
      font-family: 'DM Mono', monospace;
      font-size: 0.62rem; color: var(--text-3);
    }

    /* Quadrant grid */
    .quadrant-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      background: var(--amber-mid);
      border: 1px solid var(--amber-mid);
    }

    .quad-cell {
      background: var(--bg-card);
      padding: 28px 26px;
      display: flex; flex-direction: column; gap: 16px;
      opacity: 0; transform: translateY(10px);
      transition: opacity 0.6s, transform 0.6s;
    }
    .quad-cell.in { opacity: 1; transform: none; }

    .qc-header { display: flex; align-items: flex-start; gap: 14px; }

    .qc-n {
      font-family: 'Playfair Display', serif;
      font-size: 3rem; font-weight: 900;
      line-height: 1; color: var(--border);
      flex-shrink: 0;
    }

    .qc-head-text { flex: 1; }
    .qc-function {
      font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--amber); margin-bottom: 5px;
    }
    .qc-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem; font-weight: 700;
      color: var(--white); line-height: 1.2;
    }

    /* Definition block */
    .qc-def {
      background: rgba(200,144,31,0.05);
      border: 1px solid rgba(200,144,31,0.15);
      padding: 12px 14px;
    }
    .qc-def-label {
      font-size: 0.54rem; font-weight: 700; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--amber); margin-bottom: 5px;
    }
    .qc-def-text {
      font-family: 'Source Serif 4', serif;
      font-size: 0.82rem; font-weight: 300;
      line-height: 1.6; color: var(--text-2);
      font-style: italic;
    }

    /* Application block */
    .qc-app {
      background: var(--bg-raised);
      border: 1px solid var(--border);
      border-left: 3px solid var(--amber);
      padding: 12px 14px;
    }
    .qc-app-label {
      font-size: 0.54rem; font-weight: 700; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--text-3); margin-bottom: 5px;
    }
    .qc-app-text {
      font-family: 'Source Serif 4', serif;
      font-size: 0.82rem; font-weight: 300;
      line-height: 1.65; color: var(--text-2);
    }
    .qc-app-text strong { color: var(--text-1); font-weight: 600; }

    /* Audience tag */
    .qc-audience {
      display: flex; align-items: center; gap: 6px;
      flex-wrap: wrap;
    }
    .qc-aud-label {
      font-size: 0.54rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--text-3);
    }
    .qc-aud-tag {
      font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--amber);
      border: 1px solid rgba(200,144,31,0.3);
      padding: 2px 7px;
    }

    /* Conclusion band */
    .lasswell-conclusion {
      margin-top: 2px;
      background: var(--bg-card);
      border: 1px solid var(--amber-mid);
      border-top: none;
      padding: 18px 24px;
      display: flex; align-items: flex-start; gap: 12px;
    }
    .lc-icon { font-size: 0.9rem; color: var(--amber); flex-shrink: 0; margin-top: 1px; }
    .lc-text {
      font-family: 'Source Serif 4', serif;
      font-size: 0.88rem; font-weight: 300;
      line-height: 1.72; color: var(--text-2);
    }
    .lc-text strong { color: var(--text-1); font-weight: 600; }

    /* ── ANIMATIONS ── */
    @keyframes up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .viz-section { padding: 36px 20px; }
      .page-header { padding: 40px 20px 36px; }
      .viz-hd { flex-direction: column; gap: 14px; }
      .viz-source { text-align: left; }
      .pop-main { grid-template-columns: 1fr; }
      .rights-compare { grid-template-columns: 1fr; }
      .promise-cards { grid-template-columns: 1fr; }
      .ct-body { grid-template-columns: 1fr; }
      .quadrant-grid { grid-template-columns: 1fr; }
    }

/* ═══════════════════════════════════════════════════════════════════════════
   BALFOUR RESPONSIVE OVERRIDES
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .article-wrap { grid-template-columns: 1fr; }
      .article-sidebar { position: static; padding: 0 24px 48px; }
      .article-header { padding: 48px 24px 40px; }
      .article-body-col { padding: 40px 24px 64px; border-right: none; }
      nav { grid-template-columns: 1fr auto; padding: 0 20px; } .nav-links { display: none; }
      .three-promises { grid-template-columns: 1fr; }
      .ca-cols { grid-template-columns: 1fr; }
      .foot-top { grid-template-columns: 1fr 1fr; padding: 48px 24px; gap: 32px; }
      .foot-bottom { padding: 16px 24px; flex-direction: column; gap: 8px; }
    }


/* ═══════════════════════════════════════════════════════════════════════════
   DOCUMENT ARTICLE — RESOLUTION 242 BLOCK STYLES
   Added from doc-resolution-242-1967.html
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── DOCUMENT HEADER ── */
    .doc-header {
      background: var(--blue-fill); border-bottom: 1px solid var(--blue-mid);
      padding: 72px 64px 56px 72px; position: relative; overflow: hidden;
    }
    .doc-header::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 85% 35%, rgba(46,110,158,0.08) 0%, transparent 60%);
    }

    .breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 36px; opacity: 0; animation: up 0.8s 0.1s forwards; }
    .bc-link { font-size: 0.65rem; color: var(--text-3); text-decoration: none; transition: color 0.2s; }
    .bc-link:hover { color: var(--blue); }
    .bc-sep { font-size: 0.65rem; color: var(--text-3); }
    .bc-cur { font-size: 0.65rem; color: var(--blue); font-weight: 500; }

    .doc-type-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; opacity: 0; animation: up 0.8s 0.2s forwards; }
    .doc-type-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); border: 1px solid rgba(46,110,158,0.35); padding: 3px 9px; }
    .doc-type-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--blue); }
    .doc-tier-badge { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #4a90d9; border: 1px solid rgba(74,144,217,0.3); background: rgba(74,144,217,0.06); padding: 3px 9px; }

    .doc-ref-block { background: rgba(0,0,0,0.3); border-left: 3px solid var(--blue); padding: 14px 18px; margin-bottom: 24px; display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; opacity: 0; animation: up 0.8s 0.25s forwards; }
    .ref-item { display: flex; flex-direction: column; gap: 3px; }
    .ref-label { font-size: 0.56rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); }
    .ref-value { font-family: 'DM Mono', monospace; font-size: 0.78rem; color: var(--blue); font-weight: 500; }

    .doc-title { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 900; line-height: 1.08; letter-spacing: -0.02em; color: var(--white); margin-bottom: 16px; opacity: 0; animation: up 0.8s 0.35s forwards; }

    .doc-deck { font-family: 'Source Serif 4', serif; font-size: 1rem; font-weight: 300; line-height: 1.82; color: var(--text-2); max-width: 640px; margin-bottom: 28px; opacity: 0; animation: up 0.8s 0.45s forwards; }

    .doc-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 0.7rem; color: var(--text-3); padding-top: 20px; border-top: 1px solid var(--blue-mid); opacity: 0; animation: up 0.8s 0.55s forwards; }
    .meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-3); }
    .meta-verified { color: var(--amber); }

    /* ── BODY ── */
    .doc-body-col { padding: 56px 64px 80px 72px; border-right: 1px solid var(--border); }

    /* Body text */
    .body-text { font-family: 'Source Serif 4', serif; font-size: 1.02rem; font-weight: 300; line-height: 1.9; color: var(--text-2); max-width: 680px; }
    .body-text p { margin-bottom: 24px; }
    .body-text p:last-child { margin-bottom: 0; }
    .body-text strong { color: var(--text-1); font-weight: 600; }
    .body-text em { font-style: italic; }

    /* Section headers */
    .doc-section { margin: 52px 0 0; }
    .section-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
    .sk-bar { width: 18px; height: 2px; background: var(--blue); }
    .sk-text { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); }
    .section-title { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; color: var(--white); margin-bottom: 18px; line-height: 1.2; }

    /* ── INLINE CITATION ── */
    .cite {
      display: inline-flex; align-items: center;
      font-family: 'DM Mono', monospace; font-size: 0.62rem; font-weight: 500;
      color: var(--blue); text-decoration: none; vertical-align: super; line-height: 1;
      border-bottom: 1px solid rgba(46,110,158,0.35); cursor: pointer;
      transition: border-color 0.2s, color 0.2s;
    }
    .cite:hover { border-color: var(--blue); color: #6aaddb; }

    /* ── DOCUMENT QUOTE BLOCK ── */
    .doc-quote {
      background: var(--blue-fill);
      border: 1px solid var(--blue-mid);
      border-left: 4px solid var(--blue);
      padding: 24px 28px; margin: 28px 0;
    }
    .dq-label { font-size: 0.56rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
    .dq-label-ref { font-size: 0.56rem; color: var(--text-3); font-weight: 400; letter-spacing: 0; text-transform: none; font-family: 'DM Mono', monospace; }
    .dq-text { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; font-weight: 400; line-height: 1.72; color: var(--text-1); margin-bottom: 8px; }
    .dq-attribution { font-size: 0.65rem; color: var(--text-3); font-family: 'DM Mono', monospace; }

    /* ── PLAIN LANGUAGE BLOCK ── */
    .plain-lang { background: var(--bg-card); border: 1px solid var(--border); border-top: 2px solid var(--blue); padding: 18px 22px; margin: 8px 0 28px; }
    .pl-label { font-size: 0.56rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
    .pl-text { font-family: 'Source Serif 4', serif; font-size: 0.9rem; font-weight: 300; line-height: 1.75; color: var(--text-2); }
    .pl-text strong { color: var(--text-1); font-weight: 600; }

    /* Significance note */
    .significance { background: rgba(200,144,31,0.04); border: 1px solid rgba(200,144,31,0.15); border-left: 3px solid var(--amber); padding: 14px 18px; margin: 8px 0 28px; }
    .sig-label { font-size: 0.56rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin-bottom: 6px; }
    .sig-text { font-family: 'Source Serif 4', serif; font-size: 0.86rem; font-weight: 300; line-height: 1.72; color: var(--text-2); }
    .sig-text strong { color: var(--text-1); font-weight: 600; }

    /* ── LANGUAGE COMPARISON ── */
    .lang-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); margin: 24px 0; }
    .lc-col { padding: 20px 22px; background: var(--bg-card); }
    .lc-lang { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
    .lc-col.english .lc-lang { color: var(--text-3); }
    .lc-col.french .lc-lang  { color: var(--blue); }
    .lc-flag { font-size: 0.9rem; }
    .lc-text { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.95rem; line-height: 1.55; margin-bottom: 10px; }
    .lc-col.english .lc-text { color: var(--text-2); }
    .lc-col.french  .lc-text { color: var(--text-1); }
    .lc-note { font-size: 0.78rem; color: var(--text-3); line-height: 1.6; }
    .lc-key { font-size: 0.72rem; font-family: 'DM Mono', monospace; font-weight: 500; }
    .lc-col.english .lc-key { color: var(--text-3); text-decoration: line-through; }
    .lc-col.french  .lc-key { color: var(--blue); }

    /* ── PATTERN OF MISUSE ── */
    .pattern-block { background: var(--bg-card); border: 1px solid var(--border); border-top: 2px solid var(--red); margin: 28px 0; overflow: hidden; }
    .pb-header { padding: 14px 22px; background: var(--bg-raised); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
    .pb-n { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 900; color: var(--border); line-height: 1; }
    .pb-title { font-size: 0.72rem; font-weight: 700; color: var(--red); flex: 1; margin: 0 12px; }
    .pb-body { padding: 20px 22px; }
    .pb-text { font-family: 'Source Serif 4', serif; font-size: 0.9rem; font-weight: 300; line-height: 1.78; color: var(--text-2); margin-bottom: 16px; }
    .pb-text strong { color: var(--text-1); font-weight: 600; }

    /* Evidence quote inside pattern */
    .evidence-quote { background: var(--bg-raised); border-left: 3px solid var(--text-3); padding: 16px 20px; margin: 14px 0; }
    .eq-who { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 7px; }
    .eq-text { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.9rem; line-height: 1.6; color: var(--text-1); margin-bottom: 6px; }
    .eq-src { font-size: 0.62rem; color: var(--text-3); font-family: 'DM Mono', monospace; }

    /* ── WHAT IT DOES NOT SAY ── */
    .what-not { background: var(--bg-card); border: 1px solid var(--border); border-top: 2px solid var(--text-3); margin: 40px 0; }
    .wn-header { padding: 13px 22px; background: var(--bg-raised); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
    .wn-icon { font-size: 0.75rem; color: var(--text-3); }
    .wn-label { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); }
    .wn-items { padding: 8px 0; }
    .wn-item { display: flex; align-items: flex-start; gap: 14px; padding: 12px 22px; border-bottom: 1px solid var(--border); }
    .wn-item:last-child { border-bottom: none; }
    .wn-dash { font-family: 'DM Mono', monospace; font-size: 0.8rem; color: var(--text-3); flex-shrink: 0; margin-top: 2px; }
    .wn-text { font-family: 'Source Serif 4', serif; font-size: 0.86rem; font-weight: 300; line-height: 1.65; color: var(--text-2); }
    .wn-text strong { color: var(--text-1); font-weight: 600; }

    /* ── SOURCES BLOCK ── */
    .sources-block { margin: 44px 0; }
    .sources-title { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
    .sources-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
    .source-item { display: grid; grid-template-columns: 44px 1fr; background: var(--bg-card); border: 1px solid var(--border); margin-bottom: 2px; overflow: hidden; text-decoration: none; transition: border-color 0.2s; }
    .source-item:hover { border-color: var(--border-hi); }
    .st-badge { display: flex; align-items: center; justify-content: center; font-family: 'DM Mono', monospace; font-size: 0.65rem; font-weight: 700; border-right: 1px solid var(--border); }
    .st-badge.t1 { color: #4a90d9; background: rgba(74,144,217,0.06); }
    .st-badge.t2 { color: #5a9e3a; background: rgba(90,158,58,0.06); }
    .st-badge.t3 { color: #c8a830; background: rgba(200,168,48,0.06); }
    .st-badge.t4 { color: #c07030; background: rgba(192,112,48,0.06); }
    .source-content { padding: 10px 14px; }
    .source-org { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 2px; }
    .source-name { font-size: 0.8rem; font-weight: 500; color: var(--text-1); margin-bottom: 3px; line-height: 1.35; }
    .source-url { font-size: 0.65rem; color: var(--blue); font-family: 'DM Mono', monospace; }

    /* ── RESOURCES ── */
    .resources-section { margin-top: 56px; padding-top: 40px; border-top: 2px solid var(--border); }
    .res-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
    .res-desc { font-size: 0.78rem; color: var(--text-2); margin-bottom: 24px; font-family: 'Source Serif 4', serif; font-weight: 300; line-height: 1.6; }
    .res-category { margin-bottom: 28px; }
    .res-cat-title { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
    .res-cat-title::after { content: ''; flex: 1; height: 1px; background: var(--blue-mid); }
    .res-list { display: flex; flex-direction: column; gap: 2px; }
    .res-item { display: flex; align-items: flex-start; gap: 12px; padding: 11px 14px; background: var(--bg-card); border: 1px solid var(--border); text-decoration: none; transition: border-color 0.2s; }
    .res-item:hover { border-color: var(--blue); }
    .res-tier { font-family: 'DM Mono', monospace; font-size: 0.6rem; font-weight: 700; color: var(--text-3); flex-shrink: 0; padding-top: 1px; }
    .res-info { display: flex; flex-direction: column; gap: 2px; }
    .res-name { font-size: 0.82rem; font-weight: 500; color: var(--text-1); line-height: 1.3; }
    .res-org  { font-size: 0.65rem; color: var(--text-3); }
    .res-link { font-size: 0.62rem; color: var(--blue); font-family: 'DM Mono', monospace; }

    /* ── RELATED DOCUMENTS ── */
    .related-docs { margin-top: 40px; }
    .related-docs-title { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
    .related-docs-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
    .related-doc-item { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); text-decoration: none; transition: padding-left 0.2s; }
    .related-doc-item:last-child { border-bottom: none; }
    .related-doc-item:hover { padding-left: 5px; }
    .rdi-type { font-size: 0.56rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 3px; }
    .rdi-title { font-family: 'Playfair Display', serif; font-size: 0.88rem; font-weight: 600; color: var(--text-2); transition: color 0.2s; line-height: 1.3; }
    .related-doc-item:hover .rdi-title { color: var(--blue); }

/* ═══════════════════════════════════════════════════════════════════════════
   RESOLUTION 242 VISUALIZATIONS
   Added from doc-resolution-242-visualizations.html
   ═══════════════════════════════════════════════════════════════════════════ */


    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:        #0c0c0a;
      --bg-card:   #131311;
      --bg-raised: #181816;
      --border:    #252523;
      --text-1:    #ece8df;
      --text-2:    #9c968e;
      --text-3:    #545048;
      --white:     #f5f1e8;
      --blue:      #2e6e9e;
      --blue-fill: #040c12;
      --blue-mid:  #0c2030;
      --blue-hi:   #4a90d9;
      --amber:     #c8901f;
      --red:       #bf3b2e;
      --green:     #4e7e32;
    }

    html { scroll-behavior: smooth; }
    body { background: var(--bg); color: var(--text-1); font-family: 'DM Sans', sans-serif; font-size: 15px; line-height: 1.6; overflow-x: hidden; }

    ::-webkit-scrollbar { width: 3px; }
    ::-webkit-scrollbar-thumb { background: var(--blue); }

    body::after {
      content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9000; opacity: 0.02;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    /* PAGE HEADER */
    .page-header {
      padding: 56px 64px 48px;
      background: var(--blue-fill);
      border-bottom: 1px solid var(--blue-mid);
    }
    .ph-kicker { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
    .ph-kicker::before { content: ''; width: 20px; height: 2px; background: var(--blue); }
    .ph-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 10px; letter-spacing: -0.02em; }
    .ph-title em { font-style: italic; font-weight: 400; color: var(--blue-hi); }
    .ph-desc { font-family: 'Source Serif 4', serif; font-size: 0.92rem; font-weight: 300; line-height: 1.72; color: var(--text-2); max-width: 580px; }

    /* VIZ SECTION WRAPPER */
    .viz-section { padding: 64px; border-bottom: 1px solid var(--border); }
    .viz-section:last-child { border-bottom: none; }

    /* VIZ HEADER */
    .viz-hd { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
    .viz-hd-left {}
    .viz-num { font-size: 0.56rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
    .viz-num::before { content: ''; width: 16px; height: 2px; background: var(--blue); }
    .viz-title { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 6px; }
    .viz-title em { font-style: italic; font-weight: 400; color: var(--blue-hi); }
    .viz-subtitle { font-family: 'Source Serif 4', serif; font-size: 0.82rem; font-weight: 300; line-height: 1.65; color: var(--text-2); max-width: 520px; }
    .viz-source { font-size: 0.6rem; color: var(--text-3); text-align: right; flex-shrink: 0; line-height: 1.7; }
    .viz-source a { color: var(--text-3); text-decoration: underline; transition: color 0.2s; }
    .viz-source a:hover { color: var(--blue); }

    /* ════════════════════════════════
       VIZ 1 — DRAFTING TIMELINE
    ════════════════════════════════ */
    .v1-bg { background: var(--blue-fill); }

    /* Timeline track */
    .tl-track {
      position: relative;
      padding-left: 0;
    }

    /* Central spine */
    .tl-spine-wrap {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .tl-event {
      display: grid;
      grid-template-columns: 1fr 48px 1fr;
      gap: 0;
      align-items: stretch;
      min-height: 90px;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.5s, transform 0.5s;
    }
    .tl-event.in { opacity: 1; transform: none; }

    .tl-left { padding: 0 24px 0 0; display: flex; flex-direction: column; justify-content: center; align-items: flex-end; }
    .tl-right { padding: 0 0 0 24px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }

    /* Alternate left/right */
    .tl-event.left-side .tl-left  { order: 1; }
    .tl-event.left-side .tl-center { order: 2; }
    .tl-event.left-side .tl-right { order: 3; visibility: hidden; }
    .tl-event.right-side .tl-left  { order: 1; visibility: hidden; }
    .tl-event.right-side .tl-center { order: 2; }
    .tl-event.right-side .tl-right { order: 3; }

    .tl-center {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
    }

    .tl-line {
      width: 2px;
      flex: 1;
      background: var(--blue-mid);
    }

    .tl-line.top { background: linear-gradient(180deg, transparent 0%, var(--blue-mid) 100%); }
    .tl-line.bottom { background: linear-gradient(180deg, var(--blue-mid) 0%, transparent 100%); }

    .tl-node {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 2px solid;
      display: flex; align-items: center; justify-content: center;
      font-family: 'DM Mono', monospace;
      font-size: 0.6rem; font-weight: 500;
      flex-shrink: 0;
      transition: all 0.3s;
      z-index: 1;
      cursor: default;
    }

    .tl-node.war     { border-color: var(--red);   color: var(--red);   background: rgba(191,59,46,0.1); }
    .tl-node.draft   { border-color: var(--text-3); color: var(--text-3); background: var(--bg); }
    .tl-node.blocked { border-color: var(--amber);  color: var(--amber);  background: rgba(200,144,31,0.08); }
    .tl-node.adopted { border-color: var(--blue);   color: var(--blue);   background: rgba(46,110,158,0.12); }
    .tl-node.reaction{ border-color: var(--red);    color: var(--red);    background: rgba(191,59,46,0.08); }
    .tl-node.legal   { border-color: var(--green);  color: var(--green);  background: rgba(78,126,50,0.08); }

    .tl-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-left: 3px solid transparent;
      padding: 14px 18px;
      max-width: 320px;
      transition: all 0.2s;
    }

    .tl-event:hover .tl-card { border-left-color: var(--blue); background: var(--bg-raised); }

    .tl-card-date { font-family: 'DM Mono', monospace; font-size: 0.65rem; color: var(--blue); margin-bottom: 5px; }
    .tl-card-event { font-size: 0.84rem; font-weight: 600; color: var(--text-1); margin-bottom: 4px; line-height: 1.3; }
    .tl-card-detail { font-family: 'Source Serif 4', serif; font-size: 0.78rem; font-weight: 300; line-height: 1.6; color: var(--text-2); }

    .tl-card.war     { border-left-color: var(--red) !important; }
    .tl-card.blocked { border-left-color: var(--amber) !important; }
    .tl-card.adopted { border-left-color: var(--blue) !important; background: rgba(46,110,158,0.04); }
    .tl-card.reaction{ border-left-color: var(--red) !important; }
    .tl-card.legal   { border-left-color: var(--green) !important; }

    /* Tag inside card */
    .tl-tag {
      display: inline-block; font-size: 0.54rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 2px 7px; border: 1px solid; margin-bottom: 6px;
    }
    .tl-tag.war     { color: var(--red);   border-color: rgba(191,59,46,0.3); }
    .tl-tag.blocked { color: var(--amber); border-color: rgba(200,144,31,0.3); }
    .tl-tag.adopted { color: var(--blue);  border-color: rgba(46,110,158,0.3); }
    .tl-tag.reaction{ color: var(--red);   border-color: rgba(191,59,46,0.3); }
    .tl-tag.legal   { color: var(--green); border-color: rgba(78,126,50,0.3); }
    .tl-tag.draft   { color: var(--text-3); border-color: var(--border); }

    /* ════════════════════════════════
       VIZ 2 — SIX LANGUAGES
    ════════════════════════════════ */
    .v2-bg { background: #060c10; }

    /* Clause display */
    .clause-display {
      background: rgba(46,110,158,0.06);
      border: 1px solid var(--blue-mid);
      padding: 20px 24px;
      margin-bottom: 32px;
      text-align: center;
    }
    .cd-label { font-size: 0.56rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px; }
    .cd-text { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.05rem; line-height: 1.6; color: var(--text-1); }
    .cd-ref { font-family: 'DM Mono', monospace; font-size: 0.62rem; color: var(--text-3); margin-top: 8px; }

    /* Language cards grid */
    .lang-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border);
      border: 1px solid var(--border);
      margin-bottom: 24px;
    }

    .lang-card {
      background: var(--bg-card);
      padding: 22px 20px;
      display: flex; flex-direction: column; gap: 10px;
      opacity: 0; transform: translateY(8px);
      transition: opacity 0.5s, transform 0.5s;
      position: relative;
    }
    .lang-card.in { opacity: 1; transform: none; }

    /* Top accent line */
    .lang-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px;
    }
    .lang-card.ambiguous::before { background: var(--text-3); }
    .lang-card.definite::before  { background: var(--blue); }

    .lc-head { display: flex; align-items: center; justify-content: space-between; }
    .lc-flag-name { display: flex; align-items: center; gap: 8px; }
    .lc-flag { font-size: 1.2rem; }
    .lc-lang-name { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2); }
    .lc-status-badge {
      font-size: 0.54rem; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; padding: 2px 7px; border: 1px solid;
    }
    .lc-status-badge.ambiguous { color: var(--text-3); border-color: var(--border); }
    .lc-status-badge.definite  { color: var(--blue);   border-color: rgba(46,110,158,0.35); }
    .lc-status-badge.no-article { color: var(--amber);  border-color: rgba(200,144,31,0.35); }
    .lc-status-badge.working   { font-size: 0.48rem; color: var(--blue-hi); border-color: rgba(74,144,217,0.25); background: rgba(74,144,217,0.05); }

    .lc-phrase {
      font-family: 'Playfair Display', serif;
      font-style: italic; font-size: 0.92rem;
      line-height: 1.5; color: var(--text-1);
    }

    /* Highlight the key word */
    .lc-key-word {
      font-style: normal;
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-style: solid;
    }
    .definite  .lc-key-word { color: var(--blue-hi); text-decoration-color: var(--blue); }
    .ambiguous .lc-key-word { color: var(--text-3);  text-decoration-color: var(--text-3); text-decoration-style: dashed; }

    .lc-translation {
      font-size: 0.72rem; color: var(--text-3);
      font-family: 'DM Mono', monospace; line-height: 1.5;
    }

    .lc-note {
      font-family: 'Source Serif 4', serif;
      font-size: 0.76rem; font-weight: 300;
      line-height: 1.6; color: var(--text-2);
    }

    /* Summary bar */
    .lang-summary {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1px; background: var(--border); border: 1px solid var(--border);
    }
    .ls-cell { background: var(--bg-card); padding: 16px 20px; }
    .ls-n {
      font-family: 'Playfair Display', serif;
      font-size: 2rem; font-weight: 900; line-height: 1; margin-bottom: 5px;
    }
    .ls-n.blue { color: var(--blue); }
    .ls-n.grey { color: var(--text-3); }
    .ls-label { font-size: 0.66rem; color: var(--text-2); line-height: 1.4; }
    .ls-note  { font-size: 0.6rem; color: var(--text-3); margin-top: 3px; }

    /* ════════════════════════════════
       VIZ 3 — REQUIREMENTS CHECKLIST
    ════════════════════════════════ */
    .v3-bg { background: #060c10; }

    .checklist-header {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      margin-bottom: 2px;
    }
    .ch-col {
      background: var(--bg-raised);
      padding: 12px 18px;
      font-size: 0.58rem; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    .ch-col.req  { color: var(--text-3); }
    .ch-col.stat { color: var(--blue);   text-align: center; }
    .ch-col.note { color: var(--text-3); }

    .req-row {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      margin-bottom: 2px;
      opacity: 0; transform: translateX(-12px);
      transition: opacity 0.5s, transform 0.5s;
    }
    .req-row.in { opacity: 1; transform: none; }

    .req-cell { background: var(--bg-card); padding: 16px 18px; }
    .req-cell.stat-cell { display: flex; align-items: center; justify-content: center; background: var(--bg-card); }
    .req-cell.note-cell { background: var(--bg-card); }

    .req-para {
      font-family: 'DM Mono', monospace;
      font-size: 0.6rem; color: var(--text-3); margin-bottom: 4px;
    }
    .req-title { font-size: 0.84rem; font-weight: 600; color: var(--text-1); margin-bottom: 4px; line-height: 1.3; }
    .req-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.78rem; line-height: 1.5; color: var(--text-2); }

    /* Status icon */
    .status-icon {
      width: 36px; height: 36px;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 1rem; font-weight: 700;
    }
    .status-icon.not-implemented { background: rgba(191,59,46,0.12); color: var(--red); border: 1px solid rgba(191,59,46,0.3); }
    .status-icon.partial         { background: rgba(200,144,31,0.1);  color: var(--amber); border: 1px solid rgba(200,144,31,0.3); }
    .status-icon.implemented     { background: rgba(78,126,50,0.1);   color: var(--green); border: 1px solid rgba(78,126,50,0.3); }
    .status-icon.contested       { background: rgba(46,110,158,0.1);  color: var(--blue);  border: 1px solid rgba(46,110,158,0.3); }

    .note-text {
      font-family: 'Source Serif 4', serif;
      font-size: 0.76rem; font-weight: 300;
      line-height: 1.6; color: var(--text-2);
    }
    .note-src {
      font-family: 'DM Mono', monospace;
      font-size: 0.58rem; color: var(--text-3);
      margin-top: 4px;
    }

    /* Legend */
    .req-legend {
      display: flex; gap: 24px; flex-wrap: wrap;
      margin-top: 16px; padding: 12px 0;
      border-top: 1px solid var(--border);
    }
    .rl-item { display: flex; align-items: center; gap: 8px; font-size: 0.64rem; color: var(--text-2); }
    .rl-dot { width: 10px; height: 10px; border-radius: 50%; border: 1px solid; }
    .rl-dot.not-implemented { background: rgba(191,59,46,0.12); border-color: rgba(191,59,46,0.4); }
    .rl-dot.partial         { background: rgba(200,144,31,0.1);  border-color: rgba(200,144,31,0.4); }
    .rl-dot.implemented     { background: rgba(78,126,50,0.1);   border-color: rgba(78,126,50,0.4); }
    .rl-dot.contested       { background: rgba(46,110,158,0.1);  border-color: rgba(46,110,158,0.4); }

    /* Summary stats */
    .req-summary {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1px; background: var(--border);
      border: 1px solid var(--border); margin-top: 16px;
    }
    .rs-cell { background: var(--bg-card); padding: 16px 18px; }
    .rs-n { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; line-height: 1; margin-bottom: 5px; }
    .rs-n.red { color: var(--red); } .rs-n.amber { color: var(--amber); } .rs-n.green { color: var(--green); } .rs-n.blue { color: var(--blue); }
    .rs-label { font-size: 0.63rem; color: var(--text-2); line-height: 1.4; }
    .rs-years  { font-size: 0.58rem; color: var(--text-3); margin-top: 2px; }

    /* ANIMATIONS */
    @keyframes up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .viz-section { padding: 36px 24px; }
      .page-header { padding: 40px 24px 36px; }
      .viz-hd { flex-direction: column; gap: 14px; }
      .viz-source { text-align: left; }
      .lang-grid { grid-template-columns: 1fr 1fr; }
      .lang-summary { grid-template-columns: 1fr; }
      .checklist-header { grid-template-columns: 1fr; }
      .req-row { grid-template-columns: 1fr; }
      .req-cell.stat-cell { justify-content: flex-start; padding-left: 18px; }
      .req-summary { grid-template-columns: 1fr 1fr; }
      .tl-event { grid-template-columns: 0 48px 1fr; }
      .tl-event.left-side .tl-left { display: none; }
      .tl-event.right-side .tl-left { display: none; }
      .tl-event .tl-right { visibility: visible !important; }
      .tl-left { display: none; }
    }
  

/* ═══════════════════════════════════════════════════════════════════════════
   RESOLUTION 242 RESPONSIVE OVERRIDES
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .doc-wrap { grid-template-columns: 1fr; }
      .doc-sidebar { position: static; padding: 0 24px 48px; }
      .doc-header { padding: 48px 24px 40px; }
      .doc-body-col { padding: 40px 24px 64px; border-right: none; }
      nav { grid-template-columns: 1fr auto; padding: 0 20px; } .nav-links { display: none; }
      .lang-compare { grid-template-columns: 1fr; }
      .doc-ref-block { grid-template-columns: 1fr 1fr; }
      .foot-top { grid-template-columns: 1fr 1fr; padding: 48px 24px; gap: 32px; }
      .foot-bottom { padding: 16px 24px; flex-direction: column; gap: 8px; }
    }




/* ══════════════════════════════════════════════════════════
   MOBILE FIXES — 1100px (tablet and below)
   Critical: CSS Grid 1fr tracks default to min-content.
   min-width:0 on grid children forces them to collapse
   instead of pushing the layout wider than the viewport.
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  /* Prevent grid children from expanding the layout beyond viewport */
  .article-wrap > *,
  .doc-wrap > * { min-width: 0; overflow: hidden; }

  /* Breadcrumb: allow wrapping instead of overflowing */
  .article-breadcrumb { flex-wrap: wrap; overflow: hidden; }
  .bc-cur { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; max-width: 100%; }

  /* Contain the article body column */
  .article-body-col,
  .doc-body-col { overflow-x: hidden; min-width: 0; }
}

/* ══════════════════════════════════════════════════════════
   MOBILE FIXES — 600px and below
   Fixes double-padding, timeline narrowness, and overflow.
══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {

  /* 1. Stop ALL horizontal overflow at the root */
  html, body { overflow-x: hidden; max-width: 100%; }
  .article-page, .article-wrap,
  .doc-page,    .doc-wrap { overflow-x: hidden; }

  /* 2. Viz sections inside article-body-col already have container
        padding — remove their own horizontal padding to stop double-inset */
  .viz-section { padding-left: 0 !important; padding-right: 0 !important; }

  /* 3. wp:html wrapper guard */
  .wp-block-html { max-width: 100%; overflow-x: hidden; min-width: 0; }

  /* 4. TIMELINE — collapse to simple 2-col (spine + content) */
  .tl-event {
    display: grid !important;
    grid-template-columns: 36px 1fr !important;
    gap: 0 !important;
  }
  .tl-event .tl-left   { display: none !important; }
  .tl-event .tl-center { order: 1 !important; }
  .tl-event .tl-right  {
    order: 2 !important;
    visibility: visible !important;
    padding: 0 0 0 12px !important;
    min-width: 0;
  }
  .tl-card {
    max-width: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .tl-node { width: 28px !important; height: 28px !important; font-size: 0.5rem !important; }

  /* 5. Language grid: single column at 360px */
  .lang-grid    { grid-template-columns: 1fr !important; }
  .lang-summary { grid-template-columns: 1fr !important; }

  /* 6. Requirements checklist */
  .checklist-header { display: none !important; }
  .req-row     { grid-template-columns: 1fr !important; }
  .req-summary { grid-template-columns: 1fr 1fr !important; }
  .req-cell.stat-cell { justify-content: flex-start !important; }

  /* 7. Doc reference block */
  .doc-ref-block { grid-template-columns: 1fr !important; }

  /* 8. Balfour grids */
  .quadrant-grid { grid-template-columns: 1fr !important; }
  .ct-body       { grid-template-columns: 1fr !important; }
  .rights-compare{ grid-template-columns: 1fr !important; }
  .promise-cards { grid-template-columns: 1fr !important; }

  /* 9. Source/resource items */
  .sources-block, .resources-section { overflow-x: hidden; max-width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   MOBILE FIXES — 480px and below (very small phones)
══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .article-header   { padding: 32px 16px 28px !important; }
  .article-body-col { padding: 28px 16px 48px !important; }
  .article-sidebar  { padding: 0 16px 40px !important; }
  .doc-header       { padding: 32px 16px 28px !important; }
  .doc-body-col     { padding: 28px 16px 48px !important; }
  .doc-sidebar      { padding: 0 16px 40px !important; }
  .section-title    { font-size: 1.2rem !important; }
  .viz-title        { font-size: 1.1rem !important; }
  .ref-value        { font-size: 0.7rem !important; }
  .source-item      { grid-template-columns: 36px 1fr !important; }
}


/* ════════════════════════════════════════════════════════════
   A5 — EID AL-ADHA 2026 HUMAN STORY — new component styles
   Added: 2026-05-27
════════════════════════════════════════════════════════════ */

/* Pull-quote inner elements (pq-* naming used in human stories) */
.pq-who  { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--section-color); margin-bottom: 8px; }
.pq-text { font-family: 'Playfair Display', serif; font-size: 1.12rem; font-weight: 600; font-style: italic; line-height: 1.5; color: var(--text-1); margin-bottom: 6px; }
.pq-src  { font-size: 0.65rem; color: var(--text-3); font-family: 'DM Mono', monospace; }

/* Human story pull-quote uses green border */
.cpt-human_story .pull-quote { border-left-color: var(--human-accent); }

/* Override viz-section for single-column article body layout */
.article-body-col .viz-section {
  margin: 44px 0 !important;
  padding: 0 !important;
  border: 1px solid var(--border) !important;
  overflow: visible;
  width: 100%;
  display: block;
}
.article-body-col .viz-section .viz-hd {
  padding: 16px 22px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  display: block !important;
  margin-bottom: 0 !important;
  align-items: unset;
  justify-content: unset;
  gap: unset;
}

/* Viz embed header labels */
.viz-embed-label { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.viz-embed-label span { color: var(--section-color); }
.viz-title-sm { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.viz-title-sm em { font-style: italic; font-weight: 400; color: var(--section-color); }
.viz-subtitle-sm { font-size: 0.72rem; color: var(--text-2); margin-top: 4px; line-height: 1.5; }

/* Viz background modifier classes */
.v1-bg { background: var(--human-fill); }
.v2-bg { background: #060c10; }
.v3-bg { background: var(--human-fill); }

/* Viz inner content wrappers */
.v1-inner { padding: 28px 32px; }
.v2-inner { padding: 0; }
.v3-inner { padding: 2px; display: block; width: 100%; }

/* New timeline node type: before (pre-war = green) */
.tl-node.before  { border-color: var(--green); color: var(--green); background: rgba(78,126,50,0.1); }
.tl-card.before  { border-left-color: var(--green) !important; }
.tl-tag.before   { color: var(--green); border-color: rgba(78,126,50,0.3); }

/* Five-voices card grid layouts */
.promise-cards-5    { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2px; background: var(--human-mid); width: 100%; }
.promise-cards-row2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 2px; background: var(--human-mid); border-top: 2px solid var(--human-mid); width: 100%; margin-top: 2px; }

/* Limitations block icon/label (global aliases for .lim-header-icon/.lim-header-label) */
.lim-icon  { font-size: 0.75rem; color: var(--text-3); }
.lim-label { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); }

/* Citation footnote tooltip (used by main.js Section 11) */
.fn-tooltip { position: fixed; z-index: 900; background: var(--bg-card); border: 1px solid var(--border); border-left: 3px solid var(--section-color); padding: 12px 16px; max-width: 300px; box-shadow: 0 8px 32px rgba(0,0,0,0.5); font-family: 'Source Serif 4', serif; font-size: 0.78rem; font-weight: 300; line-height: 1.65; color: var(--text-2); pointer-events: none; opacity: 0; transition: opacity 0.15s; }
.fn-tooltip.visible { opacity: 1; }
.fn-tooltip-title { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--section-color); margin-bottom: 5px; font-family: 'DM Sans', sans-serif; }

/* Responsive adjustments for A5 components */
@media (max-width: 900px) {
  .v1-inner { padding: 16px !important; }
  .promise-cards-5    { grid-template-columns: 1fr !important; }
  .promise-cards-row2 { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  .promise-cards-5    { grid-template-columns: 1fr !important; }
  .promise-cards-row2 { grid-template-columns: 1fr !important; }
  .article-body-col .viz-section .viz-hd { padding: 12px 16px !important; }
  .v1-inner { padding: 12px !important; }
}

/* ══════════════════════════════════════════════════════════
   A10 — 139 Weeks: Series Nav + Week Accordion
   Added for humans-139-weeks-part-1 (human_story post type)
══════════════════════════════════════════════════════════ */

/* ── SERIES NAVIGATION ── */
.series-nav { margin: 0 0 48px; border: 1px solid var(--border); background: var(--bg-card); overflow: hidden; }
.series-nav-header { padding: 14px 22px; background: var(--bg-raised); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.series-nav-label { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--section-color); }
.series-nav-title { font-family: 'Playfair Display', serif; font-size: 0.88rem; font-weight: 700; color: var(--white); }
.series-nav-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.series-part { padding: 16px 12px; border-right: 1px solid var(--border); text-decoration: none; display: flex; flex-direction: column; gap: 6px; transition: background 0.2s; }
.series-part:last-child { border-right: none; }
.series-part:hover { background: var(--bg-raised); }
.series-part.active { background: rgba(78,126,50,0.08); border-bottom: 2px solid var(--green); }
.sp-num { font-family: 'DM Mono', monospace; font-size: 0.58rem; font-weight: 700; color: var(--section-color); }
.sp-weeks { font-family: 'DM Mono', monospace; font-size: 0.55rem; color: var(--text-3); }
.sp-dates { font-size: 0.6rem; color: var(--text-2); line-height: 1.3; }
.series-nav-arrows { display: flex; align-items: center; gap: 8px; padding: 12px 22px; border-top: 1px solid var(--border); justify-content: space-between; }
.series-arrow { font-size: 0.7rem; color: var(--text-3); text-decoration: none; border: 1px solid var(--border); padding: 6px 14px; transition: all 0.2s; display: flex; align-items: center; gap: 6px; }
.series-arrow:hover { border-color: var(--green); color: var(--green); }
.series-arrow.disabled { opacity: 0.3; pointer-events: none; }
.series-count { font-size: 0.65rem; color: var(--text-3); font-family: 'DM Mono', monospace; }

/* ── INTERACTIVE WEEK TIMELINE ── */
.week-timeline { margin: 0; }
.week-item { border-bottom: 1px solid var(--border); }
.week-item:last-child { border-bottom: none; }

.week-trigger { width: 100%; background: none; border: none; cursor: pointer; padding: 0; text-align: left; display: grid; grid-template-columns: 56px 1fr auto; align-items: center; gap: 0; transition: background 0.2s; }
.week-trigger:hover { background: var(--bg-raised); }
.week-trigger.open { background: var(--bg-raised); border-bottom: 1px solid var(--border); }

.wt-num { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 18px 0; border-right: 1px solid var(--border); }
.wt-num-n { font-family: 'DM Mono', monospace; font-size: 0.72rem; font-weight: 700; color: var(--section-color); line-height: 1; }
.wt-num-w { font-family: 'DM Mono', monospace; font-size: 0.48rem; color: var(--text-3); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }

.wt-summary { padding: 16px 20px; min-width: 0; }
.wt-dates { font-family: 'DM Mono', monospace; font-size: 0.6rem; color: var(--text-3); margin-bottom: 4px; }
.wt-event { font-size: 0.88rem; font-weight: 600; color: var(--text-1); line-height: 1.3; }
.wt-toll { font-family: 'DM Mono', monospace; font-size: 0.6rem; color: var(--text-3); margin-top: 4px; }
.wt-toll span { color: var(--red); font-weight: 700; }

.wt-chevron { padding: 0 20px; flex-shrink: 0; }
.wt-chevron svg { width: 14px; height: 14px; stroke: var(--text-3); fill: none; transition: transform 0.3s ease; }
.week-trigger.open .wt-chevron svg { transform: rotate(180deg); }

.week-panel { display: none; background: var(--bg-card); border-bottom: 1px solid var(--border); }
.week-panel.open { display: block; }

/* ── WEEK PANEL CONTENT ── */
.wp-image { width: 100%; max-height: 260px; overflow: hidden; position: relative; }
.wp-image img { width: 100%; height: 260px; object-fit: cover; object-position: center; display: block; filter: grayscale(20%); }
.wp-image-attr { position: absolute; bottom: 0; left: 0; right: 0; padding: 6px 12px; background: rgba(7,14,4,0.85); font-family: 'DM Mono', monospace; font-size: 0.52rem; color: var(--text-3); }

.wp-body { padding: 24px 28px; }

.wp-id-card { background: var(--bg-raised); border: 1px solid var(--border); border-left: 3px solid var(--section-color); padding: 14px 18px; margin-bottom: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.wp-id-row { display: flex; flex-direction: column; gap: 2px; }
.wp-id-label { font-size: 0.52rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); }
.wp-id-value { font-size: 0.84rem; font-weight: 600; color: var(--text-1); line-height: 1.3; }
.wp-id-value.name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--white); }
.wp-id-full { grid-column: 1 / -1; }

.wp-account { font-family: 'Source Serif 4', serif; font-size: 0.92rem; font-weight: 400; line-height: 1.82; color: var(--text-2); margin-bottom: 16px; }
.wp-account strong { color: var(--text-1); font-weight: 600; }

.wp-ocha { background: rgba(78,126,50,0.04); border: 1px solid rgba(78,126,50,0.12); padding: 10px 14px; margin-bottom: 16px; }
.wp-ocha-label { font-size: 0.52rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); margin-bottom: 4px; }
.wp-ocha-label a { color: var(--green); text-decoration: none; border-bottom: 1px solid rgba(78,126,50,0.3); transition: border-color 0.2s; }
.wp-ocha-label a:hover { border-color: var(--green); }
.wp-ocha-text { font-family: 'DM Mono', monospace; font-size: 0.72rem; line-height: 1.6; color: var(--text-3); font-style: italic; }

.wp-source-link { display: inline-flex; align-items: center; gap: 8px; font-family: 'DM Mono', monospace; font-size: 0.65rem; color: var(--section-color); text-decoration: none; border-bottom: 1px solid rgba(78,126,50,0.3); padding-bottom: 1px; transition: border-color 0.2s; }
.wp-source-link:hover { border-color: var(--section-color); }
.wp-source-org { font-size: 0.6rem; color: var(--text-3); margin-top: 6px; font-family: 'DM Mono', monospace; }

/* ── A10 RESPONSIVE ── */
@media (max-width: 900px) {
  .series-nav-grid { grid-template-columns: repeat(4, 1fr); }
  .series-nav-grid .series-part:nth-child(n+5) { border-top: 1px solid var(--border); }
  .week-trigger { grid-template-columns: 48px 1fr auto; }
  .wp-id-card { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .series-nav-grid { grid-template-columns: repeat(3, 1fr); }
  .wt-event { font-size: 0.82rem; }
}
