/* =========================================
   Design Tokens / Basiswerte
========================================= */
:root {
	--blue: #0b4b92;
	--blue-dark: #083564;
	--blue-soft: #edf4fb;
	--red: #e63a2e;

	--text: #1f2733;
	--text-soft: #5d6877;
	--line: #dbe4ee;
	--bg: #eceff3;
	--white: #ffffff;

	--shadow: 0 10px 28px rgba(9, 36, 68, 0.08);
	--shadow-soft: 0 6px 18px rgba(9, 36, 68, 0.05);

	--radius-lg: 10px;
	--radius-md: 10px;

	--container: 1180px;
}

/* =========================================
   Reset / Grundlayout
========================================= */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	min-height: 100%;
}

body {
	font-family: Arial, sans-serif;
	color: var(--text);
	overflow-x: hidden;
	background:
		radial-gradient(circle at top left, rgba(11, 75, 146, 0.05), transparent 32%),
		linear-gradient(180deg, #f2f5f9 0%, #e9eef4 100%);
}

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

a {
	color: inherit;
	text-decoration: none;
}

/* =========================================
   Alte Header-Strukturen neutralisieren
========================================= */
#header-placeholder {
	min-height: 0;
	background: transparent;
	border-bottom: 0;
}

header.site-header,
header {
	position: relative;
	z-index: 1000;
}

.header-container,
.headlogo,
.nav {
	all: unset;
}

/* =========================================
   Seiten-Container
========================================= */
.site-main {
	width: min(calc(100% - 24px), var(--container));
	margin: 24px auto 64px;
}

/* =========================================
   Wiederverwendbare UI-Bausteine
========================================= */
.card {
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(8, 53, 100, 0.08);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.section-head {
	margin-bottom: 20px;
}

.section-head--row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
}

.section-kicker {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--blue);
}

.section-head h2 {
	margin: 0;
	font-size: clamp(1.45rem, 3vw, 2.2rem);
	line-height: 1.08;
	color: #172231;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 46px;
	padding: 0 18px;
	border: 1px solid transparent;
	border-radius: 999px;
	cursor: pointer;
	font-size: 0.92rem;
	font-weight: 700;
	transition:
		transform 0.2s ease,
		background 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-primary {
	color: #fff;
	background: var(--red);
	box-shadow: 0 8px 18px rgba(230, 58, 46, 0.22);
}

.btn-primary:hover {
	color: #fff;
	background: #cf2f24;
}

.btn-secondary {
	color: var(--blue-dark);
	background: rgba(255, 255, 255, 0.88);
	border-color: var(--line);
}

.btn-secondary:hover {
	color: var(--blue);
	background: #fff;
	border-color: #bfd0e2;
}

.btn-small {
	min-height: 38px;
	padding: 0 14px;
	font-size: 0.84rem;
}

.icon-btn {
	width: 38px;
	height: 38px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: #fff;
	color: var(--blue-dark);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-soft);
}

.live-pill,
.hero-tags span,
.traffic-tags span,
.weather-tags span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	border-radius: 999px;
	font-weight: 600;
}

.hero-tags span,
.traffic-tags span,
.weather-tags span {
	background: #f3f7fb;
	border: 1px solid var(--line);
	color: var(--blue-dark);
	font-size: 0.82rem;
}

.live-pill {
	padding: 6px 10px;
	background: #fff1ee;
	color: var(--red);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.13em;
}

.live-pill::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--red);
}

.point-box,
.platform-card,
.service-list-card,
.stream-link-item,
.jobs-highlight,
.join-hero__box,
.legal-hero__box,
.traffic-hero__box,
.weather-hero__box,
.weather-card {
	background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
	border: 1px solid rgba(8, 53, 100, 0.08);
	box-shadow: var(--shadow-soft);
}

.point-box i,
.service-list-card__icon,
.jobs-highlight i,
.join-hero__box i,
.legal-hero__box i,
.traffic-hero__box i,
.weather-hero__box i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: #edf5fd;
	color: var(--blue);
	border-radius: var(--radius-lg);
}

/* =========================================
   Hero Startseite
========================================= */
.hero-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.38fr) minmax(320px, 0.72fr);
	gap: 18px;
	align-items: stretch;
	margin-bottom: 18px;
}

.hero-story {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 0;
	overflow: hidden;
}

.hero-story__image {
	position: relative;
	height: 320px;
}

.hero-story__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-story__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 37, 73, 0.08), rgba(7, 37, 73, 0.42));
}

