/* Shomer Israel — proposed design system */
:root {
  --bg: #0b1220;
  --bg-elev: #121a2b;
  --bg-soft: #172033;
  --text: #e8eef7;
  --muted: #9aa8bd;
  --faint: #6e7c91;
  --gold: #d4af37;
  --gold-2: #e8c96a;
  --gold-dim: rgba(212, 175, 55, 0.14);
  --line: rgba(232, 238, 247, 0.1);
  --line-strong: rgba(232, 238, 247, 0.18);
  --danger: #e07070;
  --danger-dim: rgba(224, 112, 112, 0.12);
  --blue: #7eb0ff;
  --header-h: 60px;
  --ticker-h: 2.35rem;
  --latest-h: 2.35rem;
  --measure: 40rem;
  --page: 72rem;
  --radius: 10px;
  --font: "Heebo", "Segoe UI", system-ui, sans-serif;
  --font-en: "Inter", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}
html[lang="en"] body { font-family: var(--font-en); }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-2); }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: 1rem; }

.skip {
  position: absolute; inset-inline-start: -999px; top: 0;
}
.skip:focus { inset-inline-start: 1rem; top: 1rem; z-index: 80; background: var(--gold); color: #0b1220; padding: 0.4rem 0.7rem; }

#site-chrome {
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header {
  position: relative;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0 1.25rem;
  background: rgba(11, 18, 32, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 0.7rem; color: var(--text); }
.brand:hover { color: var(--text); }
.brand img { width: 36px; height: 36px; object-fit: contain; border-radius: 6px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.12; }
.brand-name, .brand-en {
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.brand-en {
  font-family: var(--font-en);
  letter-spacing: 0.02em;
}

.nav-main { display: flex; gap: 1.35rem; font-size: 0.92rem; font-weight: 500; }
.nav-main a { color: var(--muted); }
.nav-main a:hover, .nav-main a[aria-current="page"] { color: var(--text); }
.nav-main a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--gold); }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.lang-link {
  color: var(--muted); font-size: 0.85rem; padding: 0.35rem 0.65rem;
  border: 1px solid var(--line-strong); border-radius: 999px;
}
.lang-link:hover { color: var(--text); border-color: var(--gold); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  min-height: 40px; padding: 0.45rem 1rem;
  border-radius: 999px; border: 1px solid transparent;
  font-weight: 650; font-size: 0.9rem; cursor: pointer;
}
.btn-gold { background: var(--gold); color: #0b1220; }
.btn-gold:hover { background: var(--gold-2); color: #0b1220; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.btn-lg { min-height: 48px; padding: 0.7rem 1.35rem; font-size: 1rem; }

.menu-toggle {
  display: none; width: 40px; height: 40px; border: 1px solid var(--line-strong);
  background: transparent; color: var(--text); border-radius: 8px; cursor: pointer;
}

.latest-bar {
  display: flex; align-items: center; gap: 0.85rem;
  min-height: var(--latest-h);
  padding: 0.35rem 1.25rem;
  background: #080d18;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}
.latest-live {
  flex: none; color: #f8d48a; font-weight: 700; letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.latest-live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: #e07070;
}
.latest-bar a { color: var(--text); flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.latest-bar a:hover { color: var(--gold-2); }
.latest-pager { flex: none; color: var(--faint); display: flex; align-items: center; gap: 0.45rem; direction: ltr; }
.latest-pager button {
  width: 26px; height: 26px; border-radius: 6px; border: 1px solid var(--line-strong);
  background: transparent; color: var(--text); cursor: pointer;
}

/* Layout */
.wrap { width: min(var(--page), calc(100% - 2.5rem)); margin-inline: auto; }
.prose-wrap { width: min(var(--measure), calc(100% - 2.5rem)); margin-inline: auto; }
.page { padding: 2.25rem 0 4.5rem; }
.kicker {
  display: inline-block; color: var(--gold); font-size: 0.78rem; font-weight: 650;
  letter-spacing: 0.06em; margin-bottom: 0.55rem;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.05; letter-spacing: -0.03em; margin: 0 0 0.9rem; font-weight: 800; }
h2 { font-size: 1.55rem; line-height: 1.2; margin: 0 0 0.7rem; letter-spacing: -0.02em; }
h3 { font-size: 1.12rem; margin: 0 0 0.4rem; }
.lede { font-size: 1.12rem; color: var(--text); max-width: 42rem; line-height: 1.65; margin: 0 0 1.1rem; }
.muted { color: var(--muted); }
.faint { color: var(--faint); }

.chips { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 1.1rem 0 1.35rem; }
.chip {
  font-size: 0.78rem; color: var(--muted);
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 0.22rem 0.7rem; background: var(--bg-elev);
}
.actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* Hero */
.hero {
  display: grid; grid-template-columns: 1.35fr 0.9fr; gap: 2.5rem; align-items: start;
  padding: 2.2rem 0 2.4rem;
}
.hero-visual {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-visual img { width: 100%; height: 220px; object-fit: cover; object-position: center 30%; }
.hero-visual figcaption { padding: 0.95rem 1.05rem 1.1rem; }
.hero-visual .kicker { margin-bottom: 0.3rem; }
.hero-visual p { margin: 0; font-size: 0.92rem; color: var(--muted); line-height: 1.55; }
.hero-p1 {
  font-size: 1.12rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0 0 0.9rem;
}
.hero-p2 {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 1rem;
}
.hero-motives {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.9rem;
  margin: 0 0 1.15rem;
}
.hero-motives-copy {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.65;
}
.hero-scoop {
  background: var(--bg-elev);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius);
  padding: 0.85rem 1rem 1rem;
}
.hero-scoop p { margin: 0; font-size: 0.92rem; color: var(--text); line-height: 1.55; }

.lion-band {
  padding: 0.5rem 0 0;
  border-top: 1px solid var(--line);
}
.lion-band img.lion-full {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
  background: #070b14;
}
.lion-caption { padding: 1rem 0 1.4rem; }
.lion-caption h2 { font-size: 1.35rem; margin-bottom: 0.35rem; }
.lion-caption p { margin: 0; color: var(--muted); font-size: 0.95rem; max-width: 40rem; }

/* Sections */
.section { padding: 2.4rem 0; border-top: 1px solid var(--line); }
.section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 1.1rem; }
.section-head a { font-size: 0.88rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card {
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}
.card h3 { font-size: 1.02rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.step { padding: 1rem 1.05rem; border-top: 2px solid var(--gold); background: var(--bg-elev); border-radius: 0 0 var(--radius) var(--radius); }
.step-n { color: var(--gold); font-weight: 800; font-size: 0.85rem; margin-bottom: 0.3rem; }
.step h3 { font-size: 0.95rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.82rem; }

/* News / archive rows */
.row-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.row {
  display: grid; grid-template-columns: 7.2rem 1fr auto; gap: 1rem; align-items: start;
  padding: 0.95rem 0; border-bottom: 1px solid var(--line); color: inherit;
}
a.row:hover { color: inherit; background: rgba(255,255,255,0.02); }
.row-date { color: var(--faint); font-size: 0.82rem; padding-top: 0.15rem; }
.row-title { font-weight: 650; margin: 0 0 0.25rem; font-size: 1.02rem; color: var(--text); }
.row-sum { margin: 0; color: var(--muted); font-size: 0.88rem; }
.row-meta { color: var(--faint); font-size: 0.75rem; white-space: nowrap; padding-top: 0.2rem; }
.tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.4rem; }
.tag {
  font-size: 0.68rem; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 0.08rem 0.45rem;
}

.book-teaser {
  display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center;
  padding: 1.4rem 1.5rem; border: 1px solid rgba(212,175,55,0.35);
  background: linear-gradient(180deg, var(--gold-dim), transparent 70%);
  border-radius: var(--radius);
}
.book-teaser p { margin: 0.35rem 0 0; color: var(--muted); max-width: 40rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line); padding: 1.6rem 0 2rem; color: var(--faint); font-size: 0.82rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.5rem; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--gold-2); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0.25rem 0; }
.site-footer strong { color: var(--muted); font-weight: 650; display: block; margin-bottom: 0.35rem; }

/* Archive */
.archive-tools {
  position: sticky; top: calc(var(--header-h) + var(--latest-h)); z-index: 30;
  background: rgba(11, 18, 32, 0.94); border-bottom: 1px solid var(--line);
  padding: 0.85rem 0; margin-bottom: 0.5rem;
}
.search {
  width: min(32rem, 100%);
  background: var(--bg-elev); border: 1px solid var(--line-strong); color: var(--text);
  border-radius: 8px; padding: 0.65rem 0.85rem; min-height: 42px;
}
.filters { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.7rem; }
.filter {
  background: transparent; color: var(--muted); border: 1px solid var(--line-strong);
  border-radius: 999px; padding: 0.28rem 0.7rem; cursor: pointer; font-size: 0.8rem;
}
.filter.is-on, .filter:hover { color: var(--gold); border-color: var(--gold); background: var(--gold-dim); }
.archive-meta { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin: 0.9rem 0 0.3rem; font-size: 0.82rem; color: var(--faint); }
.notice {
  font-size: 0.85rem; color: var(--muted); border: 1px solid rgba(224,112,112,0.35);
  background: var(--danger-dim); border-radius: var(--radius); padding: 0.7rem 0.9rem; margin: 0.8rem 0 1rem;
}
.pager { display: flex; gap: 0.4rem; justify-content: center; margin-top: 1.5rem; }
.pager span, .pager a {
  min-width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 8px; color: var(--muted); font-size: 0.85rem;
}
.pager a[aria-current="page"] { color: #0b1220; background: var(--gold); border-color: var(--gold); }

/* Incident */
.incident-head { padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); margin-bottom: 1.3rem; }
.incident-head .id { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 0.8rem; color: var(--gold); }
.prose { font-size: 1.05rem; line-height: 1.8; color: #dbe4f0; }
.prose p { margin: 0 0 1.1rem; }
.prose h2 { margin: 2rem 0 0.7rem; }
.prose ul, .prose ol { margin: 0 0 1.1rem; padding-inline-start: 1.2rem; }
.prose li { margin: 0.35rem 0; }
.media-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin: 1.2rem 0; }
.media-grid figure { margin: 0; background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.media-grid img, .media-grid video { width: 100%; height: 180px; object-fit: cover; }
.media-grid figcaption { padding: 0.55rem 0.7rem; font-size: 0.78rem; color: var(--muted); }

/* Book reading */
.book-layout { display: grid; grid-template-columns: 14.5rem 1fr; gap: 2.2rem; align-items: start; }
.toc {
  position: sticky; top: calc(var(--header-h) + var(--latest-h) + 1rem);
  font-size: 0.82rem; color: var(--muted);
}
.toc strong { color: var(--text); display: block; margin-bottom: 0.5rem; font-size: 0.78rem; letter-spacing: 0.04em; }
.toc a { display: block; color: var(--muted); padding: 0.28rem 0; border-inline-start: 2px solid var(--line); padding-inline-start: 0.7rem; }
.toc a:hover, .toc a.is-on { color: var(--gold-2); border-color: var(--gold); }
.reading {
  background: #101827; border: 1px solid var(--line); border-radius: 12px;
  padding: 2rem 2.1rem 2.6rem; max-width: 46rem;
}
.reading .prose { font-size: 1.125rem; line-height: 1.85; }
.trans-note { font-size: 0.85rem; color: var(--gold-2); margin: 0 0 1.2rem; }

/* Reports tabs */
.tabs { display: flex; gap: 0.3rem; border-bottom: 1px solid var(--line); margin-bottom: 1.4rem; }
.tabs a, .tabs button {
  background: transparent; border: 0; color: var(--muted); padding: 0.7rem 0.95rem;
  font-weight: 600; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.tabs a.is-on, .tabs button.is-on, .tabs a[aria-current="page"] { color: var(--text); border-bottom-color: var(--gold); }
.tab-panel[hidden] { display: none; }

/* Act */
.act-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 1.25rem; }
form { display: grid; gap: 0.75rem; }
label { font-size: 0.82rem; color: var(--muted); }
input, select, textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line-strong); color: var(--text);
  border-radius: 8px; padding: 0.65rem 0.75rem;
}
.help-groups { display: grid; gap: 0.75rem; }
.help-groups details {
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius); padding: 0.7rem 0.95rem;
}
.help-groups summary { cursor: pointer; font-weight: 650; }
.help-groups ul { margin: 0.5rem 0 0; padding-inline-start: 1.1rem; color: var(--muted); font-size: 0.9rem; }

.mock-banner {
  background: #3a2a08; color: #f3e2a8; font-size: 0.78rem; text-align: center;
  padding: 0.35rem 1rem; border-bottom: 1px solid rgba(212,175,55,0.35);
}
.mock-banner a { color: #fff3c4; text-decoration: underline; }

@media (max-width: 960px) {
  .hero, .hero-motives, .lion-band, .book-layout, .act-grid, .footer-grid, .grid-3, .steps {
    grid-template-columns: 1fr;
  }
  .nav-main { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-main.is-open {
    display: flex; flex-direction: column; position: absolute; top: var(--header-h); inset-inline: 0;
    background: #0e1626; border-bottom: 1px solid var(--line); padding: 0.8rem 1.25rem 1rem; gap: 0.7rem;
  }
  .row { grid-template-columns: 5.5rem 1fr; }
  .row-meta { display: none; }
  .reading { padding: 1.25rem 1.1rem 1.8rem; }
  .site-header { padding: 0 0.9rem; }
  .wrap, .prose-wrap { width: min(var(--page), calc(100% - 1.6rem)); }
  .incident-card.has-featured-media { grid-template-columns: 1fr; }
}

/* Live ticker — same mechanism as production */
.live-ticker {
  background: #0b1220;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  height: var(--ticker-h);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.live-ticker-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.85rem;
  background: #D4AF37;
  color: #0f172a;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}
.live-ticker-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  background: #7f1d1d;
  box-shadow: 0 0 0 0 rgba(127, 29, 29, 0.7);
  animation: ticker-pulse 1.4s ease-out infinite;
}
@keyframes ticker-pulse {
  0% { box-shadow: 0 0 0 0 rgba(127, 29, 29, 0.55); }
  70% { box-shadow: 0 0 0 6px rgba(127, 29, 29, 0); }
  100% { box-shadow: 0 0 0 0 rgba(127, 29, 29, 0); }
}
.live-ticker-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-width: 0;
  direction: ltr;
}
.live-ticker-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: max-content;
  height: 100%;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform;
  animation: ticker-ltr var(--ticker-duration, 180s) linear infinite;
}
.live-ticker-track.is-he-scroll { animation-name: ticker-rtl; }
.live-ticker-seq {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-shrink: 0;
  padding-inline-end: 1.15rem;
}
.live-ticker:hover .live-ticker-track,
.live-ticker:focus-within .live-ticker-track { animation-play-state: paused; }
@keyframes ticker-ltr {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(var(--ticker-shift, -50%), 0, 0); }
}
@keyframes ticker-rtl {
  from { transform: translate3d(var(--ticker-shift, -50%), 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .live-ticker-track { animation: none !important; transform: none !important; }
}
.live-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 1.15rem;
  font-size: 0.78rem;
  line-height: 1.2;
  white-space: nowrap;
  color: #e2e8f0;
}
html[dir="rtl"] .live-ticker-item { direction: rtl; }
.live-ticker-seq .live-ticker-item + .live-ticker-item {
  border-inline-start: 1px solid rgba(212, 175, 55, 0.28);
}
.live-ticker-date {
  color: #D4AF37;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.live-ticker a.live-ticker-item:hover { color: #fff; }

/* Mission = defender of Israel */
.section-mission {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), transparent 70%);
  border-top: 1px solid rgba(212, 175, 55, 0.28);
}
.section-mission .kicker { color: var(--gold); }
.section-mission .card {
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow: inset 0 2px 0 var(--gold);
}
.section-mission .card h3 { color: #f4e4a8; }

/* The cell = treachery */
.section-cell {
  background: linear-gradient(180deg, #1a0c10, #0b1220 78%);
  border-top: 1px solid rgba(176, 48, 48, 0.45);
}
.section-cell .kicker { color: #e07070; }
.section-cell h2 { color: #f3d4d4; }
.section-cell .steps { gap: 0.75rem; }
.section-cell .step {
  background: #14090c;
  border-top: 2px solid #b03030;
  border-radius: 0 0 var(--radius) var(--radius);
}
.section-cell .step-n { color: #e07070; }
.section-cell .step h3 { color: #f7c9c9; }
.section-cell .cell-note {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-inline-start: 3px solid #b03030;
  color: #d7b4b4;
  font-size: 0.92rem;
}

/* Featured screenshots on archive / news */
.incident-card.has-featured-media {
  display: grid;
  grid-template-columns: minmax(220px, 32%) 1fr;
  align-items: stretch;
}
.incident-featured-media {
  display: block;
  width: 100%;
  min-height: 180px;
  padding: 0;
  border: 0;
  background: #0a0e18;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.incident-featured-media img,
.incident-featured-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.news-feed-inner.has-thumb {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.news-thumb {
  flex: none;
  width: 148px;
  height: 110px;
  padding: 0;
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 8px;
  overflow: hidden;
  background: #0a0e18;
  cursor: pointer;
  position: relative;
}
.news-thumb img, .news-thumb video {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
}

.news-type-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
}
.news-type-badge--incident { background: rgba(212,175,55,0.15); color: var(--gold); }
.news-type-badge--evidence { background: rgba(126,176,255,0.12); color: var(--blue); }
.incident-id-badge {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 999px;
  padding: 0.08rem 0.45rem;
}
.category-badge {
  font-size: 0.68rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.08rem 0.45rem;
}
.gallery-item-highlight {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.line-clamp-3, .line-clamp-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 { -webkit-line-clamp: 3; }
.line-clamp-4 { -webkit-line-clamp: 4; }
.is-expanded { -webkit-line-clamp: unset; overflow: visible; display: block; }

.assessment-prose h3 {
  margin-top: 1.75rem; margin-bottom: 0.65rem;
  font-size: 1.05rem; font-weight: 600; line-height: 1.4; color: #f1f5f9;
}
.assessment-prose h3:first-child { margin-top: 0; }
.assessment-prose p { margin-top: 0; margin-bottom: 1rem; color: #cbd5e1; }
.assessment-prose ul {
  margin: 0.35rem 0 1.1rem; padding-inline-start: 1.25rem; list-style: disc; color: #cbd5e1;
}
.assessment-prose li { margin-bottom: 0.45rem; }
.assessment-prose .qa-insight {
  color: #e2e8f0; font-weight: 500; margin-top: 0.45rem; margin-bottom: 0.55rem;
  padding-inline-start: 0.65rem; border-inline-start: 2px solid rgba(212, 175, 55, 0.45);
}
.assessment-prose .assessment-closing { color: #e2e8f0; font-weight: 500; }
.assessment-intro { border-inline-start: 3px solid rgba(212, 175, 55, 0.55); padding-inline-start: 0.85rem; }

.book-chapter-prose {
  font-size: 1.125rem; line-height: 1.85; color: #e2e8f0; max-width: 46rem;
}
.book-chapter-prose p { margin: 0 0 1.35rem; }
.book-chapter-prose .book-num, .book-chapter-prose .book-bullet {
  color: var(--gold); font-weight: 700; margin-inline-end: 0.35rem;
}

.gallery-modal-stage { overflow: hidden; max-height: 78vh; }
.gallery-modal-stage img { max-height: 78vh; max-width: 95vw; }
.evidence-filter-btn.is-active {
  color: var(--gold); border-color: var(--gold); background: var(--gold-dim);
}
.hidden { display: none !important; }

.section-header { font-size: 1.75rem; font-weight: 700; letter-spacing: -0.025em; }

