/**
 * INFONÓICO — Estilos Exclusivos para Investigaciones (CPT infonico_story)
 * Atmósfera cinematográfica documental, telemetría de archivo desclasificado y diseño moderno.
 */

/* 1. Barra Superior de Progreso de Lectura */
.dossier-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, #df9787 50%, #f7c59f 100%);
  z-index: 1000;
  transition: width 0.08s ease-out;
  box-shadow: 0 0 12px rgba(212, 120, 100, 0.6);
  pointer-events: none;
}

/* 2. Hero Cinematográfico de Investigación */
.dossier-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #090e13;
  padding-top: 36px;
  padding-bottom: 55px;
  border-bottom: 1px solid var(--line);
}
.dossier-hero .hero-environment,
.dossier-hero .hero-shade,
.dossier-hero .hero-fog {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
}
.dossier-hero .hero-environment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  opacity: 0.85;
}
.dossier-hero .hero-shade {
  z-index: -2;
  background: linear-gradient(90deg, #05080bf2 0%, #05080bc4 30%, #05080b40 70%, #05080b50),
              linear-gradient(0deg, var(--bg) 0%, transparent 35%, transparent 75%, #07090b99);
}
.dossier-hero .hero-fog {
  z-index: 2;
  inset: auto -10% 5%;
  height: 25%;
  opacity: 0.18;
  background: radial-gradient(ellipse at 65% 65%, #b8ccd877, transparent 65%);
  filter: blur(30px);
}

.dossier-hero-inner {
  position: relative;
  z-index: 4;
}

.dossier-hero .hero-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  font-size: 9px;
  color: #b7c0c3;
  letter-spacing: 1.5px;
}

/* Breadcrumbs de Navegación */
.dossier-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
}
.dossier-breadcrumbs a {
  transition: color 0.2s ease;
}
.dossier-breadcrumbs a:hover {
  color: #ffffff;
}
.dossier-breadcrumbs span.sep {
  color: rgba(255, 255, 255, 0.2);
}
.dossier-breadcrumbs .breadcrumb-topic {
  color: var(--red);
  font-weight: 600;
}

.dossier-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(212, 120, 100, 0.08);
  border: 1px solid rgba(212, 120, 100, 0.3);
  border-radius: 3px;
  margin-bottom: 22px;
}
.dossier-badge .micro {
  color: #df9787;
  font-weight: 600;
  letter-spacing: 1.8px;
}
.dossier-badge .signal-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: signal-beacon 2.4s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes signal-beacon {
  0% { box-shadow: 0 0 0 0 rgba(212, 120, 100, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(212, 120, 100, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 120, 100, 0); }
}

.dossier-hero-copy {
  max-width: 1080px;
}
.dossier-hero-copy h1 {
  font-size: clamp(36px, 5.2vw, 72px);
  letter-spacing: -0.038em;
  line-height: 1.06;
  font-weight: 700;
  color: #f8f6f0;
  margin: 0;
}
.dossier-hero-copy h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: #ded6c6;
}

.dossier-intro {
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.7;
  color: #cfcac0;
  margin-top: 22px;
  max-width: 860px;
}

/* Ficha Técnica / Meta Bar */
.dossier-meta-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px 28px;
  padding: 18px 26px;
  background: rgba(14, 18, 22, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 4px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  margin-top: 34px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.dossier-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dossier-meta-item .meta-label {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7b8487;
  font-weight: 600;
}
.dossier-meta-item .meta-value {
  font-size: 13px;
  font-weight: 600;
  color: #eeeae2;
  white-space: nowrap;
}
.dossier-meta-item .status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #38b2ac;
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 10px rgba(56, 178, 172, 0.7);
  animation: desclass-pulse 2.2s infinite ease-in-out;
}

@keyframes desclass-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
}

/* 3. Estructura de Rejilla: Contenido Principal + Sidebar HUD */
.dossier-main {
  padding-top: 55px;
  padding-bottom: 100px;
}

.dossier-grid-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 52px;
  align-items: start;
  width: 100%;
}

.dossier-content-column {
  min-width: 0;
  width: 100%;
}

/* 4. Columna Lateral HUD (Sticky Master Deck - 83vh Centrado Vertical) */
.dossier-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: calc((100vh - 83vh) / 2);
  align-self: start;
  width: 100%;
  overflow: visible;
}
body.admin-bar .dossier-sidebar {
  top: calc(32px + (100vh - 32px - 83vh) / 2);
}