.hero-story__badge {
	position: absolute;
	left: 18px;
	bottom: 16px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--blue-dark);
	font-size: 0.76rem;
	font-weight: 700;
}

.hero-story__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
	padding: 24px;
}

.hero-story__content h1 {
	margin: 0 0 14px;
	font-size: clamp(2.2rem, 4vw, 3.5rem);
	line-height: 0.98;
	letter-spacing: -0.03em;
	color: #162131;
}

.hero-story__lead {
	margin-bottom: 12px !important;
	font-size: 1.08rem;
	font-weight: 700;
	line-height: 1.7 !important;
	color: #243143 !important;
}

.hero-story__content p {
	max-width: 760px;
	margin: 0 0 18px;
	font-size: 1rem;
	line-height: 1.75;
	color: var(--text-soft);
}

.hero-actions,
.hero-tags {
	display: flex;
	flex-wrap: wrap;
}

.hero-actions {
	gap: 10px;
	margin-bottom: 16px;
}

.hero-tags {
	gap: 8px;
}

/* =========================================
   On Air Box
========================================= */
.onair-box {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 16px;
}

.onair-box__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.onair-box__cover {
	position: relative;
	margin-bottom: 16px;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--blue-soft);
}

.song_img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.play-fab {
	position: absolute;
	left: 14px;
	bottom: 14px;
	width: 52px;
	height: 52px;
	border: 0;
	border-radius: 50%;
	background: var(--red);
	color: #fff;
	font-size: 0.95rem;
	cursor: pointer;
	box-shadow: 0 10px 20px rgba(230, 58, 46, 0.22);
}

.show-title {
	margin-bottom: 8px;
	font-size: 1.45rem;
	font-weight: 800;
	line-height: 1.1;
	color: #1d2633;
}

.show-time {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
	font-size: 0.9rem;
	color: var(--text-soft);
}

.now-playing-label {
	margin-bottom: 7px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--blue);
}

.track-title {
	margin-bottom: 4px;
	font-size: 1.04rem;
	font-weight: 800;
	color: #182434;
}

.track-artist {
	font-size: 0.96rem;
	color: var(--text-soft);
}

/* =========================================
   Welcome / Intro
========================================= */
.welcome-box {
	margin-bottom: 22px;
	padding: 28px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 252, 255, 0.96));
}

.welcome-head {
	display: block;
	margin-bottom: 24px;
}

.welcome-head__content {
	max-width: 100%;
}

.welcome-head h2 {
	margin: 10px 0 14px;
	line-height: 1.15;
	max-width: 900px;
	letter-spacing: -0.01em;
}

.welcome-intro {
	margin: 0;
	max-width: 720px;
	font-size: 1rem;
	line-height: 1.75;
	color: var(--text-soft);
}

.welcome-quicklinks {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.welcome-quicklinks a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	color: var(--blue);
	text-decoration: none;
	font-weight: 700;
	font-size: 0.95rem;
	transition: all 0.2s ease;
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(6px);
}

.welcome-quicklinks a:hover {
	background: var(--blue-soft);
	border-color: rgba(11, 75, 146, 0.25);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(11, 75, 146, 0.12);
}

.welcome-quicklinks i {
	font-size: 0.95rem;
}

.welcome-grid {
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	gap: 22px;
	align-items: start;
}

.welcome-copy {
	display: grid;
	gap: 16px;
}

.welcome-copy__panel {
	padding: 22px;
	border-radius: var(--radius-lg);
	background: linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%);
	border: 1px solid rgba(8, 53, 100, 0.08);
}

.welcome-lead {
	font-size: 1.08rem;
	line-height: 1.8;
	color: #223042;
}

.welcome-copy p {
	margin: 0 0 16px;
	line-height: 1.75;
	color: var(--text-soft);
}

.welcome-copy p:last-child {
	margin-bottom: 0;
}

.welcome-contact {
	padding: 18px 20px;
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, #0b4b92 0%, #1566c0 100%);
	color: #fff;
	box-shadow: 0 14px 28px rgba(11, 75, 146, 0.16);
}

.welcome-contact__label {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.welcome-contact p {
	margin: 0;
	line-height: 1.7;
	color: #fff;
}

.welcome-points {
	display: grid;
	gap: 12px;
}

.point-box {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px;
	border-radius: var(--radius-lg);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.point-box:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 24px rgba(9, 36, 68, 0.1);
}

.point-box i {
	width: 40px;
	height: 40px;
	border-radius: var(--radius-md);
}

.point-box strong {
	display: block;
	margin-bottom: 5px;
	font-size: 1rem;
	color: #1d2431;
}

.point-box span {
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--text-soft);
}

