/* =========================
   STEPS BAND
========================= */
.steps-band{
  position: relative;
  padding: 54px 0 44px;
  background: linear-gradient(180deg, #f7ecdf 0%, #f4e6d6 55%, #f2e1cf 100%);
  color: var(--ln-ink);
}

.steps-band-inner{
  width: min(1100px, 94%);
  margin: 0 auto;
}

.steps-band-head{
  text-align: center;
  margin-bottom: 18px;
}

.steps-band-title{
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: clamp(1.6rem, 2.1vw, 2.2rem);
  color: #2a1207;
}

.steps-band-lead{
  margin: 0 auto;
  max-width: 70ch;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(18,8,4,0.78);
}



/* Légère mise en avant au hover/focus (desktop uniquement) */
@media (hover: hover) and (pointer: fine){
  .steps-pill:hover .lightbox-icon,
  .steps-pill:focus-visible .lightbox-icon{
    opacity: 1;
    transform: scale(1.08);
  }
}

/* Un peu plus lisible sur mobile */
@media (max-width: 820px){
  .lightbox-icon{
    opacity: 0.95;
  }
}