.sidebar-hud-deck {
  height: clamp(620px, 83vh, 880px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 2.4vh, 26px) clamp(18px, 1.8vw, 22px);
  background: rgba(11, 15, 19, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.03);
  position: relative;
}

/* Esquinas Tácticas del Deck */
.deck-corner {
  position: absolute;
  width: 9px;
  height: 9px;
  border-color: rgba(212, 120, 100, 0.45);
  border-style: solid;
  pointer-events: none;
}
.deck-tl { top: 6px; left: 6px; border-width: 1px 0 0 1px; }
.deck-tr { top: 6px; right: 6px; border-width: 1px 1px 0 0; }
.deck-br { bottom: 6px; right: 6px; border-width: 0 1px 1px 0; }
.deck-bl { bottom: 6px; left: 6px; border-width: 0 0 1px 1px; }

/* 1. Cabecera HUD del Deck */
.hud-deck-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hud-dossier-tag {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #eeeae2;
}
.hud-deck-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hud-radar-mini {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid rgba(56, 178, 172, 0.5);
  position: relative;
  display: inline-block;
  background: rgba(56, 178, 172, 0.12);
}
.radar-mini-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6.5px;
  height: 1px;
  background: #38b2ac;
  transform-origin: left center;
  animation: radar-turn 2.6s linear infinite;
}
.tag-desclass {
  color: #38b2ac;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.2px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.status-live-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #38b2ac;
  box-shadow: 0 0 8px rgba(56, 178, 172, 0.9);
  animation: desclass-pulse 2s infinite ease-in-out;
}

/* Etiquetas de Sección HUD */
.hud-section-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.hud-section-label .micro {
  font-size: 8px;
  letter-spacing: 1.4px;
  color: #798588;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hud-status-micro {
  font-size: 7.5px;
  letter-spacing: 1px;
  color: var(--red);
  font-weight: 600;
}
.toc-counter {
  color: #8c9597;
  font-size: 7.5px;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 3px;
}

