/* Stat — a single label/value cell rendered as a <dl> inside StatGrid.
 * See StatGridComponent::Stat.
 *
 * Visual order is value-above-label via flex-direction: column-reverse,
 * keeping the dt-first DOM order (correct for screen readers).
 */

.stat {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 0.125rem;
  margin: 0;
  padding: 0;
}

.stat__label,
.stat__value { margin: 0; padding: 0; }
