/* Two-step (tabbable) fieldset — step progress indicator + step controls.
   Only applies in the multi-step state; the default single-step form is unaffected. */

.fs-prog {
	list-style: none;
	padding: 0;
	margin-block-start: 0;
	pointer-events: none; /* visual progress only — navigation is via Next/Previous */
}

.fs-prog-step {
	padding-block-end: .5rem;
	border-block-end: 2px solid var(--bdr-clr);
}

.fs-prog-step.active {
	border-block-end-color: var(--buttons);
}
