/**
 * Design-Tokens aus Screen_MANUAL_03.pdf
 * Breakpoints (Spec): 480 / 768 / 1024 / 1280
 * Content-Raster Desktop ~1024; Hero 670×402; Teaser 335×188; Sidebar ~310
 */

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,500&family=Roboto+Condensed:wght@700&family=Roboto+Slab:wght@400;700&display=swap");

:root {
	/* Farben (PDF) */
	--u-weiss: rgb(255, 255, 255);
	--u-papier: rgb(245, 240, 235);
	--u-karton: rgb(220, 210, 205);
	--u-uz-rot: rgb(255, 60, 0);
	--u-uz-blau: rgb(70, 180, 180);
	--u-schwarz: rgb(0, 0, 0);
	--u-grau: rgb(160, 160, 160);
	--u-rot: rgb(200, 0, 0);
	--u-gruen: rgb(0, 170, 0);

	--u-color-bg: var(--u-weiss); /* Seitengrund / Gap zwischen Spalten */
	--u-color-surface: var(--u-weiss);
	--u-color-text: var(--u-schwarz);
	--u-color-muted: var(--u-grau);
	--u-color-accent: var(--u-uz-rot);
	--u-color-border: var(--u-karton);

	/* Schriften (PDF) */
	--u-font-medium: "Roboto", system-ui, sans-serif; /* 1 */
	--u-font-condensed: "Roboto Condensed", "Roboto", sans-serif; /* 2 */
	--u-font-regular: "Roboto", system-ui, sans-serif; /* 3 */
	--u-font-slab: "Roboto Slab", Georgia, serif; /* 4 / 8 */
	--u-font-bold: "Roboto", system-ui, sans-serif; /* 5 */
	--u-font-black: "Roboto", system-ui, sans-serif; /* 6 */

	/* Raster Manual: 670 + 44 + 310 = 1024 */
	--u-container: 64rem;
	--u-main-col: 41.875rem; /* 670 */
	--u-col-gap: 1.375rem; /* 22 — halb von Manual 44 */
	--u-sidebar: 19.375rem; /* 310 */
	--u-space: 1rem;
	--u-grid-line: rgb(200, 200, 200);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--u-font-regular);
	font-weight: 400;
	color: var(--u-color-text);
	background: var(--u-color-bg);
	line-height: 1.45;
}

/* Shell: Logo oben + Footer unten fix, Content scrollt dazwischen */
body.u-shell {
	display: flex;
	flex-direction: column;
	height: 100vh;
	height: 100dvh;
	max-height: 100vh;
	max-height: 100dvh;
	overflow: hidden;
}

.u-scroll {
	flex: 1 1 auto;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
}

/*
 * Mobil: Dokument-Scroll; Footer dockt fix sobald Sidebar sichtbar war.
 */
@media (max-width: 1023px) {
	body.u-shell {
		display: block;
		height: auto;
		max-height: none;
		overflow: visible;
	}

	.u-footer--chrome {
		position: static;
		flex: none;
		box-shadow: none;
		background: transparent;
		padding: 0.5rem var(--u-space) 0.75rem;
	}

	body.u-footer-docked {
		padding-bottom: 3.25rem;
	}

	body.u-footer-docked .u-footer--chrome {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 300;
		padding: 0.35rem var(--u-space);
		background: transparent;
	}
}

/* Elementor Theme-Builder-Header/Footer ausblenden, falls noch injiziert. */
body.u-theme .elementor-location-header,
body.u-theme .elementor-location-footer,
body.u-theme .elementor-location-single {
	display: none !important;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
}

.u-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.u-skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	background: var(--u-color-accent);
	color: #fff;
	padding: 0.5rem 1rem;
	z-index: 1000;
}

.u-skip-link:focus {
	left: 0;
}

.u-container {
	width: min(100% - 2 * var(--u-space), var(--u-container));
	margin-inline: auto;
}

/* ——— Header: Logo-Chrome fix; Tools scrollen mit Content ——— */
.u-header {
	position: relative;
	z-index: 200;
	background: transparent;
	border-bottom: 0;
}

.u-header--chrome {
	flex: 0 0 auto;
	background: var(--u-weiss);
	border-bottom: 1px solid var(--u-color-border);
	z-index: 300;
}

/* Mobil: Sticky nach .u-header{position:relative}, sonst überschreibt relative sticky */
@media (max-width: 1023px) {
	body.u-shell .u-header.u-header--chrome {
		position: sticky;
		top: 0;
		z-index: 400;
		background: var(--u-weiss);
	}

	.u-scroll {
		overflow: visible;
		height: auto;
		min-height: 0;
	}
}

.u-header__bar {
	position: relative;
}

.u-header__top {
	position: relative;
	z-index: 3;
}

.u-header__brand {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	min-height: 6.25rem; /* 100px Manual */
	padding: 0.75rem 0 0.5rem;
	position: relative;
	z-index: 3;
	background: var(--u-weiss);
}

.u-header__brand .u-nav-main__toggle {
	flex: 0 0 auto;
}

.u-header__brand .u-branding {
	flex: 0 1 auto;
	min-width: 0;
	text-align: left;
}

.u-header__rail-wrap {
	padding-top: 0;
}

.u-header__rail {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: var(--u-col-gap);
	align-items: stretch;
	position: relative;
	z-index: 1;
}

.u-header__tools {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 0.25rem;
	padding: 0.15rem 0.3rem;
	background: var(--u-papier);
	margin-bottom: 0;
}

.u-header__aside {
	display: none;
}

html.u-nav-open .u-header__tools {
	visibility: hidden;
	pointer-events: none;
}

.u-branding__link {
	text-decoration: none;
	display: inline-block;
}

.u-branding__logo {
	width: min(340px, 70vw);
	height: auto;
	margin: 0;
	display: block;
}

/* Claim steckt im logo.svg — kein separates .u-branding__claim mehr. */

.u-search {
	display: flex;
	flex: 1 1 auto;
	min-width: 0;
	gap: 0;
	border: 1px solid var(--u-color-border);
	background: var(--u-weiss);
}