/* 2. Índice Dinámico (TOC) Proporcional */
.sidebar-toc-section {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.sidebar-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar-toc-item a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  color: #8c9799;
  text-decoration: none !important;
  transition: all 0.2s ease;
  line-height: 1.4;
  padding: 6px 10px;
  border-radius: 4px;
  border-left: 2px solid transparent;
}
.sidebar-toc-item a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}
.sidebar-toc-item.is-active a {
  color: #ffffff;
  background: rgba(212, 120, 100, 0.13);
  border-left-color: var(--red);
  font-weight: 600;
}
.sidebar-toc-item.is-active .toc-num {
  color: var(--red);
}
.sidebar-toc-item .toc-num {
  font-size: 9px;
  font-weight: 700;
  font-family: monospace;
  color: #637073;
  flex-shrink: 0;
}
.sidebar-toc-item .toc-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 3. Redes y Canales Oficiales (Tarjetas Táctiles 2x2) */
.sidebar-signals-section {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.sidebar-signals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.btn-signal-card {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  min-height: 46px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.signal-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.signal-card-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.22;
  text-align: left;
}
.signal-card-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #f0ebe1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}
.signal-card-sub {
  font-size: 8px;
  letter-spacing: 0.5px;
  color: #8c9799;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}

/* Efectos Hover & Identidad de Marca en Redes */
.btn-signal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}
.btn-signal-card:hover .signal-badge-icon {
  transform: scale(1.08);
}

/* Instagram */
.btn-signal-ig .signal-badge-icon {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(225, 48, 108, 0.35);
}
.btn-signal-ig:hover {
  border-color: rgba(225, 48, 108, 0.5);
  background: rgba(225, 48, 108, 0.08);
}
.btn-signal-ig:hover .signal-card-title {
  color: #ff85ad;
}

/* TikTok */
.btn-signal-tt .signal-badge-icon {
  background: #06090c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: -1px -1px 6px rgba(0, 242, 234, 0.4), 1px 1px 6px rgba(254, 44, 85, 0.4);
}
.btn-signal-tt:hover {
  border-color: rgba(0, 242, 234, 0.45);
  background: rgba(0, 242, 234, 0.06);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 12px rgba(0, 242, 234, 0.15);
}
.btn-signal-tt:hover .signal-card-title {
  color: #00f2fe;
}

/* Copiar Enlace */
.btn-signal-copy .signal-badge-icon {
  background: rgba(56, 178, 172, 0.18);
  border: 1px solid rgba(56, 178, 172, 0.4);
  color: #38b2ac;
}
.btn-signal-copy:hover {
  border-color: rgba(56, 178, 172, 0.5);
  background: rgba(56, 178, 172, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 12px rgba(56, 178, 172, 0.15);
}
.btn-signal-copy:hover .signal-card-title {
  color: #38b2ac;
}

/* Canal RSS */
.btn-signal-rss .signal-badge-icon {
  background: rgba(212, 120, 100, 0.18);
  border: 1px solid rgba(212, 120, 100, 0.4);
  color: #df9787;
}
.btn-signal-rss:hover {
  border-color: rgba(212, 120, 100, 0.5);
  background: rgba(212, 120, 100, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 12px rgba(212, 120, 100, 0.15);
}
.btn-signal-rss:hover .signal-card-title {
  color: #df9787;
}

/* 4. Expediente Relacionado Cinematográfico */
.sidebar-related-section {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.sidebar-related-row {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  text-decoration: none !important;
  padding: 7px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.sidebar-related-row:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 120, 100, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.related-thumb-box {
  position: relative;
  width: 78px;
  height: 54px;
  border-radius: 4px;
  overflow: hidden;
  background: #141a1e;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.related-thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: transform 0.5s ease, filter 0.5s ease;
  display: block;
}
.sidebar-related-row:hover .related-thumb-box img {
  transform: scale(1.08);
  filter: saturate(1);
}
.related-crosshair {
  position: absolute;
  top: 3px;
  right: 5px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1;
  pointer-events: none;
}
.related-info-box {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.related-meta {
  font-size: 7.5px;
  letter-spacing: 1px;
  color: #798588;
  font-weight: 600;
}
.related-title {
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.35;
  color: #eeeae2;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.sidebar-related-row:hover .related-title {
  color: #ffffff;
}
.related-link-cue {
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--red);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 2px;
}

/* 5. Pie HUD del Deck */
.hud-deck-footer {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hud-deck-footer .micro {
  font-size: 7.5px;
  letter-spacing: 1.2px;
  color: #637073;
}
.hud-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 7.5px;
  letter-spacing: 1px;
  color: #38b2ac;
  font-weight: 700;
  background: rgba(56, 178, 172, 0.1);
  border: 1px solid rgba(56, 178, 172, 0.25);
  padding: 2px 6px;
  border-radius: 3px;
}

/* 5. Marco de Evidencia Principal */
.dossier-figure {
  position: relative;
  width: 100%;
  margin: 0 0 45px 0;
  border-radius: 4px;
  overflow: hidden;
  background: #0d1216;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.dossier-media-wrap {
  position: relative;
  overflow: hidden;
}
.dossier-figure img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  filter: saturate(0.85);
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.75s ease;
  display: block;
}
.dossier-figure:hover img {
  transform: scale(1.02);
  filter: saturate(1);
}

.dossier-scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
  background-size: 100% 3px, 6px 100%;
  pointer-events: none;
  opacity: 0.45;
}

.dossier-figure figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9ba4a7;
  background: rgba(8, 11, 14, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.dossier-figure figcaption .caption-text {
  max-width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dossier-figure figcaption .doc-id {
  color: var(--red);
  font-weight: 600;
  white-space: nowrap;
}

/* Esquinas telescópicas / radar */
.dossier-corner-tl, .dossier-corner-tr, .dossier-corner-br, .dossier-corner-bl {
  position: absolute;
  width: 12px;
  height: 12px;
  pointer-events: none;
  z-index: 3;
  border-color: rgba(255, 255, 255, 0.4);
  border-style: solid;
}
.dossier-corner-tl { top: 12px; left: 12px; border-width: 1px 0 0 1px; }
.dossier-corner-tr { top: 12px; right: 12px; border-width: 1px 1px 0 0; }
.dossier-corner-br { bottom: 12px; right: 12px; border-width: 0 1px 1px 0; }
.dossier-corner-bl { bottom: 12px; left: 12px; border-width: 0 0 1px 1px; }

/* 6. Cuerpo del Artículo Editorial */
.dossier-body {
  width: 100%;
  font-size: 18px;
  line-height: 1.88;
  color: #dbd7cf;
  position: relative;
}
.dossier-body::after {
  content: '';
  display: table;
  clear: both;
}
.dossier-body > p:first-of-type::first-letter {
  float: left;
  font-size: 64px;
  line-height: 0.82;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  padding-right: 14px;
  padding-top: 5px;
  color: #f7f5f0;
}
.dossier-body p {
  margin-bottom: 26px;
}
.dossier-body strong {
  color: #ffffff;
  font-weight: 600;
}
.dossier-body a {
  color: #e5ded0;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(212, 120, 100, 0.5);
  transition: color 0.2s, text-decoration-color 0.2s;
}
.dossier-body a:hover {
  color: #ffffff;
  text-decoration-color: var(--red);
}

.dossier-body h2 {
  font-size: clamp(26px, 2.9vw, 36px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #ffffff;
  margin: 64px 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  position: relative;
  clear: both;
}
.dossier-body h2::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 46px;
  height: 2px;
  background: var(--red);
}

.dossier-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: #eeeae0;
  margin: 36px 0 16px;
}

/* Citas Editoriales de Autoridad */
.dossier-body blockquote {
  margin: 48px 0;
  padding: 30px 36px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--red);
  border-radius: 0 4px 4px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(21px, 2.2vw, 26px);
  line-height: 1.5;
  color: #f7f4ec;
  position: relative;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  clear: both;
}
.dossier-body blockquote p {
  margin: 0;
}
.dossier-body blockquote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #a4adad;
  font-weight: 600;
}

/* 7. Evidencias Visuales Flotantes (Lateral Izquierda y Derecha) */
.dossier-evidence-float {
  width: 320px;
  margin: 8px 0 28px 0;
  position: relative;
  background: #0d1216;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  z-index: 2;
}
.dossier-evidence-float.float-right {
  float: right;
  margin-left: 34px;
}
.dossier-evidence-float.float-left {
  float: left;
  margin-right: 34px;
}

.dossier-evidence-float .evidence-media-wrap {
  position: relative;
  overflow: hidden;
  background: #141b20;
}
.dossier-evidence-float img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.8);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  display: block;
}
.dossier-evidence-float:hover img {
  transform: scale(1.03);
  filter: saturate(1);
}

