/**
 * CWE Barrierefreiheit (WCAG 2.1 AA) – Skip-Link & Fokus-Hilfen.
 */

/* SC 2.4.1 – Skip-Link: per Default ausgeblendet, bei Tastatur-Fokus sichtbar. */
.cwe-skip-link {
	position: absolute;
	left: 0;
	top: -100px;
	z-index: 100100;
	padding: 12px 20px;
	background: #590925;
	color: #ffffff;
	font-weight: 700;
	text-decoration: none;
	border-radius: 0 0 6px 0;
	transition: top 0.15s ease;
}

.cwe-skip-link:focus {
	top: 0;
	outline: 3px solid #ff6400;
	outline-offset: 0;
}

/* SC 1.4.3 – Event-Datums-Badges: Weiß auf Orange ergab nur 2,96:1.
   Dunkelroter Text (#590925) auf dem Marken-Orange #ff6400 = 4,77:1 → konform.
   Behält die orange Markenfarbe; bei Bedarf im Feintuning anpassen. */
.wpem-date,
.wpem-month {
	color: #590925 !important;
}
