:root{
  --bg:#0b1020;
  --panel:#121a2f;
  --panel2:#0f162a;
  --text:#e7ecff;
  --muted:#9aa6c5;
  --line:#243150;
  --good:#3ddc97;
  --bad:#ff6b6b;
  --accent:#5ea2ff;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 20% -10%, #18224d 0%, var(--bg) 45%), var(--bg);
  color:var(--text);
}
.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 20px;
  border-bottom:1px solid var(--line);
  background: rgba(11,16,32,0.55);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand{
  text-decoration:none;
  color:inherit;
  display:block;
}
.brand__title{font-weight:700; font-size:16px; letter-spacing:0.2px}
.brand__sub{color:var(--muted); font-size:12px; margin-top:2px}
.beta-badge{
  font-size:10px;
  font-weight:700;
  letter-spacing:0.5px;
  text-transform:uppercase;
  padding:3px 6px;
  border-radius:4px;
  background:linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
  color:#fff;
  margin-left:6px;
  vertical-align:middle;
}
.nav{display:flex; gap:10px}
.nav__item{
  color:var(--muted);
  text-decoration:none;
  padding:8px 10px;
  border-radius:10px;
  border:1px solid transparent;
}
.nav__item:hover{border-color:var(--line); color:var(--text)}
.nav__item.is-active{color:var(--text); background:rgba(94,162,255,0.10); border-color:rgba(94,162,255,0.25)}

.container{max-width:1200px; margin:0 auto; padding:18px 14px 40px}

.hero{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:14px 14px;
  margin-bottom:14px;
  border:1px solid rgba(36,49,80,0.55);
  border-radius:18px;
  background: rgba(15,22,42,0.45);
}
.hero__headline{font-size:22px;line-height:1.2;font-weight:700;color:var(--text);letter-spacing:-.01em}
.hero__sub{color:var(--muted);font-size:13px;line-height:1.5;max-width:72ch}
@media(max-width: 980px){.hero__headline{font-size:18px}}

.search{
  width:100%;
  max-width:340px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(36,49,80,0.75);
  background: rgba(11,16,32,0.35);
  color:var(--text);
  outline:none;
}
.search:focus{border-color:rgba(94,162,255,0.55)}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "index btc"
    "news news";
  gap:14px;
}
#card-index{grid-area:index}
#card-btc{grid-area:btc}
#card-news{grid-area:news}


/* -----------------------------
   Insights page
   ----------------------------- */

.insights-hero{
  padding:16px 16px;
  margin-bottom:14px;
  border:1px solid rgba(36,49,80,0.55);
  border-radius:18px;
  background: rgba(15,22,42,0.45);
}

.insights-hero h1{
  margin:0;
  font-size:24px;
  line-height:1.2;
  letter-spacing:-.01em;
}

.insights-hero p{
  margin:10px 0 0 0;
  color:var(--muted);
  line-height:1.6;
}