.dossier-evidence-float br,
.dossier-telemetry-panel br,
.dossier-intel-callout br,
.dossier-timeline-block br,
.dossier-evidence-matrix br,
.dossier-breakout-figure br,
.infonoico-social-dispatch br,
.btn-dispatch br,
.btn-dispatch p,
.timeline-content > p:empty {
  display: none !important;
}

/* Retículas angulares HUD en las imágenes flotantes */
.evidence-crosshair {
  position: absolute;
  color: rgba(255, 255, 255, 0.45);
  font-family: monospace;
  font-size: 13px;
  line-height: 1;
  pointer-events: none;
  z-index: 3;
}
.evidence-crosshair.ch-tl { top: 8px; left: 8px; }
.evidence-crosshair.ch-tr { top: 8px; right: 8px; }
.evidence-crosshair.ch-br { bottom: 8px; right: 8px; }
.evidence-crosshair.ch-bl { bottom: 8px; left: 8px; }

.dossier-evidence-float .evidence-meta {
  padding: 13px 16px;
  background: rgba(10, 14, 18, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.dossier-evidence-float .evidence-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 8.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 6px;
}
.dossier-evidence-float figcaption {
  font-size: 11.5px;
  line-height: 1.5;
  color: #b0b9bb;
  margin-bottom: 8px;
}
.dossier-evidence-float .evidence-telemetry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 8px;
  letter-spacing: 1px;
  color: #6a7477;
  text-transform: uppercase;
}
.dossier-evidence-float .evidence-telemetry .status-badge {
  color: #38b2ac;
  font-weight: 600;
}

