.wizard {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
}

.wizard__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.wizard__title {
  margin-bottom: var(--space-sm);
}

.wizard__subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.wizard__content {
  margin-bottom: var(--space-xl);
}

.wizard__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-lg);
}

.wizard__actions--center {
  justify-content: center;
}

/* Section within wizard */
.wizard__section {
  margin-bottom: var(--space-lg);
}

.wizard__section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.wizard__section-title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.wizard__section-meta {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

@media (max-width: 600px) {
  .wizard {
    padding: var(--space-md);
  }

  .wizard__actions {
    flex-direction: column-reverse;
    gap: var(--space-sm);
  }

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