.insights-stack{
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* Each H2 block should read as one long horizontal section */
.insights-section{
  width:100%;
  padding:16px;
  border:1px solid rgba(36,49,80,0.75);
  border-radius:18px;
  background: linear-gradient(180deg, rgba(18,26,47,0.95), rgba(15,22,42,0.95));
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.insights-section h2{
  margin:0 0 10px 0;
  font-size:18px;
  letter-spacing:-0.2px;
}

.insights-section h3{
  margin:16px 0 8px 0;
  font-size:14px;
  color:rgba(231,236,255,0.92);
  letter-spacing:-0.1px;
}

.insights-section p{
  margin:10px 0;
  color:rgba(231,236,255,0.92);
  line-height:1.7;
}

.insights-section ul{
  margin:10px 0 0 18px;
  color:rgba(231,236,255,0.92);
  line-height:1.7;
}

.insights-section li{margin:6px 0}

.insights-kpi{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:10px;
  margin-top:12px;
}

.insights-kpi .stat{
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(0,0,0,0.12);
  border-radius:14px;
  padding:12px;
}

@media (max-width: 960px){
  .insights-kpi{grid-template-columns:1fr}
  .insights-hero h1{font-size:20px}
}

.insights{
  max-width: 980px;
  margin: 0 auto;
}

.insights-section{
  margin: 14px 0;
  padding: 16px 16px;
  border: 1px solid rgba(36,49,80,0.75);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18,26,47,0.92), rgba(15,22,42,0.92));
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.insights-section h2{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.insights-section p{
  margin: 0 0 10px;
  color: var(--text);
  line-height: 1.6;
}

.insights-section .muted{
  color: var(--muted);
}

.insights-section ul{
  margin: 8px 0 12px 18px;
  color: var(--text);
  line-height: 1.6;
}

.insights-kicker{
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

/* Insights actions */
.insights-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}

.btn--primary{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  font-weight: 700;
}

.btn--primary:hover{
  background: rgba(255,255,255,.16);
}

.card{
  background: linear-gradient(180deg, rgba(18,26,47,0.95), rgba(15,22,42,0.95));
  border:1px solid rgba(36,49,80,0.75);
  border-radius:18px;
  padding:14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.card__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin-bottom:10px;
}

.head-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex-wrap:wrap;
}
.kicker{color:var(--muted); font-size:12px}
.title{font-size:16px; font-weight:700; margin-top:2px}
.pill{
  font-size:12px;
  color:var(--text);
  border:1px solid rgba(94,162,255,0.25);
  background: rgba(94,162,255,0.10);
  padding:6px 10px;
  border-radius:999px;
}

.big{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; padding:8px 2px 10px}
.big__value{font-size:54px; font-weight:800; letter-spacing:-1px; line-height:1}
.big__delta{font-size:16px; color:var(--muted); font-weight:600}
.big__delta--up{color:var(--good)}
.big__delta--down{color:var(--bad)}
.big__delta.good{color:var(--good)}
.big__delta.bad{color:var(--bad)}

.mini{border-top:1px solid rgba(36,49,80,0.65); padding-top:10px; margin-top:6px}
.mini__row{display:flex; justify-content:space-between; padding:6px 0; font-size:13px}
.mini__label{color:var(--muted)}

.tabs{display:flex; gap:8px}
.tab{
  background:transparent;
  border:1px solid rgba(36,49,80,0.7);
  color:var(--muted);
  border-radius:12px;
  padding:6px 10px;
  font-weight:600;
  cursor:pointer;
}
.tab:hover{color:var(--text)}
.tab.is-active{color:var(--text); border-color:rgba(94,162,255,0.35); background:rgba(94,162,255,0.10)}

/*
  Chart.js can get into a resize feedback loop when the canvas height is not
  explicitly constrained (especially inside auto-sized CSS grid rows).
  We prevent "infinite page growth" by giving each chart a fixed wrapper height.
*/
.chartwrap{position:relative; width:100%; overflow:hidden;}
.chartwrap--index{height:170px;}
.chartwrap--btc{height:260px;}
.chartwrap canvas{display:block; width:100% !important; height:100% !important;}

.list{display:flex; flex-direction:column; gap:10px; max-height:600px; overflow:auto; padding-right:6px}
.item{
  border:1px solid rgba(36,49,80,0.65);
  border-radius:14px;
  padding:12px;
  background: rgba(255,255,255,0.02);
  display: block;
  text-decoration: none;
  transition: all 0.2s;
}
.item:hover{
  background: rgba(255,255,255,0.04);
  border-color: rgba(94,162,255,0.35);
}
.item__top{display:flex; justify-content:space-between; gap:10px; align-items:flex-start}
.item__title{font-weight:600; font-size:14px; line-height:1.4; color:var(--text); margin-bottom:8px}
.item__score{
  font-variant-numeric: tabular-nums;
  font-size:12px;
  padding:2px 8px;
  border-radius:999px;
  border:1px solid rgba(36,49,80,0.85);
  color:var(--muted);
  white-space:nowrap;
}
.item__score.good{border-color:rgba(61,220,151,0.35); color:var(--good)}
.item__score.bad{border-color:rgba(255,107,107,0.35); color:var(--bad)}
.item__meta{color:var(--muted); font-size:12px; margin-top:6px; display:flex; gap:8px; flex-wrap:wrap}
.badge{font-size:11px; padding:3px 8px; border-radius:999px; border:1px solid rgba(36,49,80,0.85); color:var(--muted)}
.badge.good{border-color:rgba(61,220,151,0.35); color:var(--good)}
.badge.bad{border-color:rgba(255,107,107,0.35); color:var(--bad)}
.badge.accent{border-color:rgba(94,162,255,0.35); color:var(--accent)}

.item a{color:var(--text); text-decoration:none}
.item a:hover{text-decoration:underline}

.hoverbox{
  margin-top:10px;
  border-top:1px solid rgba(36,49,80,0.65);
  padding-top:10px;
}
.hoverbox__title{color:var(--text); font-size:13px; margin-bottom:6px; font-weight:600}
.hoverbox__values{
  display:flex;
  gap:16px;
  margin-bottom:10px;
  padding:8px 12px;
  background:rgba(11,16,32,0.5);
  border-radius:8px;
  font-size:13px;
  font-weight:500;
}
.hoverbox__btc{color:#60a5fa}
.hoverbox__bei{color:#f472b6}
.hoverbox__body{font-size:13px; line-height:1.4}

.headline-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(36,49,80,0.35);
}

.headline-item:last-child {
  border-bottom: none;
}

.headline-item__link {
  flex: 1;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.3;
}

.headline-item__link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.headline-item__impact {
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
}

.headline-item__impact.impact--up {
  color: var(--good);
  background: rgba(61,220,151,0.1);
}

.headline-item__impact.impact--down {
  color: var(--bad);
  background: rgba(255,107,107,0.1);
}



@media (min-width: 1100px){
  .grid{
    grid-template-columns: 360px 1fr;
    grid-template-areas:
      "index btc"
      "news news";
  }
  #card-btc{min-height:520px}
  #card-index{min-height:520px}
}

@media (max-width: 980px){
  .grid{
    grid-template-columns: 1fr;
    grid-template-areas:
      "index"
      "btc"
      "news";
  }
  .list{max-height:320px}
}

.pre{white-space:pre-wrap; word-break:break-word; color:var(--muted); font-size:12px; line-height:1.45}

/* Header right group */
.headright{display:flex;align-items:center;gap:10px}

/* Live indicator */
.live{display:inline-flex;align-items:center;gap:8px;font-size:12px;letter-spacing:.04em;text-transform:uppercase;padding:6px 10px;border-radius:999px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.06)}
.live .dot{width:8px;height:8px;border-radius:999px;background:var(--ok);box-shadow:0 0 0 0 rgba(255,255,255,.0);animation:pulse 1.6s infinite}
.live.is-stale .dot{background:var(--bad);animation:none}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(255,255,255,.0)}
  50%{box-shadow:0 0 0 6px rgba(255,255,255,.12)}
  100%{box-shadow:0 0 0 0 rgba(255,255,255,.0)}
}