/* =========================================
   Playlist Showcase
========================================= */
.playlist-showcase {
	margin-bottom: 24px;
}

.playlist-showcase__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 14px;
}

.playlist-showcase__title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
}

.playlist-showcase__title h2 {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	font-size: clamp(1.9rem, 3vw, 2.5rem);
	line-height: 1.1;
	color: var(--blue);
}

.playlist-showcase__title h2 i {
	font-size: 1.35rem;
	color: var(--blue);
}

.playlist-showcase__line {
	display: block;
	width: 128px;
	height: 4px;
	margin-top: 10px;
	margin-left: 54px;
	border-radius: 999px;
	background: var(--red);
}

.playlist-showcase__cta {
	flex-shrink: 0;
	white-space: nowrap;
}

.playlist-showcase__panel {
	display: grid;
	grid-template-columns: 330px minmax(0, 1fr);
	gap: 18px;
	align-items: stretch;
	padding: 12px;
	overflow: hidden;
	background: linear-gradient(180deg, #dfe8f4 0%, #cfdced 100%);
	border: 1px solid rgba(11, 75, 146, 0.12);
	border-radius: var(--radius-lg);
	box-shadow: 0 12px 28px rgba(11, 75, 146, 0.08);
}

.playlist-featured {
	position: relative;
	min-width: 0;
	height: 100%;
}

.playlist-featured__cover {
	position: relative;
	height: 100%;
	overflow: hidden;
	background: #9fb4cf;
	border-radius: var(--radius-lg);
}

.playlist-featured__cover img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.playlist-featured__cover::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.02) 0%,
		rgba(0, 0, 0, 0.08) 55%,
		rgba(0, 0, 0, 0.62) 100%
	);
	pointer-events: none;
}

.playlist-featured__badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0 10px;
	border-radius: 4px;
	background: #ff2b2b;
	color: #fff;
	font-size: 0.86rem;
	font-weight: 800;
}

.playlist-featured__meta {
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 12px;
	z-index: 2;
}

.playlist-featured__meta::before {
	content: "Aktuell im Stream";
	display: block;
	margin-bottom: 6px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.playlist-featured__meta h3 {
	margin: 0 0 3px;
	font-size: 1.12rem;
	font-weight: 800;
	line-height: 1.18;
	color: #fff;
	text-shadow: 0 3px 10px rgba(0, 0, 0, 0.42);
	word-break: break-word;
}

.playlist-featured__meta p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.32;
	color: rgba(255, 255, 255, 0.96);
	text-shadow: 0 3px 10px rgba(0, 0, 0, 0.42);
	word-break: break-word;
}

.playlist-history {
	display: flex;
	align-items: stretch;
	min-width: 0;
	height: 100%;
	padding: 0;
}

.playlist-history__list {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	height: 100%;
}

.playlist-history__item {
	flex: 1;
	display: grid;
	grid-template-columns: 60px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid rgba(8, 53, 100, 0.1);
}

.playlist-history__item:last-child {
	border-bottom: 0;
}

.playlist-history__cover {
	width: 60px;
	height: 60px;
	flex-shrink: 0;
	object-fit: cover;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.7);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.playlist-history__content {
	min-width: 0;
}

.playlist-history__time {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 20px;
	padding: 0 6px;
	margin-bottom: 3px;
	border-radius: 3px;
	background: #ff2b2b;
	color: #fff;
	font-size: 0.68rem;
	font-weight: 700;
	line-height: 1;
}

.playlist-history__title {
	margin: 0 0 3px;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.22;
	color: #083564;
	word-break: break-word;
}

.playlist-history__artist {
	margin: 0;
	font-size: 0.85rem;
	line-height: 1.3;
	color: #35506f;
	word-break: break-word;
}

/* =========================================
   Nützliche Links
========================================= */
.useful-links-section {
	margin-bottom: 24px;
}

.links-head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 18px;
}

.links-head h2 {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	font-size: clamp(1.9rem, 3vw, 2.8rem);
	line-height: 1.1;
	color: #1d2734;
}

.links-head h2 i {
	font-size: 1.7rem;
	color: var(--blue-dark);
}

.links-head__line {
	display: block;
	width: 128px;
	height: 4px;
	margin-top: 12px;
	margin-left: 58px;
	border-radius: 999px;
	background: var(--red);
}

.useful-links-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 18px;
}

.useful-links-grid .useful-link-card:nth-child(1),
.useful-links-grid .useful-link-card:nth-child(2) {
	grid-column: span 3;
	min-height: 250px;
}

