.numeric-steps {
  counter-reset: section;
  padding-left: 1rem;
  margin: 1rem 0;
}

.numeric-steps__item {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 1.5rem;
  padding-top: 0.25rem;
}
.numeric-steps__item::before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0.25rem;
  transform: translateX(-50%);
  counter-increment: section;
  content: counter(section);
  height: 32px;
  width: 32px;
  border-radius: 16px;
  background: var(--color-brand);
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  z-index: var(--z-index-numeric-step-before);
}
.numeric-steps__item::after {
  content: "";
  position: absolute;
  width: 1px;
  top: 0;
  left: 0;
  bottom: 0;
  background: var(--color-light-gray);
  z-index: var(--z-index-numeric-step-after);
}
.numeric-steps__item:first-child::after {
  top: 0.25rem;
}
.numeric-steps__item fieldset {
  padding-top: 0.375rem;
}

.numeric-steps__item h2,
.numeric-steps__item legend {
  line-height: 1;
  margin-bottom: 1.5rem;
}