/* Controls under card head */
.controls{padding:10px 14px 6px 14px;display:flex;flex-direction:column;gap:10px}
.filters{display:flex;flex-wrap:wrap;gap:10px}
.select{appearance:none;background:rgba(11,16,32,0.95);border:1px solid rgba(255,255,255,.12);color:var(--text);border-radius:10px;padding:10px 12px;font-size:13px}
.select:focus{outline:2px solid rgba(255,255,255,.18);outline-offset:2px}
.select option{background:rgba(11,16,32,1);color:var(--text);padding:8px}

.content{padding:14px 16px 18px 16px}
.content h2{margin:14px 0 8px 0;font-size:16px}
.content p{margin:0 0 12px 0;line-height:1.6}
.muted{opacity:.75}

/* Loading state */
.loading{
  padding:40px 20px;
  text-align:center;
  color:var(--muted);
  font-size:14px;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{opacity:.5}
  50%{opacity:1}
}

/* Divergence badge + explore bar */
.divergence{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  font-size: 13px;
  line-height: 1.25;
}
.divergence .dot{
  display:inline-block;
  width:8px; height:8px;
  border-radius:50%;
  margin-right:8px;
  vertical-align:middle;
}
.divergence .tag{
  display:inline-block;
  font-weight:700;
  margin-right:8px;
}