.u-search__input {
	min-width: 0;
	flex: 1;
	padding: 0.2rem 0.45rem;
	border: 0;
	background: transparent;
	font-family: var(--u-font-regular);
	font-size: 0.8125rem;
	line-height: 1.2;
}

.u-search__input::placeholder {
	color: var(--u-grau);
}

.u-search__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: var(--u-uz-blau);
	padding: 0 0.4rem;
	cursor: pointer;
}

.u-search__icon {
	display: block;
	width: 14px;
	height: 14px;
}

.u-country-switch {
	display: flex;
	align-items: stretch;
	flex: 0 0 auto;
	flex-wrap: nowrap;
	gap: 0.25rem;
	min-width: 0;
}

.u-country-switch__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	padding: 0.2rem 0.65rem;
	background: var(--u-papier);
	border: 1px solid var(--u-karton);
	color: var(--u-uz-blau);
	text-decoration: none;
	font-family: var(--u-font-condensed);
	font-weight: 700;
	font-size: 0.68rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
	line-height: 1.2;
}

.u-country-switch__flag {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	min-width: 0;
	padding: 0.1rem 0.2rem 0.1rem 0.5rem;
	background: var(--u-papier);
	border: 1px solid var(--u-karton);
	text-decoration: none;
	overflow: visible;
}

.u-country-switch__code {
	position: relative;
	z-index: 1;
	flex: 0 0 auto;
	font-family: var(--u-font-condensed);
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.02em;
	color: #111;
	line-height: 1.2;
}

.u-country-switch__img {
	display: block;
	flex: 1 1 auto;
	width: 3.5rem;
	height: 1.35rem;
	object-fit: contain;
	object-position: center right;
	pointer-events: none;
}

/* Mobil: Suche + Länder zwingend eine Zeile (wie Prod-/Manual-Screenshot). */
@media (max-width: 1023px) {
	.u-header__tools {
		gap: 0.2rem;
		padding: 0.15rem 0.25rem;
	}

	.u-search {
		flex: 1 1 42%;
	}

	.u-search__input {
		padding: 0.2rem 0.35rem;
		font-size: 0.75rem;
	}

	.u-search__input::placeholder {
		font-size: 0.68rem;
	}

	.u-country-switch {
		flex: 0 1 55%;
		gap: 0.15rem;
	}

	.u-country-switch__btn {
		flex: 1 1 auto;
		padding: 0.15rem 0.35rem;
		font-size: clamp(0.5rem, 2.4vw, 0.65rem);
		letter-spacing: 0.02em;
	}

	.u-country-switch__flag {
		flex: 1 1 auto;
		padding: 0.1rem 0.1rem 0.1rem 0.3rem;
		gap: 0.15rem;
	}

	.u-country-switch__code {
		font-size: clamp(0.55rem, 2.6vw, 0.7rem);
	}

	.u-country-switch__img {
		width: clamp(1.5rem, 8vw, 2.4rem);
		height: clamp(0.85rem, 4.5vw, 1.15rem);
	}
}

.u-nav-main__toggle {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	z-index: 4;
}

