/* /claims -- "Popular trading stats, checked" (src/routes/claims.tsx).
   Own file per the site's "new CSS goes in its own file" convention (see
   home-live.css) -- keeps this page's styling off every other route.
   Reuses .card / .card-grid / .badge / .lead / .form-note / .mc-* from
   style.css and motion-charts.css; only claim-card-specific rules live
   here. */

.cl-cite {
  font-style: italic;
  color: var(--text-dim);
  border-inline-start: 3px solid var(--border);
  padding-inline-start: 10px;
  margin: 0 0 14px;
}

.cl-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 14px 0;
  text-align: center;
}

.cl-num-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}

.cl-num-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
  margin-top: 2px;
}

/* Verdict badge tone -- "geometry" reads as a neutral non-finding (same
   muted color as .badge's own default), "edge"/"small_edge" gets the
   warmer "found something real, worth a second look" tone graveyard.tsx
   uses for its "qualified" (not fully dead) entries. */
.cl-badge-geometry {
  color: var(--text-dim);
  border-color: var(--border);
}
.cl-badge-edge {
  color: var(--warn, #d9a441);
  border-color: var(--warn, #d9a441);
}

.cl-legend-real::before,
.cl-legend-mirror::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  margin-inline-end: 5px;
  vertical-align: -1px;
}
.cl-legend-real::before {
  background: var(--instrument-accent, var(--live));
}
.cl-legend-mirror::before {
  background: var(--text-dim);
}

.cl-bar-real {
  fill: var(--instrument-accent, var(--live));
}
.cl-bar-mirror {
  fill: var(--text-dim);
  opacity: 0.65;
}

/* Whole-card scroll reveal -- driven by public/claims.js (own small
   IntersectionObserver, same shape as motion-charts.js's onVisibleOnce but
   kept in this page's own file rather than editing that shared one). Under
   prefers-reduced-motion the JS never adds .cl-pre-anim in the first place,
   so the card is simply visible with no transition at all. */
.cl-card.cl-pre-anim {
  opacity: 0;
  transform: translateY(12px);
}
.cl-card {
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

@media (max-width: 480px) {
  .cl-numbers {
    gap: 6px;
  }
  .cl-num-value {
    font-size: 1.2rem;
  }
}
