/* Safety by Customer Type (Standard) — pill-selector tabbed safety panels.
   Layout/colors are utility-driven; this file covers the few things utilities
   can't: the [hidden] panel toggle and keyboard focus visibility. */

/* Panels are toggled via the [hidden] attribute by the block JS. Re-assert the
   hide with a winning selector in case a future display utility is added. The
   <noscript> rule in the block overrides this (with !important) so all panels
   show when JS is unavailable. */
.le-safety-by-customer-type-standard-block .le-sct-std-panel[hidden] {
	display: none;
}

/* Visible focus for keyboard users (pills and the focusable panels). */
.le-safety-by-customer-type-standard-block .le-sct-std-tab:focus-visible,
.le-safety-by-customer-type-standard-block .le-sct-std-panel:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	.le-safety-by-customer-type-standard-block .le-sct-std-tab {
		transition: none;
	}
}

.le-safety-by-customer-type-standard-block .le-sct-std-panel p {
	margin-bottom: 0.85rem;
}