.u-nav-main__burger,
.u-nav-main__burger::before,
.u-nav-main__burger::after {
	display: block;
	width: 1.85rem;
	height: 5px;
	background: var(--u-uz-blau);
	border-radius: 1px;
	transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.u-nav-main__burger {
	position: relative;
}

.u-nav-main__burger::before,
.u-nav-main__burger::after {
	content: "";
	position: absolute;
	left: 0;
}

.u-nav-main__burger::before {
	top: -11px;
}

.u-nav-main__burger::after {
	top: 11px;
}

/* Burger → X */
.u-header.is-nav-open .u-nav-main__burger {
	background: transparent;
}

.u-header.is-nav-open .u-nav-main__burger::before {
	top: 0;
	transform: rotate(45deg);
}

.u-header.is-nav-open .u-nav-main__burger::after {
	top: 0;
	transform: rotate(-45deg);
}

.u-top-slider__btn {
	border: 0;
	background: var(--u-schwarz);
	color: var(--u-weiss);
	padding: 0.45rem 0.75rem;
	cursor: pointer;
	font-family: var(--u-font-condensed);
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* Menü unterhalb Logo/Brand — ohne Logo-Wiederholung */
.u-nav-main {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: min(18.5rem, 72vw);
	max-height: min(70vh, 32rem);
	padding: 0 0 0.75rem;
	background: var(--u-weiss);
	border: 1px solid var(--u-color-border);
	border-top: 0;
	box-shadow: 0 10px 24px rgb(0 0 0 / 0.1);
	z-index: 5;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.u-header.is-nav-open .u-nav-main {
	display: block;
}

.u-nav-main[hidden] {
	display: none !important;
}

.u-nav-main__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.u-nav-main__list > li {
	border-bottom: 1px solid rgb(220, 220, 220);
}

.u-nav-main__list > li > a {
	display: block;
	padding: 0.85rem 1.1rem;
	color: var(--u-schwarz);
	text-decoration: none;
	font-family: var(--u-font-bold);
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1.25;
}

.u-nav-main__list > li > a:hover,
.u-nav-main__list > li > a:focus-visible {
	color: var(--u-uz-rot);
}

.u-nav-main__list .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0 0 0.35rem;
	background: var(--u-papier);
}

.u-nav-main__list .sub-menu a {
	display: block;
	padding: 0.55rem 1.1rem 0.55rem 1.6rem;
	color: var(--u-schwarz);
	text-decoration: none;
	font-family: var(--u-font-regular);
	font-weight: 500;
	font-size: 0.95rem;
}

.u-nav-main__action {
	display: block;
	width: 100%;
	padding: 0.85rem 1.1rem;
	border: 0;
	background: transparent;
	color: var(--u-schwarz);
	text-align: left;
	font-family: var(--u-font-bold);
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1.25;
	cursor: pointer;
}

.u-nav-main__action:hover,
.u-nav-main__action:focus-visible {
	color: var(--u-uz-rot);
}

/* Erweiterte Suche */
.u-search-advanced {
	position: fixed;
	inset: 0;
	z-index: 400;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 4.5rem 1rem 1rem;
	background: rgb(0 0 0 / 0.4);
}

.u-search-advanced[hidden] {
	display: none !important;
}

.u-search-advanced__panel {
	width: min(100%, 26rem);
	background: var(--u-weiss);
	border: 1px solid var(--u-color-border);
	box-shadow: 0 12px 32px rgb(0 0 0 / 0.18);
	padding: 1rem 1.1rem 1.15rem;
}

.u-search-advanced__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.85rem;
}

.u-search-advanced__title {
	margin: 0;
	font-family: var(--u-font-bold);
	font-size: 1.1rem;
}

.u-search-advanced__close {
	border: 0;
	background: transparent;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
	color: var(--u-uz-blau);
	padding: 0 0.2rem;
}

.u-search-advanced__field {
	margin: 0 0 0.75rem;
}

.u-search-advanced__field label {
	display: block;
	margin-bottom: 0.25rem;
	font-size: 0.8rem;
	font-weight: 700;
}

.u-search-advanced__field input,
.u-search-advanced__field select {
	width: 100%;
	padding: 0.45rem 0.55rem;
	border: 1px solid var(--u-color-border);
	font: inherit;
	background: var(--u-weiss);
}

.u-search-advanced__actions {
	margin-top: 0.85rem;
}

.u-search-advanced__submit {
	border: 0;
	background: var(--u-uz-rot);
	color: var(--u-weiss);
	font-family: var(--u-font-condensed);
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 0.55rem 1rem;
	cursor: pointer;
}

html.u-nav-open {
	overflow: hidden;
}

html.u-nav-open::before {
	content: "";
	position: fixed;
	inset: 0;
	background: rgb(0 0 0 / 0.28);
	z-index: 150;
	pointer-events: none;
}

/* ——— Layout ——— */
.u-main {
	position: relative;
	z-index: 1;
	padding: 0 0 3rem;
	scroll-margin-top: 1rem;
}

.u-archive-header {
	margin: 0;
	padding: 0.35rem 0.75rem 0.25rem;
}

.u-archive-header__title {
	margin: 0;
	padding: 0;
	font-family: var(--u-font-condensed);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.25;
	color: var(--u-uz-blau);
}

.u-archive-header__desc {
	margin: 0.25rem 0 0;
	font-size: 0.85rem;
	line-height: 1.4;
	color: var(--u-color-muted);
}

/* Kontaktformular */
.u-page--kontakt {
	padding: 0 0 1.5rem;
	background: var(--u-papier);
}

.u-kontakt__intro {
	margin: 0.35rem 0.75rem 1rem;
	font-size: 0.95rem;
	line-height: 1.45;
	color: var(--u-schwarz);
}

.u-kontakt__flash {
	margin: 0 0.75rem 1rem;
	padding: 0.65rem 0.85rem;
	font-size: 0.9rem;
	line-height: 1.35;
	border: 1px solid var(--u-karton);
	background: var(--u-weiss);
}

.u-kontakt__flash--success {
	border-color: var(--u-uz-blau);
	color: #0a5c5c;
}

.u-kontakt__flash--error {
	border-color: var(--u-uz-rot);
	color: var(--u-rot);
}

.u-kontakt-form {
	margin: 0 0.75rem 1.5rem;
	padding: 1rem 1rem 1.15rem;
	background: var(--u-weiss);
	border: 1px solid var(--u-karton);
	max-width: 36rem;
}

.u-kontakt-form__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.u-kontakt-form__row--2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.u-kontakt-form__field {
	margin: 0 0 0.85rem;
}

.u-kontakt-form__field label,
.u-kontakt-form__check label {
	display: block;
	margin-bottom: 0.3rem;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--u-schwarz);
}

.u-kontakt-form__check label {
	font-weight: 400;
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
	line-height: 1.4;
}

.u-kontakt-form__check input {
	margin-top: 0.2rem;
	flex: 0 0 auto;
}

.u-kontakt-form__field input[type="text"],
.u-kontakt-form__field input[type="email"],
.u-kontakt-form__field textarea,
.u-kontakt-form__field input[type="file"] {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 0.45rem 0.55rem;
	border: 1px solid var(--u-karton);
	border-radius: 0;
	font: inherit;
	font-size: 0.95rem;
	background: var(--u-weiss);
	color: var(--u-schwarz);
}

.u-kontakt-form__field textarea {
	resize: vertical;
	min-height: 8rem;
}

.u-kontakt-form__hint {
	display: block;
	margin-top: 0.25rem;
	font-size: 0.75rem;
	color: var(--u-grau);
}

.u-kontakt-form__check {
	margin: 0 0 0.75rem;
	font-size: 0.85rem;
}

.u-kontakt-form__check a {
	color: var(--u-uz-blau);
}

.u-kontakt-form__actions {
	margin: 1rem 0 0;
}

.u-kontakt-form__submit {
	appearance: none;
	border: 0;
	padding: 0.55rem 1.25rem;
	background: var(--u-uz-rot);
	color: var(--u-weiss);
	font-family: var(--u-font-condensed);
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	cursor: pointer;
}

.u-kontakt-form__submit:hover,
.u-kontakt-form__submit:focus-visible {
	filter: brightness(0.92);
}

@media (max-width: 480px) {
	.u-kontakt-form__row--2 {
		grid-template-columns: 1fr;
	}
}

.u-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: var(--u-col-gap);
	align-items: start;
}

.u-layout__more {
	min-width: 0;
	grid-column: 1 / -1;
	background: var(--u-papier);
}

.u-layout__more .u-grid--more:empty {
	display: none;
}

.u-layout__more .u-grid--more:not(:empty) {
	display: grid;
	border-top: 1px solid var(--u-grid-line, rgb(200, 200, 200));
	background: var(--u-papier);
}

/* Papier Hauptspalte; Sidebar weiß = schmale weiße Abstände zwischen Blöcken */
.u-layout__primary {
	background: var(--u-papier);
	min-width: 0;
}

.u-sidebar {
	background: var(--u-weiss);
	min-width: 0;
}