.useful-links-grid .useful-link-card:nth-child(n + 3) {
	grid-column: span 2;
	min-height: 220px;
}

.useful-link-card {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-lg);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.useful-link-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.useful-link-card__image,
.useful-link-card__image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.useful-link-card__image img {
	object-fit: cover;
}

.useful-link-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(8, 19, 34, 0.12) 0%,
		rgba(8, 19, 34, 0.28) 48%,
		rgba(8, 19, 34, 0.72) 100%
	);
}

.useful-link-card__content {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	z-index: 2;
	color: #fff;
}

.useful-link-card__content h3 {
	margin: 0 0 8px;
	font-size: 1.45rem;
	line-height: 1.1;
	color: #fff;
}

.useful-link-card__content p {
	max-width: 92%;
	margin: 0;
	font-size: 0.96rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.94);
}

/* =========================================
   Footer
========================================= */
#dynamic-footer footer,
footer {
	margin-top: 0;
	padding: 28px 20px 34px;
	background: #0d1f36;
	color: rgba(255, 255, 255, 0.78);
	text-align: center;
}

.sociallinks-link-icon p {
	margin: 0 0 12px;
}

.sociallinks-link-icon a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin: 0 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 20px;
	transition: 0.2s ease;
}

.sociallinks-link-icon a:hover {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	transform: translateY(-2px);
}

/* =========================================
   Unterseiten / Empfang
========================================= */
.subhero {
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	gap: 0;
	overflow: hidden;
	margin-bottom: 22px;
}

.subhero__media {
	position: relative;
	min-height: 420px;
}

.subhero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.subhero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 37, 73, 0.06), rgba(7, 37, 73, 0.34));
}

.subhero__badge {
	position: absolute;
	left: 18px;
	bottom: 16px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--blue-dark);
	font-size: 0.76rem;
	font-weight: 700;
}

.subhero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 28px;
}

.subhero__content h1 {
	margin: 0 0 14px;
	font-size: clamp(2.1rem, 4vw, 3.3rem);
	line-height: 1;
	color: #162131;
}

.subhero__lead {
	margin: 0 0 14px;
	font-size: 1.06rem;
	font-weight: 700;
	line-height: 1.7;
	color: #243143;
}

.subhero__content p {
	margin: 0 0 16px;
	line-height: 1.75;
	color: var(--text-soft);
}

.platform-section,
.services-panel,
.stream-links-panel {
	margin-bottom: 22px;
	padding: 26px;
}

.platform-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.platform-card {
	display: block;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	border-radius: var(--radius-lg);
}

.platform-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 24px rgba(9, 36, 68, 0.08);
}

.platform-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
}

.platform-card__body {
	padding: 18px;
}

