.progress-bar {
  --progress-bar-color: var(--theme-palette-color-2);
  --progress-bg-color: #ebf9f1;
  width: 100%;
}
.progress-bar__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.625rem;
  gap: 1rem;
}
.progress-bar__label {
  font-size: clamp(0.875rem, 0.855vw + 0.566rem, 1.25rem);
  color: var(--theme-palette-color-13);
  line-height: 1.4;
}
.progress-bar__value {
  font-size: clamp(0.875rem, 0.855vw + 0.566rem, 1.25rem);
  color: var(--theme-palette-color-13);
  flex-shrink: 0;
  min-width: 3ch;
  text-align: right;
}
.progress-bar__track {
  width: 100%;
  height: 20px;
  background: var(--progress-bg-color);
  border-radius: 6px;
  overflow: hidden;
}
.progress-bar__fill {
  height: 100%;
  width: 0;
  background: var(--progress-bar-color);
  border-radius: 6px;
  transition: none;
}
.progress-bar--editor .progress-bar__fill {
  transition: width 0.3s ease;
}