/* ==========================================================================
   Component: stat band (.cm-stat-band)
   Navy "statement" strip — a few headline facts, no decoration.
   ========================================================================== */

.cm-stat-band {
  background: var(--cm-navy);
  padding: 56px var(--cm-gutter);
}

.cm-stat-band__inner {
  max-width: var(--cm-container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 32px;
}

.cm-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-inline: 24px;
}

.cm-stat__value {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--cm-on-dark);
  font-variant-numeric: tabular-nums;
}

.cm-stat__label {
  font-size: 15px;
  color: rgba(241, 244, 247, 0.66);
}
