.progress-dots {
  display: flex;
  gap: var(--app-spacing-sm);
  align-items: center;
  justify-content: center;
  padding: var(--app-spacing-sm) 0;
}

.progress-dots__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--app-radius-full);
  background: var(--app-color-border-strong);
  transition: background var(--app-transition-base), width var(--app-transition-base);
}

.progress-dots__dot--done {
  background: var(--app-color-primary);
}

.progress-dots__dot--active {
  background: var(--app-color-primary);
  width: 24px;
}
