.lab-steps ol {
  list-style: none;
  counter-reset: step-counter;
  padding-left: 0;
}

.lab-steps li {
  counter-increment: step-counter;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 3rem;
}

.lab-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem;
  font-weight: 700;
  width: 2.25rem;
  height: 2.25rem;
  line-height: 2.25rem;
  text-align: center;
  border-radius: 50%;
  background-color: var(--color-primary-soft);
  color: var(--color-primary);
}
