.scale {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.scale:last-child {
  border-bottom: none;
}

.scale__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.scale__label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.scale__value {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.scale__max {
  font-weight: 500;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.scale__hint {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.scale__range {
  width: 100%;
  accent-color: var(--ink);
  height: 28px;
}

.scale__ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--ink-muted);
  font-weight: 600;
}