.u-layout__primary {
	padding: 0 0 1.5rem;
	/* Kein Abstand zum Header-Tools-Papier */
	margin-top: 0;
}

.u-sidebar {
	display: flex;
	flex-direction: column;
	/* Gleicher Abstand zwischen allen Blöcken; erster dockt oben an den Querstrich */
	gap: 0.35rem;
	padding: 0 0 1.5rem;
	margin-top: 0;
}

@media (max-width: 1023px) {
	/* Mobil unter dem Content: gleicher kleiner Abstand wie zwischen den Blöcken */
	.u-sidebar {
		padding-top: 0.35rem;
	}
}

/* Text-Einzug in der Papier-Spalte; Medien bleiben randständig */
.u-layout__primary .u-single-header__caption,
.u-layout__primary .u-single-header__copyright,
.u-layout__primary .u-single-header__meta-row,
.u-layout__primary .u-single-header__kicker,
.u-layout__primary .u-single-header__tags,
.u-layout__primary .u-single-header__title,
.u-layout__primary .u-single-body,
.u-layout__primary .u-suggested,
.u-layout__primary .u-site-texts,
.u-layout__primary .u-share,
.u-layout__primary .u-telegram-comments,
.u-top-slider__content,
.u-top-slider__controls,
.u-top-slider__related {
	padding-inline: 0.75rem;
}

.u-grid {
	display: grid;
	gap: 0;
	grid-template-columns: 1fr;
	padding: 0;
	/* Keine Linie direkt unter TOP — horizontale Trenner nur zwischen Karten */
	border-top: 0;
}

.u-grid > .u-card {
	position: relative;
	padding: 0.65rem 0.75rem 0.85rem;
	border-bottom: 1px solid var(--u-grid-line, rgb(200, 200, 200));
	border-right: 0;
	min-width: 0;
}

.u-infinite-status {
	margin: 0.75rem 0.75rem 0;
	font-size: 0.8125rem;
	color: var(--u-grau);
}

.u-infinite-sentinel {
	height: 1px;
	width: 100%;
	pointer-events: none;
}

.u-list {
	display: grid;
	gap: 1.25rem;
	padding: 0 0.65rem;
}

/* ——— Cards ——— */
.u-card {
	background: transparent;
	border: 0;
	padding: 0;
}

.u-card__figure {
	position: relative;
	margin: 0;
}

.u-card__media {
	display: block;
	overflow: hidden;
	background: var(--u-karton);
}

.u-card__img {
	width: 100%;
	aspect-ratio: 5 / 3; /* = CF Postingbild 1500×900; kein Zweit-Crop */
	object-fit: cover;
}

