/* 06-components/_steplist.css */
/* ── c-steplist — numbered ordered steps */
.c-steplist { list-style: none; padding: 0; counter-reset: step; display: flex; flex-direction: column; gap: var(--space-md); max-width: var(--measure); }
.c-steplist__item { counter-increment: step; display: grid; grid-template-columns: 4ch 1fr; gap: 1ch; }
.c-steplist__item::before { content: "[" counter(step) "]"; color: var(--accent); font-weight: var(--fw-bold); }
.c-steplist__head { color: var(--text-bright); font-weight: var(--fw-medium); }

