/* The final number stays in the accessibility tree throughout the animation. */
.count-up {
  display: inline-block;
  position: relative;
  font: inherit;
  letter-spacing: inherit;
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
  vertical-align: baseline;
}
.count-up__value { font: inherit; letter-spacing: inherit; }
.count-up__accessible {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.gradient .count-up__value {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