.platform-card__tag,
.job-card__tag {
	display: inline-block;
	margin-bottom: 10px;
	padding: 6px 10px;
	background: #edf5fd;
	color: var(--blue);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.platform-card h3 {
	margin: 0 0 8px;
	font-size: 1.35rem;
	color: #1d2431;
}

.platform-card p {
	margin: 0 0 14px;
	line-height: 1.6;
	color: var(--text-soft);
}

.platform-card__link {
	color: var(--blue-dark);
	font-weight: 700;
}

.service-list-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.service-list-card {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px;
	border-radius: var(--radius-lg);
}

.service-list-card__icon {
	width: 52px;
	height: 52px;
	font-size: 1.1rem;
}

.service-list-card__content h3 {
	margin: 0 0 8px;
	font-size: 1.2rem;
	color: #1d2431;
}

.service-list-card__content p {
	margin: 0 0 14px;
	line-height: 1.6;
	color: var(--text-soft);
}

.stream-links-box {
	display: grid;
	gap: 12px;
	margin-bottom: 18px;
}

.stream-link-item {
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	padding: 14px 16px;
	border-radius: var(--radius-lg);
}

.stream-link-item__label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 12px;
	background: #edf5fd;
	color: var(--blue-dark);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.stream-link-item a {
	color: var(--blue-dark);
	font-weight: 600;
	word-break: break-all;
}

.stream-note {
	padding: 18px 20px;
	background: linear-gradient(135deg, #0b4b92 0%, #1566c0 100%);
	color: #fff;
	line-height: 1.7;
}

/* =========================================
   Playlist Unterseite
========================================= */
.playlist-page-panel {
	margin-bottom: 22px;
	padding: 26px;
}

.playlist-page-intro {
	margin: 10px 0 0;
	line-height: 1.75;
	color: var(--text-soft);
}

.playlist-widget-wrap {
	margin-top: 18px;
}

.et_pb_row,
.et_pb_column,
.et_pb_module,
.et_pb_code,
.et_pb_code_inner {
	width: 100%;
	margin: 0;
	padding: 0;
}

/* =========================================
   Mitmachen / Jobs
========================================= */
.jobs-intro-panel {
	margin-bottom: 22px;
	padding: 26px;
}

.jobs-highlight-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.jobs-highlight {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px;
}

.jobs-highlight i {
	width: 42px;
	height: 42px;
}

.jobs-highlight strong,
.join-hero__box strong,
.legal-hero__box strong,
.weather-hero__box strong {
	display: block;
	margin-bottom: 5px;
	font-size: 1rem;
	color: #1d2431;
}

.jobs-highlight span,
.join-hero__box span,
.legal-hero__box span,
.weather-hero__box span {
	font-size: 0.94rem;
	line-height: 1.5;
	color: var(--text-soft);
}

.jobs-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	margin-bottom: 22px;
}

.job-card {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 20px;
	padding: 24px;
}

.job-card__icon {
	width: 96px;
	height: 96px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(8, 53, 100, 0.08);
	background: linear-gradient(180deg, #f2f7fd 0%, #e7f0fb 100%);
	color: var(--blue);
	font-size: 2rem;
	border-radius: var(--radius-lg);
}

.job-card__content h3 {
	margin: 0 0 10px;
	font-size: 1.5rem;
	line-height: 1.1;
	color: #1d2431;
}

.job-card__content p {
	margin: 0 0 16px;
	line-height: 1.75;
	color: var(--text-soft);
}

.job-card__tools {
	padding: 14px 16px;
	background: linear-gradient(180deg, #f8fbff 0%, #f3f7fc 100%);
	border: 1px solid rgba(8, 53, 100, 0.08);
	border-radius: var(--radius-lg);
}

.job-card__tools strong {
	display: block;
	margin-bottom: 6px;
	font-size: 0.98rem;
	color: #1d2431;
}

.job-card__tools span {
	font-size: 0.94rem;
	line-height: 1.6;
	color: var(--text-soft);
}

.jobs-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 22px;
	padding: 26px;
}

.jobs-cta__text {
	max-width: 760px;
}

.jobs-cta__text h2 {
	margin: 0 0 12px;
	font-size: clamp(1.9rem, 3vw, 2.6rem);
	line-height: 1.08;
	color: #172231;
}

.jobs-cta__text p {
	margin: 0;
	line-height: 1.75;
	color: var(--text-soft);
}

.jobs-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* =========================================
   Mitmachen Hero ohne Bild
========================================= */
.join-hero {
	display: grid;
	grid-template-columns: 1.12fr 0.88fr;
	gap: 24px;
	margin-bottom: 22px;
	padding: 28px;
}

.join-hero__intro h1,
.legal-hero__intro h1,
.traffic-hero__intro h1,
.weather-hero__intro h1 {
	margin: 0 0 14px;
	line-height: 1;
	color: #162131;
}

.join-hero__intro h1,
.legal-hero__intro h1 {
	font-size: clamp(2.1rem, 4vw, 3.3rem);
}

.traffic-hero__intro h1,
.weather-hero__intro h1 {
	font-size: clamp(2.1rem, 4vw, 3rem);
}

.join-hero__lead,
.traffic-hero__lead,
.weather-hero__lead {
	margin: 0 0 14px;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.7;
	color: #243143;
}

.legal-hero__lead {
	margin: 0 0 14px;
	font-size: 1.02rem;
	font-weight: 700;
	line-height: 1.7;
	color: #243143;
}

.join-hero__intro p,
.legal-hero__intro p,
.traffic-hero__intro p,
.weather-hero__intro p {
	max-width: 760px;
	margin: 0 0 16px;
	line-height: 1.75;
	color: var(--text-soft);
}

.join-hero__side {
	display: grid;
	gap: 12px;
	align-content: center;
}

.join-hero__box {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px;
	border-radius: var(--radius-lg);
}

.join-hero__box i,
.legal-hero__box i,
.traffic-hero__box i,
.weather-hero__box i {
	width: 42px;
	height: 42px;
}

/* =========================================
   Rechtliches / Datenschutz / Impressum
========================================= */
.legal-hero {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 24px;
	margin-bottom: 22px;
	padding: 28px;
}

.legal-hero__intro h1 {
	font-size: clamp(2.1rem, 4vw, 3.1rem);
}

.legal-hero__box {
	display: flex;
	align-items: flex-start;
	align-self: center;
	gap: 14px;
	padding: 18px;
	border-radius: var(--radius-lg);
}

.legal-panel {
	margin-bottom: 22px;
	padding: 28px;
}

.legal-content {
	max-width: 920px;
}

.legal-content h2 {
	margin: 0 0 18px;
	font-size: 2rem;
	line-height: 1.1;
	color: #172231;
}

.legal-content h3 {
	margin: 30px 0 12px;
	font-size: 1.28rem;
	line-height: 1.2;
	color: #083564;
}

.legal-content h4 {
	margin: 24px 0 10px;
	font-size: 1.05rem;
	line-height: 1.2;
	color: #1d2431;
}

.legal-content p,
.legal-content li {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--text-soft);
}

.legal-content p {
	margin: 0 0 14px;
}

.legal-content ul {
	margin: 0 0 18px 20px;
	padding: 0;
}

.legal-content li {
	margin-bottom: 8px;
}

.legal-content a {
	color: var(--blue-dark);
	text-decoration: underline;
	text-underline-offset: 2px;
	word-break: break-word;
}

/* =========================================
   Verkehr
========================================= */
.traffic-hero {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 24px;
	margin-bottom: 22px;
	padding: 28px;
}

.traffic-tags,
.weather-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.traffic-hero__box,
.weather-hero__box {
	display: flex;
	align-items: flex-start;
	align-self: center;
	gap: 14px;
	padding: 18px;
}

.traffic-panel {
	padding: 26px;
}

.traffic-panel__head h2 {
	margin: 0 0 6px;
	font-size: 1.6rem;
}

.traffic-panel__head p {
	margin: 0 0 16px;
	color: var(--text-soft);
}

.traffic-frame {
	position: relative;
	width: 100%;
	height: 520px;
	overflow: hidden;
	border: 1px solid rgba(8, 53, 100, 0.08);
	border-radius: 12px;
	box-shadow: var(--shadow-soft);
	background: #fff;
}

.traffic-frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.traffic-note {
	margin-top: 12px;
	font-size: 0.85rem;
	color: var(--text-soft);
}

/* =========================================
   Wetter
========================================= */
.weather-hero {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 24px;
	margin-bottom: 22px;
	padding: 28px;
}

.weather-panel,
.weather-warning-panel {
	margin-bottom: 22px;
	padding: 26px;
}

.weather-panel__intro {
	max-width: 760px;
	margin: 10px 0 0;
	line-height: 1.75;
	color: var(--text-soft);
}

.weather-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 18px;
	margin-top: 18px;
}