.explorebar{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-size: 13px;
}
.btn{
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: inherit;
  cursor: pointer;
}
.btn:hover{ background: rgba(255,255,255,.10); }

/* Highlighted event cards */
.item.is-highlight{
  outline: 2px solid rgba(255,255,255,.35);
  box-shadow: 0 0 0 6px rgba(255,255,255,.06);
}

.event.is-highlight{ outline:2px solid rgba(255,255,255,.35); box-shadow:0 0 0 6px rgba(255,255,255,.06); }

/* ===== Events ===== */

.event {
  border: 1px solid rgba(36,49,80,0.65);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255,255,255,0.02);
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
  cursor: pointer;
}

.event:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(94,162,255,0.35);
}

.event__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.event__title {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.3;
}

.event__score {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(36,49,80,0.85);
  color: var(--muted);
  white-space: nowrap;
  font-weight: 600;
}

.event__score--up {
  border-color: rgba(61,220,151,0.35);
  color: var(--good);
  background: rgba(61,220,151,0.08);
}

.event__score--down {
  border-color: rgba(255,107,107,0.35);
  color: var(--bad);
  background: rgba(255,107,107,0.08);
}

.event__tags {
  margin-top: 6px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Tag styles */
.tag {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(36,49,80,0.85);
  color: var(--muted);
  white-space: nowrap;
  background: rgba(255,255,255,0.02);
}

.tag--src {
  border-color: rgba(94,162,255,0.35);
  color: var(--accent);
}

.tag--type {
  border-color: rgba(255,255,255,0.15);
}

.tag--topic {
  border-color: rgba(255,255,255,0.15);
}

.tag--time {
  border-color: rgba(255,255,255,0.10);
  font-size: 10px;
}

.tag--muted {
  opacity: 0.7;
}

/* Gauge visualization */
.gauge-container {
  position: relative;
  width: 100%;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 0 15px 0;
}

.gauge-container canvas {
  max-width: 100%;
  max-height: 160px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.gauge-container canvas:hover {
  opacity: 0.9;
}

.gauge-scale {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 50px;
  z-index: 5;
  pointer-events: none;
}

.gauge-scale__label {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
}

.gauge-scale__label--left {
  align-items: flex-start;
}

.gauge-scale__label--right {
  align-items: flex-end;
}

.gauge-scale__num {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}

.gauge-scale__word {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.5;
  white-space: nowrap;
}

.gauge-scale__label--left .gauge-scale__word {
  color: #c85a54;
}

.gauge-scale__label--right .gauge-scale__word {
  color: #7fb285;
}

.gauge-center {
  position: absolute;
  bottom: 30px;
  text-align: center;
  z-index: 10;
  pointer-events: none;
}

.gauge-center__value {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.gauge-center__tooltip {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.2s ease;
  line-height: 1.3;
  white-space: nowrap;
  background: rgba(18,26,47,0.95);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
}

.gauge-container:hover .gauge-center__tooltip {
  opacity: 1;
}

.gauge-label {
  position: absolute;
  bottom: 20px;
  text-align: center;
  z-index: 10;
}

.gauge-label__value {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 4px;
}

.gauge-label__text {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

/* Echo Point label (EP) */
.ep{
  display:inline;
  font-size:10px;
  font-weight:600;
  letter-spacing:.02em;
  opacity:.65;
  margin-left:4px;
}
.item__score{ white-space:nowrap; }
.headline-item__impact{ white-space:nowrap; }

/* Score wrapper with source badge */
.item__score-wrap{
  display:flex;
  align-items:center;
  gap:6px;
  flex-shrink:0;
}

/* Source badge for multi-source articles */
.source-badge{
  font-size:10px;
  font-weight:700;
  padding:2px 6px;
  border-radius:6px;
  background:rgba(94,162,255,0.15);
  border:1px solid rgba(94,162,255,0.35);
  color:var(--accent);
  cursor:help;
  white-space:nowrap;
}


.hint{padding:0 14px 10px 14px;color:rgba(230,236,255,0.75);font-size:12px;line-height:1.4}
.hint strong{color:var(--text)}
.hint .i{display:inline-flex;align-items:center;justify-content:center;width:16px;height:16px;border-radius:999px;border:1px solid rgba(255,255,255,.2);font-size:11px;margin-left:6px;opacity:.85}

/* Related headlines inside Top Events cards */
.item__related{margin-top:6px; padding-left:2px;}
.item__related .rel{opacity:.85; font-size:12.5px; line-height:1.25; margin:2px 0;}

/* Load More button */
.btn--load-more{
  display:block;
  width:100%;
  margin-top:12px;
  padding:12px 16px;
  font-size:13px;
  font-weight:600;
  text-align:center;
  border-radius:12px;
  border:1px solid rgba(94,162,255,0.35);
  background:rgba(94,162,255,0.08);
  color:var(--accent);
  cursor:pointer;
  transition:all 0.2s;
}
.btn--load-more:hover{
  background:rgba(94,162,255,0.15);
  border-color:rgba(94,162,255,0.5);
}
.btn--load-more:disabled{
  opacity:0.5;
  cursor:not-allowed;
}

/* ----------------------
   Content / SEO blocks
---------------------- */
.content{line-height:1.6; color:rgba(230,236,255,0.92)}
.content h1,.content h2,.content h3{color:var(--text)}
.content h2{margin-top:18px}
.content h3{margin-top:32px}
.content--pad{padding:14px}
.muted{color:rgba(230,236,255,0.72)}
.link{color:var(--accent);text-decoration:none}
.link:hover{text-decoration:underline}

.callout{border:1px solid rgba(94,162,255,0.35);background:rgba(94,162,255,0.08);border-radius:14px;padding:12px 14px}
.divider{height:1px;background:rgba(255,255,255,0.10);margin:14px 0}
.empty{color:rgba(230,236,255,0.7)}
.codeblock{margin:0;padding:14px;overflow:auto;background:rgba(0,0,0,0.22);border-top:1px solid rgba(255,255,255,0.10);border-radius:0 0 14px 14px;font-size:12px;line-height:1.5}

/* hero compact */
.hero--compact{padding:18px 16px 10px 16px}
.hero__meta{margin-top:8px}

/* Daily list */
.daily-list{display:flex;flex-direction:column}
.daily-list__item{display:flex;justify-content:space-between;gap:10px;padding:12px 14px;border-top:1px solid rgba(255,255,255,0.08);text-decoration:none;color:var(--text)}
.daily-list__item:hover{background:rgba(255,255,255,0.04)}
.daily-list__date{font-weight:700;letter-spacing:-0.2px}
.daily-list__chev{opacity:0.75}

/* Stats grid */
.stats{display:grid;grid-template-columns:repeat(5, minmax(0, 1fr));gap:10px;padding:0 14px 14px 14px}
.stat{padding:10px 12px;border:1px solid rgba(255,255,255,0.10);background:rgba(255,255,255,0.04);border-radius:14px}
.stat__k{font-size:12px;opacity:0.75;margin-bottom:4px}
.stat__v{font-size:18px;font-weight:800;letter-spacing:-0.3px}

/* Two-column blocks */
.cols{display:grid;grid-template-columns:1fr 1fr;gap:12px;padding:0 14px 14px 14px}
.cols--2{padding:0}
.col__title{font-weight:800;letter-spacing:-0.2px;margin:6px 0 8px 0}

/* Daily news items */
.daily-news{display:flex;flex-direction:column;gap:10px}
.daily-news__item{display:block;padding:10px 12px;border:1px solid rgba(255,255,255,0.10);background:rgba(0,0,0,0.12);border-radius:14px;text-decoration:none;color:var(--text)}
.daily-news__item:hover{background:rgba(255,255,255,0.06)}
.daily-news__title{font-size:13.5px;font-weight:700;line-height:1.25}
.daily-news__meta{margin-top:8px;display:flex;gap:8px;flex-wrap:wrap}
.pill--soft{border:1px solid rgba(255,255,255,0.12);background:rgba(255,255,255,0.06);color:rgba(230,236,255,0.85)}

@media (max-width: 960px){
  .stats{grid-template-columns:repeat(2, minmax(0,1fr))}
  .cols{grid-template-columns:1fr}
}