.u-card__copyright-btn {
	position: absolute;
	bottom: 0.35rem;
	right: 0.35rem;
	z-index: 3;
	width: 1.35rem;
	height: 1.35rem;
	padding: 0;
	border: 1px solid rgb(0 0 0 / 0.35);
	background: rgb(255 255 255 / 0.92);
	color: #111;
	font-size: 0.7rem;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.u-card__copyright {
	position: absolute;
	bottom: 0.35rem;
	right: 0.35rem;
	z-index: 4;
	max-width: min(92%, 17rem);
	margin: 0;
	padding: 0.4rem 0.5rem;
	background: var(--u-weiss);
	border: 1px solid #333;
	box-shadow: 0 2px 8px rgb(0 0 0 / 0.12);
	font-size: 0.65rem;
	line-height: 1.35;
	color: #111;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.15s ease, visibility 0.15s ease;
}

.u-card__copyright a {
	color: inherit;
	text-decoration: none;
}

.u-card__figure:hover .u-card__copyright,
.u-card__figure.is-copyright-open .u-card__copyright,
.u-card__figure:focus-within .u-card__copyright {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.u-card__figure:hover .u-card__copyright-btn,
.u-card__figure.is-copyright-open .u-card__copyright-btn,
.u-card__figure:focus-within .u-card__copyright-btn {
	opacity: 0;
	pointer-events: none;
}

.u-card__copyright[hidden] {
	display: block !important; /* Sichtbarkeit steuert opacity/visibility */
}

.u-card__body {
	padding-top: 0.45rem;
}

.u-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.25rem 0.75rem;
	margin: 0 0 0.35rem;
	color: var(--u-grau);
	font-size: 0.75rem;
}

.u-card__cat {
	color: var(--u-grau);
	text-decoration: none;
}

.u-card__cat:hover,
.u-card__cat:focus-visible {
	color: var(--u-uz-rot);
	text-decoration: underline;
}

.u-card__tags {
	margin: 0 0 0.25rem;
	font-family: var(--u-font-bold);
	font-weight: 700;
	font-size: 0.8125rem;
	line-height: 1.3;
}

.u-card__tags a {
	color: var(--u-uz-rot);
	text-decoration: none;
}

.u-card__tags a:hover,
.u-card__tags a:focus-visible {
	text-decoration: underline;
}

.u-card__kicker,
.u-top-slider__kicker {
	margin: 0 0 0.25rem;
	color: var(--u-color-accent);
	font-family: var(--u-font-condensed);
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.u-single-header__kicker {
	margin: 0;
	color: var(--u-color-accent);
	font-family: var(--u-font-bold);
	font-weight: 700;
	font-size: 0.875rem;
}

.u-single-header__kicker a {
	color: inherit;
	text-decoration: none;
}

.u-single-header__kicker a:hover,
.u-single-header__kicker a:focus-visible {
	text-decoration: underline;
}

.u-single-header__tags {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.35;
	color: var(--u-uz-rot);
}

.u-single-header__tags a {
	color: inherit;
	text-decoration: none;
	font-weight: 500;
}

.u-single-header__tags a:hover,
.u-single-header__tags a:focus-visible {
	text-decoration: underline;
}

.u-single-header__tags-sep {
	color: var(--u-grau);
	font-weight: 400;
}

.u-card__title {
	font-family: var(--u-font-slab);
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1.25;
	margin: 0;
}

.u-card__title a,
.u-top__title a {
	text-decoration: none;
	color: inherit;
}

.u-card__title a:hover,
.u-card__title a:focus-visible,
.u-top__title a:hover,
.u-top__title a:focus-visible {
	color: var(--u-uz-rot);
}

.u-card__teaser,
.u-top-slider__teaser {
	margin: 0 0 0.35rem;
	color: var(--u-color-text);
	font-size: 0.875rem;
}

.u-card__more {
	color: var(--u-color-accent);
	font-weight: 700;
	text-decoration: none;
}

.u-card__meta time {
	color: var(--u-grau);
	font-size: 0.75rem;
}

.u-single-header__copyright a {
	color: var(--u-grau);
	text-decoration: none;
}

/* ——— Statischer TOP (Start) ——— */
.u-top {
	margin: 0 0 0.35rem;
	padding-bottom: 0.35rem;
	border-bottom: 0;
}

.u-top__figure {
	position: relative;
	margin: 0;
}

.u-top__media {
	display: block;
	background: var(--u-karton);
}

.u-top__img {
	width: 100%;
	aspect-ratio: 5 / 3;
	object-fit: cover;
}

.u-top__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.35rem 1rem;
	margin: 0.55rem 0 0.35rem;
	padding-inline: 0.75rem;
	color: var(--u-grau);
	font-size: 0.8125rem;
}

.u-top__cat {
	color: var(--u-grau);
	text-decoration: none;
}

.u-top__cat:hover,
.u-top__cat:focus-visible {
	color: var(--u-uz-rot);
	text-decoration: underline;
}

.u-top__tags {
	margin: 0 0 0.35rem;
	padding-inline: 0.75rem;
	font-family: var(--u-font-bold);
	font-weight: 700;
	font-size: 0.9375rem;
	line-height: 1.3;
}

.u-top__tags a {
	color: var(--u-uz-rot);
	text-decoration: none;
}

.u-top__tags a:hover,
.u-top__tags a:focus-visible {
	text-decoration: underline;
}

.u-top__title {
	font-family: var(--u-font-slab);
	font-weight: 700;
	font-size: clamp(1.35rem, 2.8vw, 1.85rem);
	line-height: 1.2;
	margin: 0 0 0.55rem;
	padding-inline: 0.75rem;
}

.u-top__teaser {
	margin: 0 0 0.65rem;
	padding-inline: 0.75rem;
	font-size: 0.9375rem;
	line-height: 1.45;
}

.u-top__more {
	color: var(--u-uz-rot);
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.u-top__more:hover,
.u-top__more:focus-visible {
	text-decoration: underline;
}

.u-top__related {
	margin: 0.35rem 0 0;
	padding: 0 0.75rem;
	list-style: none;
}

.u-top__related li {
	position: relative;
	padding-left: 1.1rem;
	margin-bottom: 0.35rem;
	font-size: 0.875rem;
	line-height: 1.35;
}

.u-top__related li::before {
	content: "➥";
	position: absolute;
	left: 0;
	color: var(--u-uz-rot);
}

.u-top__related a {
	color: inherit;
	text-decoration: none;
}

.u-top__related a:hover,
.u-top__related a:focus-visible {
	color: var(--u-uz-rot);
	text-decoration: underline;
}

/* ——— Legacy Top-Slider (falls noch referenziert) ——— */
.u-top-slider {
	margin-bottom: 1.25rem;
	background: transparent;
	border: 0;
	padding: 0;
}

.u-top-slider__layout {
	display: grid;
	gap: 0.85rem;
}

.u-top-slider__media {
	display: block;
	background: var(--u-karton);
}

.u-top-slider__img {
	width: 100%;
	aspect-ratio: 5 / 3;
	object-fit: cover;
}

.u-top-slider__title {
	font-family: var(--u-font-slab);
	font-weight: 700;
	font-size: clamp(1.35rem, 2.4vw, 1.85rem);
	line-height: 1.2;
	margin: 0 0 0.5rem;
}

.u-top-slider__controls {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.65rem;
}

.u-top-slider__dots {
	display: flex;
	gap: 0.35rem;
}

.u-top-slider__dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	border: 0;
	background: var(--u-karton);
	cursor: pointer;
	padding: 0;
}

.u-top-slider__dot.is-active {
	background: var(--u-color-accent);
}

.u-top-slider__related {
	margin: 0.65rem 0 0;
	padding: 0;
	list-style: none;
}

.u-top-slider__related li {
	position: relative;
	padding-left: 1rem;
	margin-bottom: 0.35rem;
	font-size: 0.875rem;
}

.u-top-slider__related li::before {
	content: "➥";
	position: absolute;
	left: 0;
	color: var(--u-color-accent);
}

/* ——— Single (Foto → Caption → Meta → H1) ——— */
.u-single-header {
	margin: 0 0 0.25rem;
}

.u-single-header__figure {
	margin: 0 0 0.85rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid var(--u-color-border);
}

.u-single-header__img {
	width: 100%;
	aspect-ratio: 5 / 3;
	object-fit: cover;
}

.u-single-header__caption {
	margin: 0.65rem 0 0;
	font-family: var(--u-font-regular);
	font-size: 0.9375rem;
	line-height: 1.35;
	color: var(--u-schwarz);
}

.u-single-header__caption > *:first-child {
	margin-top: 0;
}

.u-single-header__caption > *:last-child {
	margin-bottom: 0;
}

.u-single-header__copyright {
	margin: 0.15rem 0 0;
	padding: 0;
	font-size: 0.7rem;
	line-height: 1.3;
	color: var(--u-grau);
}

.u-single-header__meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.35rem 1rem;
	margin: 0 0 0.65rem;
}

.u-single-header__meta-left {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35rem 0.65rem;
	min-width: 0;
	flex: 1 1 auto;
}

.u-single-header__meta {
	margin: 0;
	color: var(--u-grau);
	font-size: 0.8125rem;
	flex: 0 0 auto;
}

.u-single-header__tags {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.35;
	color: var(--u-uz-rot);
}

.u-single-header__title {
	font-family: var(--u-font-slab);
	font-weight: 700;
	font-size: clamp(1.45rem, 3.2vw, 2rem);
	line-height: 1.2;
	margin: 0 0 1rem;
	/* Schutz gegen Überlagerung durch fremde fixed Header */
	position: relative;
	z-index: 1;
	padding-top: 0.15rem;
}