.weather-card {
	overflow: hidden;
}

.weather-card__head {
	padding: 12px 14px;
	background: #95aecc;
	color: #fff;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.weather-card iframe {
	display: block;
	width: 100%;
	height: 365px;
	border: 0;
	background: #fff;
}

.warning-map-link {
	display: block;
	margin-top: 18px;
	overflow: hidden;
	border: 1px solid rgba(8, 53, 100, 0.08);
	box-shadow: var(--shadow-soft);
	background: #fff;
}

.warning-map-link img {
	display: block;
	width: 100%;
	height: auto;
}

/* =========================================
   Responsive: <= 1100px
========================================= */
@media (max-width: 1100px) {
	.hero-layout,
	.welcome-grid,
	.subhero,
	.platform-grid,
	.service-list-grid,
	.jobs-highlight-grid,
	.join-hero,
	.legal-hero,
	.traffic-hero,
	.weather-hero {
		grid-template-columns: 1fr;
	}

	.playlist-showcase__panel {
		grid-template-columns: 1fr;
	}

	.playlist-history {
		height: auto;
		padding-top: 12px;
	}

	.playlist-history__list {
		height: auto;
	}

	.playlist-history__item {
		flex: 0 0 auto;
	}

	.useful-links-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.useful-links-grid .useful-link-card:nth-child(1),
	.useful-links-grid .useful-link-card:nth-child(2),
	.useful-links-grid .useful-link-card:nth-child(n + 3) {
		grid-column: span 1;
		min-height: 220px;
	}

	.jobs-cta {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* =========================================
   Responsive: <= 768px
========================================= */
@media (max-width: 768px) {
	.site-main {
		width: min(calc(100% - 16px), var(--container));
		margin-top: 14px;
	}

	.hero-story__image {
		height: 240px;
	}

	.hero-story__content,
	.welcome-box,
	.subhero__content,
	.platform-section,
	.services-panel,
	.stream-links-panel,
	.playlist-page-panel,
	.jobs-intro-panel,
	.jobs-cta,
	.join-hero,
	.legal-hero,
	.legal-panel,
	.traffic-hero,
	.traffic-panel,
	.weather-hero,
	.weather-panel,
	.weather-warning-panel {
		padding: 18px;
	}

	.welcome-copy__panel,
	.welcome-contact {
		padding: 18px;
	}

	.section-head--row,
	.hero-actions,
	.hero-tags {
		align-items: flex-start;
	}

	.playlist-showcase__head {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.playlist-showcase__title {
		width: 100%;
	}

	.playlist-showcase__title h2 {
		font-size: 1.9rem;
		line-height: 1.05;
		flex-wrap: wrap;
		gap: 10px;
	}

	.playlist-showcase__cta {
		align-self: flex-start;
	}

	.playlist-showcase__line,
	.links-head__line {
		width: 110px;
		margin-left: 0;
	}

	.welcome-head h2 {
		max-width: 100%;
	}

	.welcome-quicklinks {
		gap: 10px;
	}

	.welcome-quicklinks a {
		width: 100%;
		justify-content: center;
	}

	.playlist-showcase__panel {
		gap: 12px;
		padding: 10px;
	}

	.playlist-featured__cover {
		aspect-ratio: 1 / 1;
		min-height: 0;
	}

	.playlist-featured__cover img {
		width: 100%;
		height: 100%;
		min-height: 0;
		aspect-ratio: 1 / 1;
		object-fit: cover;
	}

	.playlist-featured__meta {
		left: 12px;
		right: 12px;
		bottom: 10px;
	}

	.playlist-featured__meta::before {
		margin-bottom: 5px;
		font-size: 0.66rem;
	}

	.playlist-featured__meta h3 {
		font-size: 1rem;
	}

	.playlist-featured__meta p {
		font-size: 0.82rem;
	}

	.playlist-history__item {
		grid-template-columns: 52px minmax(0, 1fr);
		gap: 12px;
		padding: 9px 0;
	}

	.playlist-history__cover {
		width: 52px;
		height: 52px;
	}

	.playlist-history__time {
		height: 19px;
		padding: 0 6px;
		font-size: 0.66rem;
	}

	.playlist-history__title {
		font-size: 0.96rem;
	}

	.playlist-history__artist {
		font-size: 0.82rem;
	}

	.useful-links-grid {
		grid-template-columns: 1fr;
	}

	.useful-link-card,
	.useful-links-grid .useful-link-card:nth-child(1),
	.useful-links-grid .useful-link-card:nth-child(2),
	.useful-links-grid .useful-link-card:nth-child(n + 3) {
		grid-column: span 1;
		min-height: 220px;
	}

	.links-head h2 {
		font-size: 2rem;
	}

	.subhero__media {
		min-height: 260px;
	}

	.stream-link-item {
		grid-template-columns: 1fr;
	}

	.job-card {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 18px;
	}

	.job-card__icon {
		width: 72px;
		height: 72px;
		font-size: 1.5rem;
	}

	.legal-content h2 {
		font-size: 1.7rem;
	}

	.legal-content h3 {
		font-size: 1.16rem;
	}

	.weather-grid {
		grid-template-columns: 1fr;
	}

	.traffic-frame {
		height: 420px;
	}
}

/* =========================================
   Responsive: <= 560px
========================================= */
@media (max-width: 560px) {
	.hero-story__content h1 {
		font-size: 2rem;
	}

	.show-title {
		font-size: 1.25rem;
	}

	.point-box {
		padding: 16px;
	}

	.playlist-showcase__head {
		margin-bottom: 12px;
	}

	.playlist-showcase__title h2 {
		font-size: 1.75rem;
	}

	.playlist-showcase__title h2 i {
		font-size: 1.15rem;
	}

	.playlist-showcase__cta {
		width: auto;
		max-width: 100%;
	}

	.playlist-showcase__panel {
		gap: 10px;
		padding: 9px;
	}

	.playlist-featured__cover {
		border-radius: 8px;
	}

	.playlist-featured__badge {
		top: 8px;
		left: 8px;
		min-height: 28px;
		padding: 0 9px;
		font-size: 0.78rem;
	}

	.playlist-featured__meta {
		left: 10px;
		right: 10px;
		bottom: 9px;
	}

	.playlist-featured__meta::before {
		margin-bottom: 4px;
		font-size: 0.62rem;
	}

	.playlist-featured__meta h3 {
		font-size: 0.96rem;
		line-height: 1.16;
	}

	.playlist-featured__meta p {
		font-size: 0.78rem;
		line-height: 1.28;
	}

	.playlist-history__item {
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 10px;
		padding: 8px 0;
	}

	.playlist-history__cover {
		width: 48px;
		height: 48px;
	}

	.playlist-history__time {
		height: 18px;
		margin-bottom: 3px;
		padding: 0 6px;
		font-size: 0.64rem;
	}

	.playlist-history__title {
		font-size: 0.9rem;
		line-height: 1.18;
	}

	.playlist-history__artist {
		font-size: 0.78rem;
		line-height: 1.24;
	}

	.useful-link-card__content h3 {
		font-size: 1.3rem;
	}

	.useful-link-card__content p {
		max-width: 100%;
		font-size: 0.94rem;
	}

	.traffic-frame {
		height: 360px;
	}
}

/* =========================================
   Kontaktseite
========================================= */
.contact-hero {
	margin-bottom: 22px;
}

.contact-tags {
	margin-top: 8px;
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
	gap: 22px;
	margin-bottom: 24px;
	align-items: start;
}

.contact-form-panel {
	padding: 26px;
}

.contact-panel-intro {
	margin: 0 0 20px;
	line-height: 1.75;
	color: var(--text-soft);
}

.contact-form {
	display: grid;
	gap: 18px;
}

.contact-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.form-group {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.form-group label {
	font-size: 0.92rem;
	font-weight: 700;
	color: #1d2431;
}

.form-group label span {
	color: var(--red);
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	min-height: 50px;
	padding: 0 14px;
	border: 1px solid rgba(8, 53, 100, 0.14);
	background: rgba(255, 255, 255, 0.96);
	color: var(--text);
	font: inherit;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group textarea {
	min-height: 180px;
	padding: 14px;
	resize: vertical;
}

.form-group select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: rgba(11, 75, 146, 0.55);
	box-shadow: 0 0 0 4px rgba(11, 75, 146, 0.08);
	background: #fff;
}

.contact-security {
	padding: 20px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 250, 255, 0.97));
	border: 1px solid rgba(8, 53, 100, 0.08);
	box-shadow: var(--shadow-soft);
}

.contact-form__grid--security {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	align-items: start;
}

.contact-security__head {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 18px;
}

.contact-security__head i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: #edf5fd;
	color: var(--blue);
	box-shadow: var(--shadow-soft);
	flex-shrink: 0;
}

.contact-security__head strong {
	display: block;
	margin-bottom: 4px;
	font-size: 1rem;
	color: #1d2431;
}

.contact-security__head span {
	font-size: 0.94rem;
	line-height: 1.5;
	color: var(--text-soft);
}

.form-group--math .math-row {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.math-task {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 110px;
	min-height: 50px;
	padding: 0 14px;
	background: #edf5fd;
	border: 1px solid rgba(8, 53, 100, 0.1);
	font-weight: 800;
	color: var(--blue-dark);
	white-space: nowrap;
}

.g-recaptcha {
	max-width: 100%;
	overflow: hidden;
}

.g-recaptcha > div {
	max-width: 100%;
}

.form-group--recaptcha {
	align-items: start;
}

.contact-form__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
}

.contact-form__notice {
	max-width: 720px;
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.65;
	color: var(--text-soft);
}

.contact-info-panel {
	display: grid;
	gap: 18px;
}

.contact-info-card {
	padding: 24px;
}

.contact-info-card h3 {
	margin: 0 0 18px;
	font-size: 1.5rem;
	line-height: 1.1;
	color: #1d2431;
}

.contact-info-list {
	display: grid;
	gap: 12px;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
	border: 1px solid rgba(8, 53, 100, 0.08);
	box-shadow: var(--shadow-soft);
}

.contact-info-item i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #edf5fd;
	color: var(--blue);
	flex-shrink: 0;
}

.contact-info-item strong {
	display: block;
	margin-bottom: 5px;
	font-size: 1rem;
	color: #1d2431;
}

.contact-info-item span {
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--text-soft);
}

.contact-points {
	gap: 12px;
}

.hp-field {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

/* =========================================
   Responsive Kontaktseite
========================================= */
@media (max-width: 1100px) {
	.contact-layout,
	.contact-form__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.contact-form-panel,
	.contact-info-card,
	.contact-security {
		padding: 18px;
	}

	.form-group--math .math-row {
		flex-direction: column;
		align-items: stretch;
	}

	.math-task {
		min-width: 100%;
		justify-content: flex-start;
	}

	.contact-form__footer {
		align-items: flex-start;
		flex-direction: column;
	}
}