/* 8. Panel Modular de Telemetría (Breakout Intersticial) */
.dossier-telemetry-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 20px;
  margin: 44px 0;
  padding: 22px;
  background: rgba(13, 18, 23, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  position: relative;
  clear: both;
}
.dossier-telemetry-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, transparent 65%);
}
.dossier-telemetry-visual {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #090d10;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.dossier-telemetry-visual img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  max-height: 260px;
  object-fit: cover;
  filter: saturate(0.85);
  transition: transform 0.6s ease;
  display: block;
}
.dossier-telemetry-visual:hover img {
  transform: scale(1.02);
}
.dossier-telemetry-visual .telemetry-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: rgba(7, 9, 11, 0.9);
  font-size: 8.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #b5bebe;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.dossier-telemetry-visual .status-badge {
  color: #38b2ac;
  font-weight: 600;
}

.dossier-telemetry-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dossier-telemetry-data .data-header {
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #8c9698;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dossier-telemetry-data h4 {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 14px 0;
  line-height: 1.3;
}
.telemetry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
}
.telemetry-cell {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 9px 11px;
  border-radius: 3px;
}
.telemetry-cell .cell-label {
  display: block;
  font-size: 7.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #788285;
  margin-bottom: 3px;
}
.telemetry-cell .cell-value {
  font-size: 12px;
  font-weight: 600;
  color: #eeeae2;
}

/* 9. Callout de Dictamen e Inteligencia */
.dossier-intel-callout {
  margin: 40px 0;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(212, 120, 100, 0.08) 0%, rgba(14, 18, 22, 0.7) 100%);
  border: 1px solid rgba(212, 120, 100, 0.25);
  border-left: 4px solid var(--red);
  border-radius: 4px;
  position: relative;
  clear: both;
}
.dossier-intel-callout .callout-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #df9787;
  font-weight: 600;
  margin-bottom: 10px;
}
.dossier-intel-callout p {
  font-size: 15px;
  line-height: 1.7;
  color: #eae5dc;
  margin: 0;
}

