/* Accessibility Auto-Fixes — skip links only. Visually hidden until keyboard
   focus, then revealed as a high-contrast bar pinned to the top-left (white on
   #1d2327 ≈ 15:1, WCAG 1.4.3; focus ring #146ff8 ≥ 3:1 on white, WCAG 1.4.11). */
.sst-af-skip {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2147483647;
}
.sst-af-skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}
.sst-af-skip-link:focus {
	position: static;
	width: auto;
	height: auto;
	clip: auto;
	display: inline-block;
	padding: 10px 16px;
	background: #1d2327;
	color: #ffffff;
	font: 600 14px/1.4 Arial, Helvetica, sans-serif;
	text-decoration: underline;
	outline: 3px solid #146ff8;
	outline-offset: -3px;
}
