/* ==========================================================
   Sealed-Charges Drawer — styles specific to the timeline ladder
   and corroboration block used by sealed-leak-drawer.js.

   Reuses the proof-drawer frame from assets/experts-drawer.css
   and the .proof-card-* walkthrough vocab from
   assets/evidence-drawer.css. Image thumbnails open the shared
   lightbox owned by assets/img-lightbox.{js,css}.

   New vocabulary added here:
     .timeline-subtitle / .timeline-ladder / .timeline-punchline
     .timeline-beat (with --sealed / --unsealed variants)
     .timeline-beat-rail / .timeline-beat-dot
     .timeline-beat-body / .timeline-beat-header
     .timeline-beat-stage / .timeline-beat-status / .timeline-beat-status-dot
     .timeline-beat-text / .timeline-beat-thumb / .timeline-beat-thumb-cue
     .corrob-list / .corrob-item / .corrob-label / .corrob-body
     .corrob-media / .corrob-image-link / .corrob-image-cue
     .corrob-caption
   ========================================================== */

/* =========================================================
   Timeline ladder — 3 dated beats showing Feb 14 (sealed) →
   Mar 25 (still sealed but used) → Mar 26 (finally unsealed).
   Visual rail down the left, status badges down the right.
   ========================================================= */
.timeline-subtitle {
  font-family: var(--sans, -apple-system, sans-serif);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-mute, #6B7280);
  margin: 12px 0 14px;
}
.timeline-ladder {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.timeline-beat {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: stretch;
  padding-bottom: 18px;
  position: relative;
}
.timeline-beat:last-child { padding-bottom: 0; }
.timeline-beat-rail {
  position: relative;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 4px;
}
/* Vertical line connecting beats */
.timeline-beat-rail::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: -18px;
  left: 50%;
  width: 2px;
  background: var(--border-strong, #D6CBB2);
  transform: translateX(-50%);
}
.timeline-beat:last-child .timeline-beat-rail::before { display: none; }
.timeline-beat-dot {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border-strong, #D6CBB2);
  box-shadow: 0 0 0 4px var(--bg, #F8F3EA);
}
.timeline-beat--sealed   .timeline-beat-dot { border-color: #6B1F2D; }
.timeline-beat--unsealed .timeline-beat-dot { border-color: #2A7A3F; background: #2A7A3F; }

.timeline-beat-body {
  background: #fff;
  border: 1px solid var(--border-warm, #E6DCC6);
  border-left: 3px solid var(--border-strong, #D6CBB2);
  border-radius: 2px;
  padding: 12px 14px 12px;
}
.timeline-beat--sealed   .timeline-beat-body { border-left-color: #6B1F2D; }
.timeline-beat--unsealed .timeline-beat-body { border-left-color: #2A7A3F; }

.timeline-beat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.timeline-beat-stage {
  font-family: var(--serif, Georgia, serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy, #0B1A2E);
  letter-spacing: -0.005em;
}
.timeline-beat-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px 4px;
  border-radius: 2px;
  font-family: var(--sans, -apple-system, sans-serif);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.timeline-beat-status--sealed {
  background: rgba(107, 31, 45, 0.10);
  border: 1px solid rgba(107, 31, 45, 0.45);
  color: #6B1F2D;
}
.timeline-beat-status--unsealed {
  background: rgba(42, 122, 63, 0.10);
  border: 1px solid rgba(42, 122, 63, 0.45);
  color: #2A7A3F;
}
.timeline-beat-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.timeline-beat-status--sealed   .timeline-beat-status-dot { background: #6B1F2D; }
.timeline-beat-status--unsealed .timeline-beat-status-dot { background: #2A7A3F; }

.timeline-beat-text {
  font-family: var(--serif, Georgia, serif);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text, #2A3344);
  margin: 0;
}
.timeline-beat-text strong { font-weight: 600; color: var(--navy, #0B1A2E); }
.timeline-beat-text em { font-style: italic; }

.timeline-beat-thumb {
  display: block;
  margin-top: 10px;
  position: relative;
  border: 1px solid var(--border-strong, #D6CBB2);
  border-radius: 2px;
  background: #fff;
  overflow: hidden;
  cursor: zoom-in;
  text-decoration: none;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.timeline-beat-thumb:hover {
  border-color: var(--gold, #C4A24C);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(11, 26, 46, 0.10);
}
.timeline-beat-thumb img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  object-position: center top;
  background: #fff;
}
.timeline-beat-thumb-cue {
  display: block;
  padding: 5px 10px 6px;
  background: rgba(11, 26, 46, 0.04);
  border-top: 1px solid var(--border-warm, #E6DCC6);
  font-family: var(--sans, -apple-system, sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-soft, #4A5568);
  text-align: center;
}
.timeline-beat-thumb:hover .timeline-beat-thumb-cue {
  background: var(--gold, #C4A24C);
  color: #fff;
  border-top-color: var(--gold, #C4A24C);
}

.timeline-punchline {
  margin: 4px 0 0;
  padding: 12px 14px;
  background: var(--beige-bg, #F4EDDD);
  border: 1px dashed var(--gold, #C4A24C);
  border-radius: 2px;
  font-family: var(--serif, Georgia, serif);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--navy, #0B1A2E);
  font-weight: 500;
}
.timeline-punchline strong { font-weight: 700; }
.timeline-punchline em { font-style: italic; }

/* =========================================================
   Corroboration block — HBO video clip + EDNY warrant image.
   Each item is one labeled block with body text + media.
   ========================================================= */
.corrob-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 6px;
}
.corrob-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.corrob-label {
  font-family: var(--sans, -apple-system, sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6B1F2D;
}
.corrob-body {
  font-family: var(--serif, Georgia, serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text, #2A3344);
  margin: 0;
}
.corrob-body strong { font-weight: 600; color: var(--navy, #0B1A2E); }
.corrob-body em { font-style: italic; }

.corrob-media {
  margin: 4px 0 0;
  background: #000;
  border: 1px solid var(--border-strong, #D6CBB2);
  border-radius: 2px;
  overflow: hidden;
}
.corrob-media video {
  display: block;
  width: 100%;
  max-height: 360px;
  background: #000;
}
.corrob-image-link {
  display: block;
  position: relative;
  background: #fff;
  text-decoration: none;
  cursor: zoom-in;
  transition: filter .15s;
}
.corrob-image-link:hover { filter: brightness(0.97); }
.corrob-image-link img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  object-position: center top;
  background: #fff;
}
.corrob-image-cue {
  display: block;
  padding: 5px 10px 6px;
  background: rgba(11, 26, 46, 0.04);
  border-top: 1px solid var(--border-warm, #E6DCC6);
  font-family: var(--sans, -apple-system, sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-soft, #4A5568);
  text-align: center;
}
.corrob-image-link:hover .corrob-image-cue {
  background: var(--gold, #C4A24C);
  color: #fff;
  border-top-color: var(--gold, #C4A24C);
}
.corrob-caption {
  display: block;
  padding: 8px 12px 4px;
  background: #fff;
  border-top: 1px solid var(--border-warm, #E6DCC6);
  font-family: var(--sans, -apple-system, sans-serif);
  font-size: 11.5px;
  font-style: normal;
  color: var(--text-soft, #4A5568);
  text-align: center;
}
.corrob-media video + .corrob-caption,
.corrob-image-link + .corrob-caption {
  border-top: 0;
}

@media (max-width: 720px) {
  .timeline-beat-body { padding: 10px 12px; }
  .timeline-beat-stage { font-size: 14px; }
  .timeline-beat-status { font-size: 10px; padding: 2px 7px 3px; }
  .timeline-beat-text { font-size: 14px; }
  .timeline-punchline { font-size: 14px; }
  .corrob-body { font-size: 14px; }
  .corrob-media video { max-height: 280px; }
}