.u-single-body {
	margin-top: 0.35rem;
	font-size: 1rem;
}

.u-single-body a,
.u-suggested a,
.u-site-texts a,
.u-telegram-comments__accent {
	color: var(--u-color-accent);
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.u-single-body a:hover,
.u-suggested a:hover,
.u-site-texts a:hover {
	color: var(--u-rot);
}

.u-suggested__title {
	margin: 0 0 0.55rem;
	font-family: var(--u-font-bold);
	font-weight: 700;
	font-size: 1.05rem;
}

.u-site-texts {
	margin-top: 1.25rem;
	padding-top: 0.85rem;
	border-top: 1px solid var(--u-uz-blau);
}

.u-site-texts__item + .u-site-texts__item {
	margin-top: 0.85rem;
}

.u-site-texts__title {
	margin: 0 0 0.35rem;
	font-size: 1rem;
}

.u-site-texts__content {
	font-size: 0.95rem;
	line-height: 1.45;
}

.u-share {
	margin-top: 1.25rem;
}

.u-share__bar {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.75rem;
	padding: 0.85rem 1rem 1rem;
	background: var(--u-weiss);
	border: 1px solid var(--u-color-border);
}

.u-share__label {
	margin: 0;
	font-family: var(--u-font-bold);
	font-weight: 700;
	font-size: 0.95rem;
}

.u-share__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.u-share__item {
	margin: 0;
	padding: 0;
}

.u-share__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	min-height: 2.25rem;
	padding: 0.35rem 0.7rem;
	border: 0;
	border-radius: 0.2rem;
	color: #fff;
	text-decoration: none;
	font-family: var(--u-font-medium);
	font-weight: 700;
	font-size: 0.8rem;
	line-height: 1.2;
	cursor: pointer;
}

.u-share__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.15rem;
	font-size: 0.9rem;
}

.u-share__name {
	white-space: nowrap;
}

