.wizard-step {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 2rem;
}
.wizard-step + .wizard-step {
  border-top: 1px solid var(--color-light-grey);
  padding-top: 2rem;
}

.wizard-step__help {
  font-size: .8rem;
}

@media (min-width: 768px) {
  .wizard-step {
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr 1fr;
  }
}