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

  &.steps > li {
    margin-block-end: 10px;
    counter-increment: step-counter;
  }

  &.steps > li::before {
    content: "Krok " counter(step-counter) ". ";
    font-weight: bold;
  }
}
