/* ═══════════════════════════════════════════════════════
   SNR Article v2 — Terminal Phosphor + Elevated Card
   Loaded only on posts with snr_main_ticker
   Activates via body class .snr-v2
   ═══════════════════════════════════════════════════════ */

/* ── Body background (Phosphor look, only dark mode) ── */
[data-theme="dark"] body.snr-v2 {
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.012) 0 1px, transparent 1px 3px),
    radial-gradient(ellipse at 50% 50%, rgba(74,216,255,0.04) 0%, transparent 60%),
    #000 !important;
  background-attachment: fixed;
}

/* ── Hero: Bloomberg Terminal Split ── */
.snr-v2 .v2-hero {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 0;
  max-width: 1280px;
  margin: 1.5rem auto 2rem;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
@media (max-width: 980px) {
  .snr-v2 .v2-hero { grid-template-columns: 1fr; margin: 1rem auto 1.5rem; }
}

/* ── Hero Video (16:9) — left column ── */
.snr-v2 .v2-hero-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0a0c10;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}
.snr-v2 .v2-hero-video img.poster,
.snr-v2 .v2-hero-video .poster-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.snr-v2 .v2-hero-video .poster-bg {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(155,27,48,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(184,150,78,0.25) 0%, transparent 55%),
    linear-gradient(135deg, #0a0c10 0%, #1b2838 100%);
}
.snr-v2 .v2-hero-video .ticker-watermark {
  position: absolute;
  right: 1.5rem; top: 1.2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: rgba(255,255,255,0.08);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}
.snr-v2 .v2-hero-video .play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5) 100%);
  z-index: 3;
  transition: background .3s;
}
.snr-v2 .v2-hero-video:hover .play-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.6) 100%); }
.snr-v2 .v2-hero-video .play-button {
  width: 76px; height: 76px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s, background .25s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.snr-v2 .v2-hero-video:hover .play-button { transform: scale(1.08); background: #9b1b30; }
.snr-v2 .v2-hero-video:hover .play-button svg { fill: #fff; }
.snr-v2 .v2-hero-video .play-button svg { width: 30px; height: 30px; fill: #1b2838; margin-left: 4px; transition: fill .25s; }
.snr-v2 .v2-hero-video .video-meta {
  position: absolute; left: 1rem; bottom: 1rem;
  display: flex; gap: 0.5rem; align-items: center;
  font-family: 'Outfit', sans-serif; font-size: 0.72rem;
  z-index: 3;
}
.snr-v2 .v2-hero-video .video-badge {
  background: #9b1b30;
  color: #fff;
  padding: 0.25rem 0.55rem;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.snr-v2 .v2-hero-video .video-badge::before {
  content: ""; width: 6px; height: 6px; background: #fff; border-radius: 50%;
  animation: snr-pulse 1.5s ease-in-out infinite;
}
.snr-v2 .v2-hero-video .video-duration {
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  font-weight: 600;
}
@keyframes snr-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* When video is playing, swap to iframe (lite-youtube pattern) */
.snr-v2 .v2-hero-video.playing .play-overlay,
.snr-v2 .v2-hero-video.playing .video-meta,
.snr-v2 .v2-hero-video.playing .ticker-watermark {
  display: none;
}
.snr-v2 .v2-hero-video iframe,
.snr-v2 .v2-hero-video video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  z-index: 5;
}

/* ── Hero Info Panel — right column ── */
.snr-v2 .v2-hero-panel {
  background: #000;
  color: #f5f0e8;
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.snr-v2 .v2-hero-panel::before {
  content: attr(data-ticker);
  position: absolute;
  bottom: -1rem; right: -0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 9rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}
.snr-v2 .v2-hero-panel .v2-kicker {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4af6d;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  position: relative; z-index: 1;
}
.snr-v2 .v2-hero-panel .v2-kicker::before {
  content: ""; display: inline-block;
  width: 3px; height: 14px; background: #d4af6d; border-radius: 1px;
}
.snr-v2 .v2-hero-panel h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #f5f0e8;
  margin-bottom: 1.1rem;
  position: relative; z-index: 1;
}
.snr-v2 .v2-hero-panel .v2-byline {
  color: rgba(245,240,232,0.6);
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  font-family: 'Outfit', sans-serif;
  display: flex; align-items: center; gap: 0.5rem;
  flex-wrap: wrap;
}
.snr-v2 .v2-hero-panel .v2-byline strong { color: #fff; font-weight: 600; }
.snr-v2 .v2-hero-panel .v2-byline .dot {
  width: 4px; height: 4px;
  background: rgba(245,240,232,0.4);
  border-radius: 50%;
}

/* Stockcard inside hero panel */
.snr-v2 .v2-hero-stockcard {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid #9b1b30;
  padding: 0.85rem 1rem;
  border-radius: 3px;
  margin-bottom: 1rem;
  font-family: 'Outfit', sans-serif;
  position: relative; z-index: 1;
}
.snr-v2 .v2-hero-stockcard .row1 {
  display: flex; align-items: baseline; gap: 0.6rem;
  margin-bottom: 0.3rem;
}
.snr-v2 .v2-hero-stockcard .ticker {
  font-weight: 800; font-size: 1rem;
  color: #fff; letter-spacing: 0.02em;
}
.snr-v2 .v2-hero-stockcard .name {
  font-size: 0.74rem; color: rgba(245,240,232,0.6);
}
.snr-v2 .v2-hero-stockcard .row2 {
  display: flex; align-items: baseline; gap: 0.7rem;
  font-variant-numeric: tabular-nums;
}
.snr-v2 .v2-hero-stockcard .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.snr-v2 .v2-hero-stockcard .delta {
  font-weight: 600;
  font-size: 0.95rem;
}
.snr-v2 .v2-hero-stockcard .delta.up { color: #4caf6e; }
.snr-v2 .v2-hero-stockcard .delta.down { color: #e95370; }
.snr-v2 .v2-hero-stockcard .delta-pct { font-size: 0.85rem; opacity: 0.85; }
.snr-v2 .v2-hero-stockcard svg.spark {
  height: 36px; width: 100%;
  margin-top: 0.5rem;
}

/* Mini-Metrics row at bottom of panel */
.snr-v2 .v2-hero-mini-metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative; z-index: 1;
}
.snr-v2 .v2-hero-mini-metrics .m .l {
  font-size: 0.62rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(245,240,232,0.5);
  font-weight: 600;
}
.snr-v2 .v2-hero-mini-metrics .m .v {
  font-size: 0.85rem; font-weight: 600; color: #fff;
  font-variant-numeric: tabular-nums;
  margin-top: 0.15rem;
}
@media (max-width: 980px) {
  .snr-v2 .v2-hero-panel { padding: 1.4rem; }
  .snr-v2 .v2-hero-mini-metrics { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
}

/* ── Article Layout (content + sidebar) ── */
.snr-v2 .v2-content-layout {
  max-width: 1280px;
  margin: 2rem auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 3rem;
}
@media (max-width: 980px) {
  .snr-v2 .v2-content-layout { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ── Article Card Frame (Elevated Card from F2) ── */
.snr-v2 article.v2-article {
  position: relative;
  background: linear-gradient(180deg, #0a0e14 0%, #060a10 100%);
  border: 1px solid #1d4254;
  border-radius: 4px;
  padding: 0 2.5rem 2rem;
  box-shadow:
    0 0 0 1px rgba(74, 216, 255, 0.04),
    0 12px 48px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(74, 216, 255, 0.05),
    inset 0 1px 0 rgba(74, 216, 255, 0.06);
}
.snr-v2 article.v2-article::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, #4ad8ff 30%, #d4af6d 70%, transparent 100%);
  opacity: 0.6;
}
@media (max-width: 600px) {
  .snr-v2 article.v2-article { padding: 0 1.25rem 1.5rem; }
}

/* ── Status Bar (from F4) ── */
.snr-v2 article.v2-article > .v2-status-bar {
  background: #050810;
  border: 1px solid #1d4254;
  padding: 0.65rem 1rem;
  margin: 1.5rem -1rem 1.8rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: #4ad8ff;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  border-radius: 2px;
  font-weight: 700;
  text-transform: uppercase;
}
.snr-v2 article.v2-article > .v2-status-bar .blink {
  width: 7px; height: 7px;
  background: #4ad8ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #4ad8ff, 0 0 4px #4ad8ff;
  animation: snr-pulse 1.5s infinite;
  display: inline-block;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.snr-v2 article.v2-article > .v2-status-bar .right {
  color: #d4af6d;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 600px) {
  .snr-v2 article.v2-article > .v2-status-bar {
    font-size: 0.6rem; padding: 0.5rem 0.7rem;
    margin: 1rem -0.6rem 1.4rem;
  }
}

/* ── Article Body inside Card ── */
.snr-v2 article.v2-article .v2-article-body {
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #d4cfc6;
}
.snr-v2 article.v2-article .v2-article-body p { margin-bottom: 1.3rem; }
.snr-v2 article.v2-article .v2-article-body h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.6rem;
  margin: 2.2rem 0 0.8rem;
  letter-spacing: -0.01em;
  color: #f0e8dc;
}
.snr-v2 article.v2-article .v2-article-body blockquote {
  border-left: 3px solid #d4af6d;
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 1.5rem 0;
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: #f0e8dc;
  font-weight: 400;
}

/* ── Sidebar — Phosphor styling ── */
.snr-v2 .v2-sidebar {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  position: sticky;
  top: 5rem;
  align-self: start;
}
.snr-v2 .v2-sidebar-section {
  background: #0a0e14;
  border: 1px solid #1d4254;
  border-radius: 2px;
  padding: 1.1rem;
  margin-bottom: 1rem;
  position: relative;
  box-shadow:
    0 0 24px rgba(74, 216, 255, 0.06),
    inset 0 0 0 1px rgba(74, 216, 255, 0.03);
}
.snr-v2 .v2-sidebar-section::before {
  content: ""; position: absolute;
  top: 8px; right: 8px;
  width: 6px; height: 6px;
  background: #4ad8ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #4ad8ff, 0 0 4px #4ad8ff;
  animation: snr-pulse 2s infinite;
}
.snr-v2 .v2-sidebar-h {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4ad8ff;
  font-weight: 800;
  padding-bottom: 0.6rem;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid #1d4254;
}

/* Live Price Block in Sidebar */
.snr-v2 .v2-metrics-price {
  display: flex; align-items: baseline; gap: 0.6rem;
  margin-bottom: 0.4rem;
  font-variant-numeric: tabular-nums;
}
.snr-v2 .v2-metrics-price .big {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #d4af6d;
}
.snr-v2 .v2-metrics-price .delta {
  font-weight: 600;
  font-size: 0.95rem;
}
.snr-v2 .v2-metrics-price .delta.up { color: #4caf6e; }
.snr-v2 .v2-metrics-price .delta.down { color: #e95370; }
.snr-v2 .v2-metrics-meta {
  font-size: 0.75rem;
  color: rgba(74, 216, 255, 0.7);
  margin-bottom: 1rem;
  display: flex; justify-content: space-between;
}

/* Sparkline */
.snr-v2 svg.v2-sparkline {
  width: 100%;
  height: 50px;
  margin: 0.6rem 0 1rem;
}
.snr-v2 svg.v2-sparkline path.fill { fill: rgba(76, 175, 110, 0.15); }
.snr-v2 svg.v2-sparkline path.line { fill: none; stroke: #4caf6e; stroke-width: 1.5; }
.snr-v2 svg.v2-sparkline.down path.fill { fill: rgba(233, 83, 112, 0.12); }
.snr-v2 svg.v2-sparkline.down path.line { stroke: #e95370; }

/* Metrics grid */
.snr-v2 .v2-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 0.9rem;
  margin-bottom: 0.9rem;
}
.snr-v2 .v2-metric {
  padding: 0.4rem 0;
  border-bottom: 1px dotted #1d4254;
  display: flex; justify-content: space-between; align-items: baseline;
}
.snr-v2 .v2-metric:last-child { border-bottom: none; }
.snr-v2 .v2-metric .l {
  color: rgba(74, 216, 255, 0.75);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.snr-v2 .v2-metric .v {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: 0.9rem;
  color: #d4af6d;
}

/* 52W Range Bar */
.snr-v2 .v2-range-band { margin-top: 0.8rem; }
.snr-v2 .v2-range-band .label {
  font-size: 0.72rem; color: rgba(74, 216, 255, 0.75);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.snr-v2 .v2-range-track {
  position: relative;
  height: 6px;
  background: linear-gradient(90deg, #e95370 0%, #d4af6d 50%, #4caf6e 100%);
  border-radius: 99px;
  margin-bottom: 0.35rem;
  opacity: 0.85;
}
.snr-v2 .v2-range-marker {
  position: absolute;
  top: -3px;
  width: 12px; height: 12px;
  background: #4ad8ff;
  border: 2px solid #0a0e14;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(74, 216, 255, 0.6);
}
.snr-v2 .v2-range-labels {
  display: flex; justify-content: space-between;
  font-size: 0.72rem; color: rgba(74, 216, 255, 0.7);
  font-variant-numeric: tabular-nums;
}

/* Profile Rows: Sektor / Industry / Country with Flag */
.snr-v2 .v2-profile-rows {
  display: flex; flex-direction: column; gap: 0.45rem;
  margin-top: 0.9rem; padding-top: 0.9rem; border-top: 1px solid #1d4254;
}
.snr-v2 .v2-profile-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem;
}
.snr-v2 .v2-profile-row .l {
  color: rgba(74, 216, 255, 0.75);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.snr-v2 .v2-profile-row .v {
  font-weight: 500;
  color: #f0e8dc;
  display: inline-flex; gap: 0.4rem; align-items: center;
}
.snr-v2 .v2-flag { font-size: 1rem; }

/* Sidebar collapse for mobile */
.snr-v2 .v2-sidebar-collapse {
  display: none;
  width: 100%;
  background: #0a0e14;
  border: 1px solid #1d4254;
  padding: 0.85rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4ad8ff;
  text-align: left;
  border-radius: 2px;
  margin-bottom: 0.5rem;
  align-items: center;
  justify-content: space-between;
}
.snr-v2 .v2-sidebar-collapse .arrow { transition: transform 0.25s; }
.snr-v2 .v2-sidebar-collapse[aria-expanded="true"] .arrow { transform: rotate(180deg); }

@media (max-width: 980px) {
  .snr-v2 .v2-sidebar { position: static; max-height: none; }
  .snr-v2 .v2-sidebar-collapse { display: flex; }
  .snr-v2 .v2-sidebar-content { display: none; }
  .snr-v2 .v2-sidebar-content.open { display: block; }
}

/* Sidebar latest articles list */
.snr-v2 .v2-sb-articles ul { list-style: none; padding: 0; margin: 0; }
.snr-v2 .v2-sb-article {
  display: flex; gap: 0.7rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid #1d4254;
}
.snr-v2 .v2-sb-article:last-child { border-bottom: none; }
.snr-v2 .v2-sb-article-thumb {
  flex-shrink: 0;
  width: 70px; height: 50px;
  border-radius: 2px;
  overflow: hidden;
  background: #1b2838;
}
.snr-v2 .v2-sb-article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.snr-v2 .v2-sb-article-title {
  font-family: 'Fraunces', serif;
  font-size: 0.88rem;
  line-height: 1.3;
  font-weight: 500;
  color: #f0e8dc;
}
.snr-v2 .v2-sb-article time {
  font-size: 0.72rem;
  color: rgba(74, 216, 255, 0.6);
  display: block;
  margin-top: 0.25rem;
}

/* ── Shorts Strip (at end of article) ── */
.snr-v2 .v2-shorts-section {
  max-width: 1280px;
  margin: 3rem auto 2rem;
  padding: 1.5rem 1.25rem;
  border-top: 1px solid #1d4254;
}
.snr-v2 .v2-shorts-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 1.25rem;
  font-family: 'Outfit', sans-serif;
}
.snr-v2 .v2-shorts-head h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  color: #f0e8dc;
}
.snr-v2 .v2-shorts-head .all-link {
  font-size: 0.8rem;
  color: #4ad8ff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.snr-v2 .v2-shorts-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: #1d4254 transparent;
}
.snr-v2 .v2-shorts-strip::-webkit-scrollbar { height: 6px; }
.snr-v2 .v2-shorts-strip::-webkit-scrollbar-thumb { background: #1d4254; border-radius: 99px; }
.snr-v2 .v2-short-card {
  flex-shrink: 0;
  width: 200px;
  aspect-ratio: 9 / 16;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  scroll-snap-align: start;
  isolation: isolate;
  background: #0a0c10;
}
.snr-v2 .v2-short-card .short-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.snr-v2 .v2-short-card .short-poster-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #1b2838 0%, #9b1b30 100%);
  z-index: 1;
}
.snr-v2 .v2-short-card .short-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
}
.snr-v2 .v2-short-card .short-watermark {
  position: absolute; top: 0.8rem; right: 0.8rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  background: rgba(0,0,0,0.4);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  z-index: 3;
}
.snr-v2 .v2-short-card .short-info {
  position: absolute; left: 0.8rem; right: 0.8rem; bottom: 0.8rem;
  color: #fff; z-index: 3;
}
.snr-v2 .v2-short-card .short-info h4 {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.3rem;
}
.snr-v2 .v2-short-card .short-info .meta {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  opacity: 0.8;
  display: flex; gap: 0.4rem; align-items: center;
}
.snr-v2 .v2-short-card .short-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  transition: transform 0.25s, background 0.25s;
}
.snr-v2 .v2-short-card:hover .short-play { transform: translate(-50%, -50%) scale(1.1); background: #9b1b30; }
.snr-v2 .v2-short-card:hover .short-play svg { fill: #fff; }
.snr-v2 .v2-short-card .short-play svg { width: 18px; height: 18px; fill: #1b2838; margin-left: 2px; transition: fill 0.25s; }

/* When a short is playing */
.snr-v2 .v2-short-card.playing .short-overlay,
.snr-v2 .v2-short-card.playing .short-info,
.snr-v2 .v2-short-card.playing .short-watermark,
.snr-v2 .v2-short-card.playing .short-play { display: none; }
.snr-v2 .v2-short-card iframe,
.snr-v2 .v2-short-card video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0; z-index: 5;
}

/* ═══════════════════════════════════════════════════════
   LIGHT MODE TEXT COLOR FIXES
   Backgrounds folgen Theme: light = light cards, dark = dark cards.
   Schriftfarben so dass sie auf jeweiligem Hintergrund lesbar sind.
   Hero-Panel bleibt schwarz (terminal HUD), Status-Bar bleibt dunkel.
   ═══════════════════════════════════════════════════════ */

/* ── DARK MODE (Default Phosphor look) ── */

/* Article Body — dark mode default (cream auf dunkel) */
.snr-v2 article.v2-article .v2-article-body { color: #d4cfc6; }
.snr-v2 article.v2-article .v2-article-body h2 { color: #f0e8dc; }
.snr-v2 article.v2-article .v2-article-body h3 { color: #f0e8dc; }
.snr-v2 article.v2-article .v2-article-body blockquote {
  color: #f0e8dc;
  border-left-color: #d4af6d;
}
.snr-v2 article.v2-article .v2-article-body strong,
.snr-v2 article.v2-article .v2-article-body b { color: #f0e8dc; }
.snr-v2 article.v2-article .v2-article-body a { color: #4ad8ff; border-bottom: 1px solid rgba(74,216,255,0.3); }
.snr-v2 article.v2-article .v2-article-body a:hover { border-bottom-color: #4ad8ff; }

/* ═══════════════════════════════════════════════════════
   LIGHT MODE OVERRIDES — dunkle Schrift auf hellem Hintergrund
   ═══════════════════════════════════════════════════════ */

/* Article Card → hell mit dunkler Schrift */
[data-theme="light"] .snr-v2 article.v2-article,
:root:not([data-theme="dark"]) .snr-v2 article.v2-article {
  background: #fff;
  border-color: #d4cfc6;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* Body Text → ink color (#1b2838) */
[data-theme="light"] .snr-v2 article.v2-article .v2-article-body,
:root:not([data-theme="dark"]) .snr-v2 article.v2-article .v2-article-body {
  color: #1b2838 !important;
}
[data-theme="light"] .snr-v2 article.v2-article .v2-article-body h2,
:root:not([data-theme="dark"]) .snr-v2 article.v2-article .v2-article-body h2 {
  color: #1b2838 !important;
}
[data-theme="light"] .snr-v2 article.v2-article .v2-article-body h3,
:root:not([data-theme="dark"]) .snr-v2 article.v2-article .v2-article-body h3 {
  color: #1b2838 !important;
}
[data-theme="light"] .snr-v2 article.v2-article .v2-article-body blockquote,
:root:not([data-theme="dark"]) .snr-v2 article.v2-article .v2-article-body blockquote {
  color: #1b2838 !important;
  border-left-color: #9b1b30 !important;
}
[data-theme="light"] .snr-v2 article.v2-article .v2-article-body strong,
[data-theme="light"] .snr-v2 article.v2-article .v2-article-body b,
:root:not([data-theme="dark"]) .snr-v2 article.v2-article .v2-article-body strong,
:root:not([data-theme="dark"]) .snr-v2 article.v2-article .v2-article-body b {
  color: #1b2838 !important;
}
[data-theme="light"] .snr-v2 article.v2-article .v2-article-body a,
:root:not([data-theme="dark"]) .snr-v2 article.v2-article .v2-article-body a {
  color: #9b1b30 !important;
  border-bottom: 1px solid rgba(155,27,48,0.3) !important;
}
[data-theme="light"] .snr-v2 article.v2-article .v2-article-body a:hover,
:root:not([data-theme="dark"]) .snr-v2 article.v2-article .v2-article-body a:hover {
  border-bottom-color: #9b1b30 !important;
}

/* Status-Bar bleibt dunkel mit cyan (HUD-Look — funktioniert in beiden Modes) */
.snr-v2 article.v2-article > .v2-status-bar {
  background: #050810;
  border-color: #1d4254;
  color: #6ea4c4;
}
.snr-v2 article.v2-article > .v2-status-bar .right { color: #d4af6d; }

/* Sidebar Card → hell im Light Mode */
[data-theme="light"] .snr-v2 .v2-sidebar-section,
:root:not([data-theme="dark"]) .snr-v2 .v2-sidebar-section {
  background: #fff !important;
  border-color: #d4cfc6 !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
/* Live-Dot in der Sidebar — sichtbar lassen (cyan-strong glow) */
[data-theme="light"] .snr-v2 .v2-sidebar-section::before,
:root:not([data-theme="dark"]) .snr-v2 .v2-sidebar-section::before {
  background: #2d6e8a;
  box-shadow: 0 0 6px rgba(45,110,138,0.5);
}

/* Sidebar Headlines → ink dark + dezente Linie */
[data-theme="light"] .snr-v2 .v2-sidebar-h,
:root:not([data-theme="dark"]) .snr-v2 .v2-sidebar-h {
  color: #1b2838 !important;
  border-bottom-color: #d4cfc6 !important;
}
/* Metric Labels → muted dark gray */
[data-theme="light"] .snr-v2 .v2-metric .l,
[data-theme="light"] .snr-v2 .v2-profile-row .l,
[data-theme="light"] .snr-v2 .v2-range-band .label,
[data-theme="light"] .snr-v2 .v2-metrics-meta,
:root:not([data-theme="dark"]) .snr-v2 .v2-metric .l,
:root:not([data-theme="dark"]) .snr-v2 .v2-profile-row .l,
:root:not([data-theme="dark"]) .snr-v2 .v2-range-band .label,
:root:not([data-theme="dark"]) .snr-v2 .v2-metrics-meta {
  color: #7a756c !important;
}
/* Metric Values → ink dark, bold */
[data-theme="light"] .snr-v2 .v2-metric .v,
:root:not([data-theme="dark"]) .snr-v2 .v2-metric .v {
  color: #1b2838 !important;
}
[data-theme="light"] .snr-v2 .v2-profile-row .v,
:root:not([data-theme="dark"]) .snr-v2 .v2-profile-row .v {
  color: #1b2838 !important;
}
[data-theme="light"] .snr-v2 .v2-metrics-price .big,
:root:not([data-theme="dark"]) .snr-v2 .v2-metrics-price .big {
  color: #1b2838 !important;
}
[data-theme="light"] .snr-v2 .v2-metric,
:root:not([data-theme="dark"]) .snr-v2 .v2-metric {
  border-bottom-color: rgba(212,207,198,0.6);
}
[data-theme="light"] .snr-v2 .v2-profile-rows,
:root:not([data-theme="dark"]) .snr-v2 .v2-profile-rows {
  border-top-color: #d4cfc6;
}
[data-theme="light"] .snr-v2 .v2-sb-article,
:root:not([data-theme="dark"]) .snr-v2 .v2-sb-article {
  border-bottom-color: #d4cfc6;
}
[data-theme="light"] .snr-v2 .v2-sb-article-title,
:root:not([data-theme="dark"]) .snr-v2 .v2-sb-article-title {
  color: #1b2838 !important;
}
[data-theme="light"] .snr-v2 .v2-sb-article time,
:root:not([data-theme="dark"]) .snr-v2 .v2-sb-article time {
  color: #7a756c !important;
}

/* Range marker → darker cyan in light mode */
[data-theme="light"] .snr-v2 .v2-range-marker,
:root:not([data-theme="dark"]) .snr-v2 .v2-range-marker {
  background: #1b2838;
  border-color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Sidebar Mobile Collapse Toggle */
[data-theme="light"] .snr-v2 .v2-sidebar-collapse,
:root:not([data-theme="dark"]) .snr-v2 .v2-sidebar-collapse {
  background: #fff !important;
  border-color: #d4cfc6 !important;
  color: #1b2838 !important;
}

/* Author Bio Card in light mode */
[data-theme="light"] .snr-v2 .author-bio,
:root:not([data-theme="dark"]) .snr-v2 .author-bio {
  background: #fff !important;
  border-color: #d4cfc6 !important;
}
[data-theme="light"] .snr-v2 .author-bio .author-bio-name a,
:root:not([data-theme="dark"]) .snr-v2 .author-bio .author-bio-name a {
  color: #1b2838 !important;
}
[data-theme="light"] .snr-v2 .author-bio .author-bio-text,
:root:not([data-theme="dark"]) .snr-v2 .author-bio .author-bio-text {
  color: #5a554c !important;
}
[data-theme="light"] .snr-v2 .author-bio .author-bio-links a,
:root:not([data-theme="dark"]) .snr-v2 .author-bio .author-bio-links a {
  color: #9b1b30 !important;
}

/* Related Cards in light mode */
[data-theme="light"] .snr-v2 .card,
:root:not([data-theme="dark"]) .snr-v2 .card {
  background: #fff !important;
  border-color: #d4cfc6 !important;
}
[data-theme="light"] .snr-v2 .card h3 a,
:root:not([data-theme="dark"]) .snr-v2 .card h3 a {
  color: #1b2838 !important;
}
[data-theme="light"] .snr-v2 .card .meta,
:root:not([data-theme="dark"]) .snr-v2 .card .meta {
  color: #7a756c !important;
}
[data-theme="light"] .snr-v2 .sec-title,
:root:not([data-theme="dark"]) .snr-v2 .sec-title {
  color: #1b2838 !important;
  border-top-color: #d4cfc6 !important;
}

/* Article Tags + Profile-Link in light mode */
[data-theme="light"] .snr-v2 article.v2-article .article-tags a,
:root:not([data-theme="dark"]) .snr-v2 article.v2-article .article-tags a {
  border-color: #d4cfc6 !important;
  color: #5a554c !important;
}

/* Page background light mode — keep light paper, no Phosphor scanlines */
[data-theme="light"] body.snr-v2,
:root:not([data-theme="dark"]) body.snr-v2 {
  background: var(--paper, #fafaf7) !important;
}

/* Hero-Panel + Shorts-Section bleiben dauerhaft dunkel — die sind "outside the article surface" */
.snr-v2 .v2-hero-panel { background: #000; color: #f5f0e8; }
.snr-v2 .v2-shorts-head h3 { color: inherit; }
[data-theme="light"] .snr-v2 .v2-shorts-head h3,
:root:not([data-theme="dark"]) .snr-v2 .v2-shorts-head h3 { color: #1b2838; }
[data-theme="light"] .snr-v2 .v2-shorts-section,
:root:not([data-theme="dark"]) .snr-v2 .v2-shorts-section {
  border-top-color: #d4cfc6;
}
[data-theme="light"] .snr-v2 .v2-shorts-head .all-link,
:root:not([data-theme="dark"]) .snr-v2 .v2-shorts-head .all-link {
  color: #9b1b30;
}
