/* reports.css - Reports surface
 *
 * Extracted verbatim from style.css. Rules keep their original
 * relative order, and @media rules travel with the surface so its
 * responsive overrides still land after the rules they override.
 */
.reports-view .division-header, .reports-view .reports-subheader { text-align: center; width: 100%; max-width: 1320px; margin-left: auto; margin-right: auto; }
html body[data-route="/reports"] .reports-view,
html body[data-route^="/reports"] .reports-view { max-width: 1320px; margin: 0 auto; }

@media (min-width: 2560px) {
  html body[data-route="/reports"] .reports-view,
  html body[data-route^="/reports"] .reports-view {
    max-width: min(90vw, 3200px) !important;
    margin: 0 auto;
  }
}
body .report-card {
  background: var(--bg-card);
  border: 1px solid var(--surface-charcoal);
  border-radius: 12px;
  transition: transform .12s ease, border-color .12s ease;
}
body .report-card:hover {
  border-color: var(--border-strong-warm);
  transform: translateY(-1px);
}
html body .report-card {
  border-radius: 12px;
}
.report-view { padding: 24px; max-width: 1400px; margin: 0 auto; }
.report-section { margin-bottom: 40px; }
.report-section-head {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.report-spark {
  width: 60px;
  height: 20px;
  stroke: #2196F3;
  stroke-width: 1.5;
  fill: none;
}
.report-refreshed-pill {
  font-size: 11px;
  color: var(--text-tertiary);
  font-weight: 400;
  margin-left: 8px;
  text-transform: none;
  letter-spacing: 0;
}
.report-refreshed-pill.stale { color: #dc2626; }
.report-refreshed-pill.synthetic { color: #b45309; }

/* v42.3.32 honest KPIs: unavailable metrics, delta basis, source freshness */
.report-kpi-card--unavailable { opacity: 0.85; }
.report-kpi-unavailable {
  color: var(--text-tertiary);
  font-size: 22px;
  font-weight: 500;
}
.report-kpi-reason {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-tertiary);
}
.report-delta-note {
  font-size: 12px;
  color: var(--text-tertiary);
  margin: -8px 0 20px;
}
.report-source-pill { color: var(--text-tertiary); }
.report-source-pill::before { content: '\00b7'; margin-right: 8px; }
@media (max-width: 820px) {
  .report-delta-note { margin: 0 0 16px; }
}
.report-kpi-caveat {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.4;
  color: #b45309;
}
