/* Stats band
   A row of large headline numbers with labels. Colour and type from tokens.css
   (marketing theme). */

.dp-stats-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--dp-space-8);
  max-width: 72rem;
  margin: 0 auto;
  padding: var(--dp-space-12) var(--dp-space-6);
  text-align: center;
}

.dp-stat-big-val {
  font-size: var(--dp-text-4xl);
  font-weight: var(--dp-weight-extrabold);
  line-height: 1;
  color: var(--dp-navy);
  font-variant-numeric: tabular-nums;
}

.dp-stat-big-label {
  margin-top: var(--dp-space-2);
  font-size: var(--dp-text-base);
  color: var(--dp-text-muted);
}