/* 10. Cápsula de Redes Sociales (Instagram & TikTok) */
.infonoico-social-dispatch {
  margin: 48px 0;
  padding: 26px 28px;
  background: linear-gradient(180deg, rgba(16, 22, 27, 0.88), rgba(9, 12, 16, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  clear: both;
}
.infonoico-social-dispatch::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--red), transparent);
}
.infonoico-social-dispatch p.dispatch-tag {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a4aeaf;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.infonoico-social-dispatch p.dispatch-desc {
  margin: 0 0 18px 0;
  font-size: 13.5px;
  color: #e5e2db;
  line-height: 1.6;
}

.infonoico-social-dispatch br,
.dispatch-actions br,
.btn-dispatch br {
  display: none !important;
}

.dispatch-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-dispatch {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-dispatch:hover {
  transform: translateY(-2px);
}
.btn-dispatch-ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(253, 29, 29, 0.3);
}
.btn-dispatch-ig::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}
.btn-dispatch-ig:hover {
  box-shadow: 0 9px 28px rgba(253, 29, 29, 0.45);
}
.btn-dispatch-tt {
  background: #0d1115;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.btn-dispatch-tt::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M19.59 6.69a4.83 4.83 0 0 1-3.77-4.25V2h-3.45v13.67a2.89 2.89 0 0 1-5.2 1.74 2.89 2.89 0 0 1 2.31-4.64 2.93 2.93 0 0 1 .88.13V9.4a6.84 6.84 0 0 0-1-.05A6.33 6.33 0 0 0 3 15.68 6.34 6.34 0 0 0 9.33 22a6.34 6.34 0 0 0 6.34-6.32V8.69a8.28 8.28 0 0 0 4.82 1.55v-3.5a4.85 4.85 0 0 1-.9-.05z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}
.btn-dispatch-tt:hover {
  background: #171d23;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 9px 28px rgba(0, 0, 0, 0.5);
}

/* 11. Fuentes Documentales y Archivo Consultado */
.infonoico-sources-archive {
  margin-top: 50px;
  padding: 24px 28px;
  background: rgba(13, 17, 21, 0.55);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  clear: both;
}
.infonoico-sources-archive h3 {
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #cbd5e1;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.infonoico-sources-archive ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.infonoico-sources-archive li {
  font-size: 13px;
  line-height: 1.5;
}
.infonoico-sources-archive a {
  color: #7bbfea;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}
.infonoico-sources-archive a:hover {
  color: #a8d5f2;
}

/* 12. Sello Editorial del Archivo */
.dossier-seal-footer {
  width: 100%;
  margin: 60px auto 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  clear: both;
}
.dossier-seal-footer .seal-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.dossier-seal-footer .seal-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dossier-seal-footer .brand-symbol {
  width: 20px;
  height: 20px;
}
.dossier-seal-footer .micro {
  font-size: 9px;
  letter-spacing: 1.8px;
  color: #8c9597;
  white-space: nowrap;
}

/* 13. Navegación Inferior entre Expedientes */
.dossier-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  clear: both;
}
.dossier-nav-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 20px;
  background: rgba(14, 18, 22, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
}
.dossier-nav-item:hover {
  background: rgba(14, 18, 22, 0.7);
  border-color: rgba(255, 255, 255, 0.15);
}
.dossier-nav-item.next {
  text-align: right;
  align-items: flex-end;
}
.dossier-nav-item .nav-label {
  font-size: 8.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #798285;
  font-weight: 600;
}
.dossier-nav-item a {
  font-size: 14.5px;
  font-weight: 500;
  color: #eeeae2;
  transition: color 0.2s ease;
  line-height: 1.4;
}
.dossier-nav-item a:hover {
  color: var(--red);
}
.dossier-nav-item .nav-empty {
  font-size: 12.5px;
  color: #555d60;
  font-style: italic;
}

/* 14. Expedientes Relacionados */
.dossier-related {
  margin-top: 75px;
  border-top: 1px solid var(--line);
  padding-top: 55px;
}
.dossier-related .section-heading {
  margin-bottom: 28px;
}
.dossier-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 30px;
}
.related-card {
  display: flex;
  flex-direction: column;
  background: #0d1216;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.related-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}
.related-card-img {
  display: block;
  position: relative;
  overflow: hidden;
  background: #141b20;
}
.related-card-img img {
  width: 100%;
  aspect-ratio: 1.7;
  object-fit: cover;
  filter: saturate(0.7);
  transition: transform 0.65s, filter 0.65s;
}
.related-card:hover .related-card-img img {
  transform: scale(1.03);
  filter: saturate(0.95);
}
.related-card-copy {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.related-card-copy h3 {
  font-size: clamp(19px, 1.8vw, 24px);
  letter-spacing: -0.02em;
  line-height: 1.25;
  font-weight: 500;
  margin: 10px 0 12px;
}
.related-card-copy h3 a:hover {
  color: #d7b4a0;
}
.related-excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 9px;
  letter-spacing: 0.8px;
}
.related-meta a {
  color: #d0d1cb;
  transition: color 0.2s;
}
.related-meta a:hover {
  color: var(--red);
}

/* Sello de Desclasificación Estilo Expediente Secreto */
.dossier-stamp {
  position: absolute;
  top: 24px;
  right: var(--gutter);
  border: 2px solid rgba(212, 120, 100, 0.45);
  color: #df9787;
  padding: 6px 14px;
  text-transform: uppercase;
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 2px;
  transform: rotate(-4deg);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.35;
  border-radius: 2px;
  background: rgba(212, 120, 100, 0.05);
  box-shadow: 0 0 16px rgba(212, 120, 100, 0.15);
  z-index: 5;
}
.dossier-stamp span:first-child {
  font-weight: 700;
  color: #e58b77;
}

/* Módulo de Puntos Clave / Resumen Ejecutivo */
.dossier-key-findings {
  background: rgba(14, 18, 22, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  padding: 24px 28px;
  margin: 0 0 45px 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}
.dossier-key-findings::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent 70%);
}
.findings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.findings-header .doc-tag {
  color: var(--red);
  font-weight: 600;
  font-family: monospace;
}
.findings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.finding-item {
  display: flex;
  gap: 14px;
}
.finding-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  font-family: monospace;
  line-height: 1;
  opacity: 0.85;
}
.finding-item strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.35;
}
.finding-item p {
  font-size: 12px;
  line-height: 1.6;
  color: #a6afb1;
  margin: 0;
}



