/**
 * Lazio Steps — Numbered instruction list
 * Reusable element styles (moved from workshop-prework.css)
 */

.lazio-steps {
  counter-reset: lazio-step;
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.lazio-steps__item {
  counter-increment: lazio-step;
  position: relative;
  padding: 20px 0 20px 56px;
  border-bottom: 1px solid #E5E7EB;
  font-size: var(--text-m, 17px);
  line-height: 1.65;
  color: #1C1917;
}

.lazio-steps__item:last-child {
  border-bottom: none;
}

.lazio-steps__item::before {
  content: counter(lazio-step);
  position: absolute;
  left: 0;
  top: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.1);
  color: var(--lazio-orange, #F97316);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lazio-steps__item a {
  color: var(--lazio-orange, #F97316);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lazio-steps__item a:hover {
  color: var(--lazio-orange-dark, #EA580C);
}

.lazio-steps__item code {
  background: rgba(28, 25, 23, 0.06);
  padding: 2px 6px;
  font-size: 0.9em;
  font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
}

/* Responsive */

@media (max-width: 600px) {
  .lazio-steps__item {
    padding-left: 48px;
  }

  .lazio-steps__item::before {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}