.u-share__btn--facebook { background: #1877f2; }
.u-share__btn--x { background: #111; }
.u-share__btn--whatsapp { background: #25d366; }
.u-share__btn--telegram { background: #229ed9; }
.u-share__btn--email { background: #e53935; }

.u-share__btn:hover,
.u-share__btn:focus-visible {
	filter: brightness(1.06);
	color: #fff;
}
.u-vote {
	margin-top: 1.25rem;
	padding: 1rem 1.1rem;
	background: rgb(236, 240, 244);
	border-radius: 4px;
}

.u-vote__intro {
	margin: 0 0 0.75rem;
	font-family: var(--u-font-bold);
	font-weight: 700;
	font-size: 0.95rem;
}

.u-vote__meter {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.65rem;
}

.u-vote__side {
	border: 0;
	background: transparent;
	padding: 0.25rem;
	cursor: pointer;
	line-height: 1;
}

.u-vote__side:disabled {
	cursor: default;
}

.u-vote__num {
	font-family: var(--u-font-bold);
	font-weight: 700;
	font-size: 1.05rem;
	font-variant-numeric: tabular-nums;
}

.u-vote__num--down {
	color: #b71c1c;
}

.u-vote__num--up {
	color: #2e7d32;
}

.u-vote__track {
	display: flex;
	align-items: stretch;
	height: 0.85rem;
	min-width: 8rem;
	gap: 3px;
}

.u-vote__seg {
	display: block;
	min-width: 0.35rem;
	transition: flex 0.35s ease;
}

.u-vote__seg--down {
	background: #c62828;
	border-radius: 999px 0 0 999px;
}

.u-vote__seg--up {
	background: #2e7d32;
	border-radius: 0 999px 999px 0;
}

.u-vote__gap {
	flex: 0 0 3px;
	background: transparent;
}

.u-vote__hint {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	margin: 0.75rem 0 0;
	color: var(--u-grau);
	font-size: 0.8rem;
}

.u-vote__chip {
	width: 1.6rem;
	height: 1.6rem;
	border: 0;
	border-radius: 50%;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	line-height: 1;
}

.u-vote__chip--down {
	background: #c62828;
}

.u-vote__chip--up {
	background: #2e7d32;
}

.u-vote__chip:disabled {
	opacity: 0.55;
	cursor: default;
}

.u-vote.is-voted--down .u-vote__side--down .u-vote__num,
.u-vote.is-voted--up .u-vote__side--up .u-vote__num {
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.u-vote__msg {
	margin: 0.45rem 0 0;
	font-size: 0.85rem;
	color: var(--u-grau);
	min-height: 1.2em;
	text-align: center;
}

.u-vote__side--down:hover:not(:disabled) .u-vote__num,
.u-vote__chip--down:hover:not(:disabled) {
	filter: brightness(0.92);
}

.u-vote__side--up:hover:not(:disabled) .u-vote__num,
.u-vote__chip--up:hover:not(:disabled) {
	filter: brightness(0.92);
}

.u-telegram-comments {
	margin-top: 1.5rem;
	padding-top: 0.85rem;
}

.u-telegram-comments__title {
	margin: 0 0 0.75rem;
	font-family: var(--u-font-bold);
	font-weight: 700;
	font-size: 1.05rem;
}

.u-single-body h2,
.u-single-body h3 {
	font-family: var(--u-font-slab);
	font-weight: 700;
}

.u-single-body blockquote {
	margin: 1.25rem 0;
	padding: 0.75rem 1rem;
	border-left: 3px solid var(--u-color-accent);
	font-family: var(--u-font-medium);
	font-style: italic;
	font-weight: 500;
	background: var(--u-weiss);
}

.u-suggested {
	margin-top: 1.75rem;
	padding-top: 0.85rem;
	border-top: 1px solid var(--u-color-border);
}

.u-suggested__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.u-suggested__list li {
	position: relative;
	padding-left: 1rem;
	margin-bottom: 0.35rem;
}

.u-suggested__list li::before {
	content: "➥";
	position: absolute;
	left: 0;
	color: var(--u-color-accent);
}

/* ——— Widgets / Sidebar ——— */
.u-widget {
	background: var(--u-weiss);
	border: 1px solid var(--u-color-border);
	padding: 0.85rem;
	margin-bottom: 0;
}

.u-widget__title {
	font-family: var(--u-font-condensed);
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 0.6rem;
	color: var(--u-color-accent);
}

.u-widget__list {
	margin: 0;
	padding-left: 0;
	list-style: none;
}

.u-widget__list li {
	position: relative;
	padding-left: 1rem;
	margin-top: 0.4rem;
	font-size: 0.875rem;
}

.u-widget__list li::before {
	content: "➥";
	position: absolute;
	left: 0;
	color: var(--u-color-accent);
}

.u-widget--ticker .u-widget__title {
	font-family: var(--u-font-black);
	font-weight: 900;
	font-size: 1.05rem;
	letter-spacing: 0;
	text-transform: none;
	color: var(--u-schwarz);
	line-height: 1.15;
}

/* Telegram-Promo (Bild) */
.u-widget--telegram {
	padding: 0;
	overflow: hidden;
	background: transparent;
	border: 0;
}

.u-telegram-promo {
	display: block;
	line-height: 0;
}

.u-telegram-promo__img {
	display: block;
	width: 100%;
	height: auto;
}

/* Infobrief */
.u-widget--infobrief {
	padding: 0;
	overflow: hidden;
	background: #c8e6e4;
	border-color: #7eb8b4;
}

.u-infobrief__bar {
	background: var(--u-uz-blau);
	color: var(--u-weiss);
	font-family: var(--u-font-condensed);
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.45rem 0.75rem;
}

.u-infobrief__body {
	padding: 0.75rem 0.85rem 0.85rem;
}

.u-infobrief__form {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	align-items: stretch;
}

.u-infobrief__input {
	width: 100%;
	box-sizing: border-box;
	padding: 0.55rem 0.6rem;
	border: 1px solid #333;
	background: var(--u-weiss);
	font-family: var(--u-font-regular);
	font-size: 0.875rem;
	color: var(--u-schwarz);
}

.u-infobrief__input::placeholder {
	color: var(--u-grau);
}

.u-infobrief__submit {
	align-self: flex-end;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #3a8a86;
	font-family: var(--u-font-bold);
	font-weight: 700;
	font-size: 0.9rem;
	cursor: pointer;
	text-decoration: none;
}

.u-infobrief__submit:hover,
.u-infobrief__submit:focus-visible {
	color: #2a6a67;
	text-decoration: underline;
}

/* Ad-Slot */
.u-widget--ad {
	padding: 0;
	background: transparent;
	border: 0;
}

.u-ad-slot__debug {
	margin: 0;
	padding: 0.5rem 0.65rem;
	font-size: 0.75rem;
	line-height: 1.35;
	color: #842029;
	background: #f8d7da;
	border: 1px solid #f5c2c7;
}

/* Eigene Bild-/HTML-Blöcke */
.u-widget--custom {
	padding: 0;
	border: 0;
	background: transparent;
	overflow: hidden;
}

.u-custom-image {
	display: block;
	line-height: 0;
}

.u-custom-image__img {
	display: block;
	width: 100%;
	height: auto;
}

.u-custom-html {
	padding: 0;
}

/* Politik aktuell */
.u-widget--politik {
	padding: 0;
	overflow: hidden;
	border: 0;
	background: transparent;
}

.u-politik__hero {
	position: relative;
	margin: 0;
	min-height: 11rem;
	background: #333;
	overflow: hidden;
}

.u-politik__hero-img {
	display: block;
	width: 100%;
	aspect-ratio: 5 / 3;
	height: auto;
	object-fit: cover;
}

.u-politik__hero-img--fallback {
	aspect-ratio: 5 / 3;
	height: auto;
	min-height: 11rem;
	background: linear-gradient(135deg, #4a5560, #2a3038);
}

.u-politik__badge {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	padding: 0.35rem 0.55rem;
	background: var(--u-uz-rot);
	color: var(--u-weiss);
	font-family: var(--u-font-condensed);
	font-weight: 700;
	font-size: 0.78rem;
	line-height: 1.2;
}

.u-politik__datebox {
	position: absolute;
	top: 2rem;
	left: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 4.4rem;
	padding: 0.45rem 0.5rem 0.5rem;
	background: var(--u-weiss);
	color: var(--u-schwarz);
	box-shadow: 0 1px 4px rgb(0 0 0 / 0.18);
}

.u-politik__day {
	font-family: var(--u-font-slab);
	font-weight: 700;
	font-size: 1.55rem;
	line-height: 1;
}

.u-politik__month {
	font-family: var(--u-font-condensed);
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: 0.02em;
	line-height: 1.1;
	text-transform: uppercase;
}

.u-politik__rule {
	display: block;
	width: 100%;
	height: 1px;
	margin: 0.35rem 0 0.3rem;
	background: #bbb;
}

.u-politik__time {
	font-size: 0.7rem;
	line-height: 1.2;
	color: #777;
}

.u-politik__all {
	position: absolute;
	left: 0.55rem;
	right: 2.35rem; /* Platz für © rechts unten (wie Karten) */
	bottom: 0.55rem;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--u-weiss);
	font-family: var(--u-font-slab);
	font-weight: 700;
	font-size: 0.92rem;
	line-height: 1.25;
	text-decoration: none;
	text-shadow: 0 1px 3px rgb(0 0 0 / 0.65);
}

.u-politik__hero .u-card__copyright-btn,
.u-politik__hero .u-card__copyright {
	z-index: 3;
}

.u-politik__all:hover,
.u-politik__all:focus-visible {
	text-decoration: underline;
	color: var(--u-weiss);
}

.u-politik__all-arrow {
	flex: 0 0 auto;
}

.u-widget--most-read .u-politik__list {
	background: var(--u-papier);
}

/* YouTube-Facade in Advanced Ads (.yt-video-container) */
.yt-video-container .u-yt-facade,
.u-yt-facade {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: #111;
	overflow: hidden;
}

.yt-video-container .u-yt-facade__img,
.u-yt-facade__img {
	position: absolute !important;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	opacity: 0.9;
}

.u-yt-facade__btn {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0 0.75rem 2.5rem;
	margin: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	color: #fff;
	font: inherit;
}

.u-yt-facade__play {
	display: flex;
	filter: drop-shadow(0 2px 6px rgb(0 0 0 / 0.45));
}

.u-yt-facade__hint {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0.55rem 0.75rem;
	background: rgb(0 0 0 / 0.72);
	color: #fff;
	font-size: 0.75rem;
	line-height: 1.4;
	text-align: center;
}

.u-yt-facade__hint span {
	font-size: 0.68rem;
	opacity: 0.85;
}

.u-yt-facade.is-loaded iframe,
.yt-video-container .u-yt-facade iframe {
	position: absolute !important;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	border: 0;
}

.u-yt-facade--fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #fff;
}

.u-politik__list {
	list-style: none;
	margin: 0;
	padding: 0;
	background: var(--u-papier);
}

.u-politik__item {
	border-bottom: 1px solid #cfc8c0;
}

.u-politik__item:last-child {
	border-bottom: 0;
}

.u-politik__link {
	display: grid;
	grid-template-columns: 1.1rem minmax(0, 1fr);
	column-gap: 0.35rem;
	row-gap: 0.15rem;
	padding: 0.65rem 0.7rem;
	text-decoration: none;
	color: inherit;
}

.u-politik__bullet {
	grid-row: 1 / span 2;
	color: var(--u-uz-rot);
	font-size: 0.85rem;
	line-height: 1.2;
	padding-top: 0.1rem;
}

.u-politik__meta {
	grid-column: 2;
	font-size: 0.72rem;
	line-height: 1.3;
	color: #666;
}

.u-politik__title {
	grid-column: 2;
	font-family: var(--u-font-slab);
	font-weight: 700;
	font-size: 0.92rem;
	line-height: 1.3;
	color: #222;
}

.u-politik__link:hover .u-politik__title,
.u-politik__link:focus-visible .u-politik__title {
	color: var(--u-uz-rot);
}

.u-widget--politik .u-widget__title a {
	color: inherit;
	text-decoration: none;
}

.u-widget--politik .u-widget__title a:hover {
	color: var(--u-uz-rot);
}

/* ——— Footer ——— */
.u-footer {
	border-top: 0;
	background: transparent;
	color: var(--u-schwarz);
	padding: 0.65rem var(--u-space) 1rem;
}

.u-footer--chrome {
	flex: 0 0 auto;
	z-index: 300;
}

.u-footer__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0;
	width: min(100%, var(--u-container));
	margin-inline: auto;
	padding: 0.85rem 1rem;
	background: var(--u-karton); /* Manual KARTON 220/210/205 */
	color: var(--u-schwarz);
	box-sizing: border-box;
}

.u-footer__item {
	margin: 0;
	padding: 0 0.85rem;
	font-family: var(--u-font-condensed);
	font-weight: 700;
	font-size: clamp(0.7rem, 2.4vw, 0.95rem);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--u-schwarz);
	text-decoration: none;
	line-height: 1.2;
	white-space: nowrap;
}

.u-footer__item--brand {
	padding-left: 0.35rem;
}

.u-footer__sep {
	display: inline-block;
	width: 1px;
	height: 1.05em;
	background: var(--u-schwarz);
	flex: 0 0 auto;
	align-self: center;
}

.u-footer__item:hover,
.u-footer__item:focus-visible {
	text-decoration: underline;
	color: var(--u-schwarz);
}

@media (max-width: 1023px) {
	.u-footer__inner {
		width: min(100%, var(--u-container));
		padding: 0.65rem 0.5rem;
	}

	.u-footer__item {
		padding: 0 0.45rem;
		font-size: clamp(0.58rem, 2.8vw, 0.75rem);
		letter-spacing: 0.02em;
	}
}

/* 480 */
@media (min-width: 480px) {
	.u-branding__logo {
		width: min(380px, 62vw);
	}
}

/* 768 */
@media (min-width: 768px) {
	.u-search__input {
		font-size: 0.8125rem;
	}

	.u-country-switch__btn {
		padding: 0.2rem 0.65rem;
		font-size: 0.68rem;
	}

	.u-country-switch__flag {
		padding: 0.1rem 0.2rem 0.1rem 0.5rem;
		gap: 0.4rem;
	}

	.u-country-switch__code {
		font-size: 0.75rem;
	}

	.u-country-switch__img {
		width: 3.5rem;
		height: 1.35rem;
	}

	.u-top-slider__layout {
		grid-template-columns: 1.65fr 1fr;
		align-items: start;
		gap: 1rem;
	}

	.u-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/*
	 * Senkrechte Trennlinie als Segment je linker Karte —
	 * oben/unten eingezogen → kurze Unterbrechung an Kreuzungen (Manual).
	 */
	.u-grid > .u-card:nth-child(odd)::after {
		content: "";
		position: absolute;
		top: 0.75rem;
		bottom: 0.75rem;
		right: 0;
		width: 1px;
		background: var(--u-grid-line, rgb(200, 200, 200));
		pointer-events: none;
	}

	.u-grid > .u-card {
		border-right: 0;
	}
}

/* 1024: 670 | 22 | 310 (Gap halbiert ggü. Manual 44) */
@media (min-width: 1024px) {
	.u-header__rail,
	.u-layout {
		grid-template-columns: minmax(0, 1fr) var(--u-sidebar);
		gap: var(--u-col-gap);
		align-items: start;
	}

	.u-layout {
		grid-template-areas:
			"primary sidebar"
			"more sidebar";
	}

	.u-layout__primary {
		grid-area: primary;
	}

	.u-sidebar {
		grid-area: sidebar;
	}

	.u-layout__more {
		grid-area: more;
		grid-column: auto;
	}

	.u-header__aside {
		display: block;
		min-height: 1px;
	}
}

/* 1280 */
@media (min-width: 1280px) {
	:root {
		--u-container: 64rem;
		--u-space: 1.25rem;
	}
}