/* Secuencia Temporal Cronológica (Timeline) */
.dossier-timeline-block {
  margin: 48px 0;
  padding: 26px 30px;
  background: rgba(13, 18, 23, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  clear: both;
}
.timeline-header {
  font-size: 9.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.timeline-items {
  position: relative;
  margin-top: 24px;
  padding-left: 28px;
}
.timeline-items::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--red) 0%, rgba(212, 120, 100, 0.3) 70%, transparent 100%);
}
.timeline-entry {
  position: relative;
  margin-bottom: 24px;
}
.timeline-entry:last-child {
  margin-bottom: 0;
}
.timeline-marker {
  position: absolute;
  left: -28px;
  top: 4px;
}
.marker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0d1216;
  border: 2px solid var(--red);
  display: block;
}
.marker-dot.active {
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
}
.timeline-time {
  font-size: 10px;
  font-family: monospace;
  letter-spacing: 1.5px;
  color: var(--red);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.timeline-content h4 {
  font-size: 15px;
  color: #ffffff;
  margin: 0 0 6px 0;
  font-weight: 600;
}
.timeline-content p {
  font-size: 13px;
  line-height: 1.6;
  color: #a4aeaf;
  margin: 0;
}

/* 9. Figura Panorámica / Breakout Editorial (Full-Width en Columna) */
.dossier-breakout-figure {
  width: 100%;
  margin: 52px 0;
  position: relative;
  background: #0d1216;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  clear: both;
}
.dossier-breakout-figure .breakout-media-wrap {
  position: relative;
  overflow: hidden;
  background: #141b20;
}
.dossier-breakout-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.85);
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.75s ease;
  display: block;
}
.dossier-breakout-figure:hover img {
  transform: scale(1.02);
  filter: saturate(1);
}
.dossier-breakout-figure figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  background: rgba(10, 14, 18, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #a0aaab;
}
.dossier-breakout-figure figcaption .caption-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
}
.dossier-breakout-figure figcaption .caption-tag {
  color: var(--red);
  font-weight: 600;
}

/* Matriz Comparativa de Sensores */
.dossier-evidence-matrix {
  margin: 48px 0;
  clear: both;
}
.matrix-header {
  font-size: 9.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 14px;
}
.matrix-table-wrap {
  overflow-x: auto;
  background: rgba(13, 18, 23, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
}
.matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  min-width: 580px;
}
.matrix-table th {
  padding: 12px 16px;
  background: rgba(10, 14, 18, 0.95);
  font-size: 8.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8c9597;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.matrix-table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #d0d7d8;
}
.matrix-table tr:last-child td {
  border-bottom: none;
}
.matrix-badge {
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
}
.matrix-badge.verified {
  background: rgba(56, 178, 172, 0.15);
  color: #38b2ac;
  border: 1px solid rgba(56, 178, 172, 0.3);
}
.matrix-badge.visual {
  background: rgba(212, 120, 100, 0.15);
  color: #df9787;
  border: 1px solid rgba(212, 120, 100, 0.3);
}
.matrix-badge.negative {
  background: rgba(255, 255, 255, 0.05);
  color: #8c9597;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 15. Adaptaciones Responsivas */
@media (max-width: 1140px) and (min-width: 769px) {
  .dossier-grid-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
  }
}

@media (max-width: 960px) and (min-width: 769px) {
  .dossier-grid-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .dossier-grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .dossier-sidebar {
    position: static;
    order: 2;
    max-height: none;
    overflow-y: visible;
  }
}

@media (max-width: 900px) {
  .findings-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dossier-stamp {
    position: static;
    transform: none;
    margin-bottom: 18px;
    display: inline-flex;
  }
  .dossier-related-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .dossier-evidence-float.float-right,
  .dossier-evidence-float.float-left {
    float: none;
    width: 100%;
    margin: 28px 0;
  }
  .dossier-telemetry-panel {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 18px;
  }
  .telemetry-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dossier-hero {
    padding-top: 24px;
    padding-bottom: 40px;
  }
  .dossier-hero-copy h1 {
    font-size: 32px;
  }
  .dossier-intro {
    font-size: 16px;
  }
  .dossier-meta-bar {
    grid-template-columns: 1fr 1fr;
    padding: 16px;
    gap: 14px;
  }
  .dossier-figure figcaption {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .dossier-figure figcaption .caption-text {
    max-width: 100%;
  }
  .dossier-body {
    font-size: 16px;
    line-height: 1.8;
  }
  .dossier-body blockquote {
    padding: 20px;
    font-size: 18px;
  }
  .infonoico-social-dispatch {
    padding: 20px;
  }
  .dossier-seal-footer .micro {
    white-space: normal;
    font-size: 8px;
  }
  .dossier-nav {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dossier-nav-item.next {
    text-align: left;
    align-items: flex-start;
  }
}
