.wizard {
  display: flex;
  flex-direction: column;
  gap: var(--space-8, 1.25rem);
  min-width: 0;
}

.wizard__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-5, 0.75rem);
  min-width: 0;
}

.wizard__progress {
  display: block;
  width: 100%;
  height: var(--space-3, 0.5rem);
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-pill, 999px);
  background: var(--surface-soft, var(--surface, transparent));
  accent-color: var(--accent, currentColor);
}

.wizard__step {
  display: flex;
  flex-direction: column;
  gap: var(--space-7, 1rem);
  min-width: 0;
}

.wizard__step[hidden] {
  display: none;
}

.wizard__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5, 0.75rem);
  margin-top: var(--space-7, 1rem);
  padding-top: var(--space-7, 1rem);
  border-top: var(--border-width, 1px) solid var(--border-soft, var(--border, currentColor));
}

@media (max-width: 640px) {
  .wizard__actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .wizard__actions .btn {
    width: 100%;
  }
}
