/**
 * KWF Accessibility — Basis-Styles.
 * Kein Eingriff ins Farbschema der Seite; Skip-Link nutzt neutrales Schwarz/Weiß.
 */

/* Screenreader-only (fuer ergaenzte Hinweise und die Fallback-H1) */
.kwfa11y-sr {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* Skip-Link: unsichtbar, bei Tastatur-Fokus deutlich sichtbar oben links */
.kwfa11y-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100000;
	padding: .75em 1.25em;
	background: #111;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	border-radius: 0 0 6px 0;
}
.kwfa11y-skip:focus,
.kwfa11y-skip:focus-visible {
	left: 0;
	outline: 2px solid #fff;
	outline-offset: -4px;
}
