.count-section {
  --count-text-color: #eee;
  --count-accent: #9e74ff;
  --label-size: 20px;
  --value-size: 96px;
  --unit-size: 48px;
  --col-gap: 28px;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.count-section *,
.count-section *::before,
.count-section *::after {
  box-sizing: border-box;
}

.count-row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--col-gap);
}

.count-label-row {
  margin-bottom: 10px;
  align-items: center;
}

.count-value-row {
  align-items: center;
}

.count-col {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.count-label {
  margin: 0;
  text-align: center;
  font-size: var(--label-size);
  font-weight: 700;
  color: var(--count-text-color);
  line-height: 1.3;
}

.count-value-wrap {
  margin: 0;
  font-size: var(--value-size);
  font-weight: 700;
  color: var(--count-text-color);
  letter-spacing: -1px;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}

.counter-value {
  font-variant-numeric: tabular-nums;
}

.count-unit {
  font-size: var(--unit-size);
}

.count-plus {
  color: var(--count-accent);
  font-size: var(--unit-size);
}

@media (max-width: 1400px) {
  .count-section {
    --value-size: 76px;
    --unit-size: 38px;
  }
}

@media (max-width: 980px) {
  .count-section {
    --col-gap: 12px;
    --value-size: 56px;
    --unit-size: 30px;
    --label-size: 16px;
  }
}

@media (max-width: 680px) {
  .count-row {
    grid-template-columns: 1fr;
  }

  .count-label-row {
    gap: 8px;
    margin-bottom: 16px;
  }

  .count-value-row {
    gap: 10px;
  }
}

