/* ============================================================
   count-up · minimal base styles
   Brand-neutral. The only thing that really matters here is
   tabular-nums: it keeps every digit the same width so the
   number doesn't jitter sideways as it ticks up.
   Apply .count-up to any counting element (or style [data-count]).
   ============================================================ */

.count-up,
[data-count] {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;   /* fallback for older engines */
}
