/* US Phone Number Data Report — headline stat callouts + citation block */
.rpt-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.rpt-stat {
  background: #ffffff;
  background: var(--dashboard-bg-card, #ffffff);
  border: 1px solid #e5e7eb;
  border: 1px solid var(--brand-border, #e5e7eb);
  border-left: 4px solid #1997b7;
  border-left: 4px solid var(--brand-primary, #1997b7);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.rpt-stat__num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #1997b7;
  color: var(--brand-primary, #1997b7);
  font-variant-numeric: tabular-nums;
}
.rpt-stat__lbl {
  font-size: 0.85rem;
  color: #4b5563;
  color: var(--brand-text-secondary, #4b5563);
  line-height: 1.45;
}
.rpt-cite {
  background: #f8fafc;
  background: var(--dashboard-bg, #f8fafc);
  border: 1px dashed #e5e7eb;
  border: 1px dashed var(--brand-border, #e5e7eb);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  font-size: 0.92rem;
}
