.counter {
  text-align: center;
}
.counter--align-left {
  text-align: left;
}
.counter--align-left .counter__value {
  justify-content: flex-start;
}
.counter--align-right {
  text-align: right;
}
.counter--align-right .counter__value {
  justify-content: flex-end;
}
.counter__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  font-size: clamp(2.25rem, 3.134vw + 1.118rem, 3.625rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--theme-palette-color-5);
}
.counter__prefix {
  color: var(--theme-palette-color-1);
}
.counter__suffix {
  font-size: clamp(1.438rem, 1.852vw + 0.769rem, 2.25rem);
}
.counter__number {
  font-variant-numeric: tabular-nums;
}
.counter__description {
  margin-top: clamp(0.25rem, 0.57vw + 0.044rem, 0.5rem);
  margin-bottom: 0;
  font-size: clamp(0.813rem, 0.712vw + 0.555rem, 1.125rem);
  color: var(--theme-palette-color-13);
}
.counter--style-2 {
  padding: 2.3125rem 1.6875rem;
  background-color: #fbfbfb;
  border: 1px solid #dadadc;
  border-radius: 16px;
  height: 100%;
}
.counter--style-2 .counter__value {
  margin-bottom: 0.875rem;
  gap: 0.6875rem;
}
.counter--style-2 .counter__description {
  font-size: 1rem;
}
.counter--style-2 .counter__suffix {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--theme-palette-color-5);
}
.counter--style-2 .counter__number {
  font-size: 3.625rem;
  font-weight: 900;
  color: var(--theme-palette-color-5);
}