/**
 * Saarland-Bühne – Frontend.
 *
 * Farben laufen über CSS-Variablen und lassen sich im Theme überschreiben.
 */

.sb-wrap {
	--sb-primary: #dc006a;
	--sb-primary-dark: #b10055;
	--sb-akzent: #f87a20;
	--sb-dunkel: #2b2330;
	--sb-text: #2b2330;
	--sb-muted: #5c6670;
	--sb-border: #e2e6ea;
	--sb-soft: #f6f8f7;
	--sb-radius: 14px;

	color: var(--sb-text);
	margin: 0 0 28px;
}

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

/* ------------------------------------------------------------- Bausteine */

.sb-kicker {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 10px;
	font-size: 0.78em;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sb-primary);
}

.sb-punkt {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--sb-muted);
	flex: 0 0 auto;
}

.sb-punkt--live {
	background: var(--sb-primary);
	box-shadow: 0 0 0 0 rgba(220, 0, 106, 0.55);
	animation: sb-puls 2.4s infinite;
}

@keyframes sb-puls {
	70% { box-shadow: 0 0 0 11px rgba(220, 0, 106, 0); }
	100% { box-shadow: 0 0 0 0 rgba(220, 0, 106, 0); }
}

@media (prefers-reduced-motion: reduce) {
	.sb-punkt--live { animation: none; }
}

.sb-btn {
	display: inline-block;
	padding: 13px 24px;
	border: 2px solid transparent;
	border-radius: 9px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.sb-wrap a.sb-btn--primary,
.sb-wrap a.sb-btn--primary:hover {
	background: var(--sb-primary) !important;
	border-color: var(--sb-primary) !important;
	color: #fff !important;
	text-decoration: none !important;
}

.sb-wrap a.sb-btn--primary:hover {
	background: var(--sb-primary-dark) !important;
	border-color: var(--sb-primary-dark) !important;
}

.sb-wrap a.sb-btn--ghost {
	background: transparent !important;
	border-color: var(--sb-primary) !important;
	color: var(--sb-primary) !important;
	text-decoration: none !important;
}

.sb-wrap a.sb-btn--ghost:hover {
	background: var(--sb-primary) !important;
	color: #fff !important;
}

.sb-wrap a.sb-btn--weiss {
	background: #fff !important;
	border-color: #fff !important;
	color: var(--sb-dunkel) !important;
	text-decoration: none !important;
}

.sb-wrap a.sb-btn--ghosthell {
	background: transparent !important;
	border-color: rgba(255, 255, 255, 0.55) !important;
	color: #fff !important;
	text-decoration: none !important;
}

.sb-wrap a.sb-btn--ghosthell:hover {
	border-color: #fff !important;
	background: rgba(255, 255, 255, 0.12) !important;
}

.sb-aktionen {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 22px 0 0;
}

.sb-leer {
	border: 1px dashed var(--sb-border);
	border-radius: var(--sb-radius);
	padding: 30px 24px;
	text-align: center;
	color: var(--sb-muted);
	margin: 0;
}

.sb-tag {
	display: inline-block;
	padding: 4px 11px;
	border-radius: 999px;
	background: var(--sb-soft);
	border: 1px solid var(--sb-border);
	font-size: 0.76em;
	font-weight: 600;
	line-height: 1.5;
	color: var(--sb-muted);
}

.sb-tag--offen {
	background: var(--sb-primary);
	border-color: var(--sb-primary);
	color: #fff;
}

.sb-tag--wartet {
	border-style: dashed;
}

/* ---------------------------------------------------------------- Teaser */

.sb-teaser {
	position: relative;
	overflow: hidden;
	border-radius: var(--sb-radius);
	background:
		radial-gradient(120% 130% at 88% 4%, rgba(220, 0, 106, 0.34) 0%, rgba(220, 0, 106, 0) 62%),
		radial-gradient(110% 120% at 4% 96%, rgba(248, 122, 32, 0.26) 0%, rgba(248, 122, 32, 0) 60%),
		var(--sb-dunkel);
	color: #fff;
	padding: 40px;
}

/* Die Marke als leise Textur im Hintergrund – reine Zierde. */
.sb-teaser::after {
	content: "";
	position: absolute;
	right: -70px;
	bottom: -90px;
	width: 420px;
	height: 324px;
	opacity: 0.06;
	pointer-events: none;
	background: url("../bilder/marke.svg") no-repeat center / contain;
}

.sb-teaser__kopf,
.sb-teaser__spalten {
	position: relative;
	z-index: 1;
}

.sb-teaser .sb-kicker {
	color: #fff;
}

.sb-teaser__titel {
	margin: 0 0 8px;
	font-size: clamp(1.7em, 3.6vw, 2.5em);
	line-height: 1.15;
	overflow-wrap: break-word;
	hyphens: auto;
}

.sb-teaser__titel a {
	color: #fff;
	text-decoration: none;
}

.sb-teaser__titel a:hover {
	text-decoration: underline;
}

.sb-teaser__thema {
	margin: 0 0 22px;
	font-size: 1.12em;
	color: #d8d2de;
}

.sb-teaser__spalten {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 30px;
	margin: 32px 0 0;
	padding: 28px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.sb-teaser__spalten h3 {
	margin: 0 0 14px;
	font-size: 0.8em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sb-akzent);
}

@media (max-width: 700px) {
	.sb-teaser { padding: 28px 22px; }
	.sb-teaser::after { width: 260px; height: 200px; right: -50px; bottom: -60px; }
	.sb-teaser__spalten { grid-template-columns: 1fr; gap: 24px; }
}

.sb-countdown {
	margin: 20px 0 0;
	font-size: 0.95em;
	font-weight: 600;
	color: var(--sb-akzent);
}

/* --------------------------------------------------------------- Eckdaten */

.sb-eckdaten {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 40px;
	margin: 0;
	padding: 0;
}

.sb-eckdaten dt {
	margin: 0 0 3px;
	font-size: 0.72em;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sb-muted);
}

.sb-eckdaten dd {
	margin: 0;
	font-weight: 600;
	font-size: 1.02em;
}

.sb-eckdaten--hell dt { color: #b5aebc; }
.sb-eckdaten--hell dd { color: #fff; }

/* ------------------------------------------------------------ Terminseite */

.sb-kopf {
	border: 1px solid var(--sb-border);
	border-radius: var(--sb-radius);
	background: var(--sb-soft);
	padding: 28px 30px;
}

.sb-thema {
	margin: 0 0 20px;
	font-size: 1.18em;
	line-height: 1.45;
	color: var(--sb-text);
}

.sb-hinweis {
	margin: 16px 0 0;
	font-size: 0.92em;
	color: var(--sb-muted);
}

.sb-block {
	margin: 0 0 30px;
}

.sb-block h2 {
	margin: 0 0 6px;
	font-size: 1.25em;
	overflow-wrap: break-word;
	hyphens: auto;
}

.sb-block h2::after {
	content: "";
	display: block;
	width: 34px;
	height: 3px;
	margin: 8px 0 18px;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--sb-primary), var(--sb-akzent));
}

/* --------------------------------------------------------------- Programm */

.sb-programm {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sb-programm li {
	display: flex;
	gap: 20px;
	padding: 14px 0;
	border-bottom: 1px solid var(--sb-border);
}

.sb-programm li:last-child {
	border-bottom: 0;
}

.sb-programm__zeit {
	flex: 0 0 96px;
	font-weight: 600;
	color: var(--sb-primary);
	font-size: 0.94em;
}

.sb-programm__text strong {
	display: block;
	line-height: 1.35;
}

.sb-programm__text span {
	display: block;
	margin: 4px 0 0;
	color: var(--sb-muted);
	font-size: 0.94em;
	line-height: 1.5;
}

.sb-programm--kompakt li {
	padding: 9px 0;
	border-color: rgba(255, 255, 255, 0.14);
}

.sb-programm--kompakt .sb-programm__zeit {
	flex-basis: 88px;
	color: #fff;
	opacity: 0.75;
}

/* ------------------------------------------------------------------ Gäste */

.sb-gaeste {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 14px;
}

.sb-gast {
	border: 1px solid var(--sb-border);
	border-radius: 11px;
	padding: 16px 18px;
	background: #fff;
	border-left: 4px solid var(--sb-akzent);
}

.sb-gast__name {
	margin: 0;
	font-weight: 600;
}

.sb-gast__rolle {
	margin: 4px 0 0;
	font-size: 0.9em;
	line-height: 1.45;
	color: var(--sb-muted);
}

.sb-gaesteliste {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sb-gaesteliste li {
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	line-height: 1.4;
}

.sb-gaesteliste li:last-child { border-bottom: 0; }

.sb-gaesteliste span {
	display: block;
	font-size: 0.9em;
	color: #c9c0d2;
}

/* ------------------------------------------------------------- Aufzeichnung */

.sb-video {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: var(--sb-radius);
	overflow: hidden;
	background: var(--sb-dunkel);
	margin: 0 0 18px;
}

.sb-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.sb-audio {
	width: 100%;
	margin: 0 0 12px;
}

.sb-meta {
	margin: 14px 0 0;
	font-size: 0.9em;
	color: var(--sb-muted);
}

/* ------------------------------------------------------------------ Liste */

.sb-liste {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
}

.sb-karte {
	display: flex;
	gap: 18px;
	border: 1px solid var(--sb-border);
	border-radius: var(--sb-radius);
	background: #fff;
	padding: 20px;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.sb-karte:hover {
	box-shadow: 0 10px 28px rgba(20, 30, 40, 0.09);
	transform: translateY(-2px);
}

.sb-karte--kommend {
	border-color: var(--sb-primary);
}

.sb-karte__datum {
	flex: 0 0 62px;
	text-align: center;
	border-radius: 10px;
	padding: 10px 4px;
	background: var(--sb-soft);
	border: 1px solid var(--sb-border);
	align-self: flex-start;
	line-height: 1.15;
}

.sb-karte--kommend .sb-karte__datum {
	background: linear-gradient(160deg, var(--sb-primary), var(--sb-akzent));
	border-color: transparent;
	color: #fff;
}

.sb-karte__tag {
	display: block;
	font-size: 1.6em;
	font-weight: 700;
}

.sb-karte__monat {
	display: block;
	font-size: 0.76em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.sb-karte__jahr {
	display: block;
	font-size: 0.7em;
	opacity: 0.7;
}

.sb-karte__nummer {
	margin: 0 0 4px;
	font-size: 0.74em;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--sb-akzent);
}

.sb-karte__titel {
	margin: 0 0 6px;
	font-size: 1.1em;
	line-height: 1.3;
	overflow-wrap: break-word;
	hyphens: auto;
}

.sb-karte__titel a {
	color: inherit;
	text-decoration: none;
}

.sb-karte__titel a:hover { color: var(--sb-primary); }

.sb-karte__thema {
	margin: 0 0 8px;
	font-size: 0.94em;
	line-height: 1.5;
	color: var(--sb-muted);
}

.sb-karte__zeile {
	margin: 0 0 10px;
	font-size: 0.9em;
	color: var(--sb-muted);
}

.sb-karte__formate {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 12px;
}

.sb-karte__mehr {
	margin: auto 0 0;
}

.sb-karte__mehr a {
	font-weight: 600;
	text-decoration: none;
	color: var(--sb-primary);
}

.sb-karte__mehr a:hover { text-decoration: underline; }

/* -------------------------------------------------------------- Kalender */

.sb-jahr {
	margin: 0 0 34px;
}

.sb-jahr__titel {
	margin: 0 0 14px;
	font-size: 1.4em;
	color: var(--sb-primary);
}

.sb-zeitstrahl {
	list-style: none;
	margin: 0;
	padding: 0 0 0 4px;
	border-left: 2px solid var(--sb-border);
}

.sb-zeitstrahl__punkt {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px 18px;
	padding: 14px 0 14px 26px;
}

.sb-zeitstrahl__punkt::before {
	content: "";
	position: absolute;
	left: -7px;
	top: 22px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--sb-border);
}

.sb-zeitstrahl__punkt.ist-kommend::before {
	background: var(--sb-primary);
	border-color: var(--sb-primary);
}

.sb-zeitstrahl__datum {
	flex: 0 0 66px;
	font-weight: 700;
	color: var(--sb-muted);
}

.sb-zeitstrahl__punkt.ist-kommend .sb-zeitstrahl__datum {
	color: var(--sb-primary);
}

.sb-zeitstrahl__text {
	flex: 1 1 220px;
}

.sb-zeitstrahl__text a {
	font-weight: 600;
	color: inherit;
	text-decoration: none;
}

.sb-zeitstrahl__text a:hover { color: var(--sb-primary); }

.sb-zeitstrahl__thema {
	display: block;
	font-size: 0.9em;
	color: var(--sb-muted);
	line-height: 1.45;
}

/* ---------------------------------------------------------------- Symbole */

.sb-symbol {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	margin: 0 0 16px;
	border-radius: 14px;
	color: #fff;
	background: linear-gradient(150deg, var(--sb-primary), var(--sb-akzent));
	box-shadow: 0 8px 20px rgba(220, 0, 106, 0.22);
}

.sb-symbol svg {
	width: 25px;
	height: 25px;
}

/* -------------------------------------------------------------- Formate */

.sb-formate {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 18px;
}

.sb-format {
	border: 1px solid var(--sb-border);
	border-radius: var(--sb-radius);
	padding: 24px 22px;
	background: #fff;
	position: relative;
	overflow: hidden;
}

.sb-format::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--sb-primary), var(--sb-akzent));
}

.sb-format__nr {
	margin: 0 0 8px;
	font-size: 0.74em;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sb-akzent);
}

.sb-format h3 {
	margin: 0 0 10px;
	font-size: 1.08em;
	line-height: 1.3;
}

.sb-format p {
	margin: 0 0 10px;
	font-size: 0.95em;
	line-height: 1.55;
	color: var(--sb-muted);
}

.sb-format__links {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.sb-format__link {
	font-weight: 600;
	color: var(--sb-primary);
	text-decoration: none;
}

.sb-format__link:hover { text-decoration: underline; }

/* ------------------------------------------------------------------- Abo */

.sb-abo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border-radius: var(--sb-radius);
	background: var(--sb-soft);
	border: 1px solid var(--sb-border);
	padding: 22px 26px;
}

.sb-abo__titel {
	margin: 0;
	font-size: 1.1em;
	font-weight: 600;
}

.sb-abo .sb-aktionen { margin: 0; }

.sb-zurueck {
	margin: 0;
}

.sb-zurueck a {
	color: var(--sb-muted);
	text-decoration: none;
}

.sb-zurueck a:hover { color: var(--sb-primary); }

@media (max-width: 560px) {
	.sb-kopf { padding: 22px 20px; }
	.sb-karte { flex-direction: column; gap: 14px; }
	.sb-karte__datum { align-self: flex-start; }
	.sb-programm li { flex-direction: column; gap: 4px; }
	.sb-programm__zeit { flex-basis: auto; }
}

/* -------------------------------------------------------------- Störer */

.sb-stoerer {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 26px;
	border-radius: var(--sb-radius);
	padding: 26px 32px;
	color: #fff;
	background:
		radial-gradient(120% 150% at 92% 0%, rgba(220, 0, 106, 0.42) 0%, rgba(220, 0, 106, 0) 60%),
		radial-gradient(110% 140% at 2% 100%, rgba(248, 122, 32, 0.30) 0%, rgba(248, 122, 32, 0) 58%),
		var(--sb-dunkel);
	box-shadow: 0 16px 40px rgba(43, 35, 48, 0.18);
}

.sb-stoerer::after {
	content: "";
	position: absolute;
	right: -40px;
	bottom: -70px;
	width: 260px;
	height: 200px;
	opacity: 0.07;
	pointer-events: none;
	background: url("../bilder/marke.svg") no-repeat center / contain;
}

.sb-stoerer > * {
	position: relative;
	z-index: 1;
}

/* Das Datum sitzt leicht schief – das macht aus dem Kasten einen Störer. */
.sb-stoerer__datum {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 86px;
	height: 86px;
	border-radius: 16px;
	background: linear-gradient(150deg, var(--sb-primary), var(--sb-akzent));
	box-shadow: 0 12px 26px rgba(220, 0, 106, 0.32);
	transform: rotate(-4deg);
	line-height: 1.05;
}

.sb-stoerer__tag {
	font-size: 2.1em;
	font-weight: 700;
}

.sb-stoerer__monat {
	font-size: 0.78em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.sb-stoerer__text {
	flex: 1 1 auto;
	min-width: 0;
}

.sb-stoerer .sb-kicker {
	color: #fff;
	margin: 0 0 6px;
}

.sb-stoerer__titel {
	margin: 0 0 4px;
	font-size: 1.35em;
	font-weight: 700;
	line-height: 1.22;
	overflow-wrap: break-word;
	hyphens: auto;
}

.sb-stoerer__titel a {
	color: #fff;
	text-decoration: none;
}

.sb-stoerer__titel a:hover { text-decoration: underline; }

.sb-stoerer__thema {
	margin: 0 0 6px;
	font-size: 1em;
	line-height: 1.45;
	color: #d8d2de;
}

.sb-stoerer__zeile {
	margin: 0;
	font-size: 0.92em;
	font-weight: 600;
	color: var(--sb-akzent);
}

.sb-stoerer__aktion {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
	text-align: center;
}

.sb-stoerer__mehr {
	font-size: 0.9em;
	font-weight: 600;
	color: #fff;
	opacity: 0.8;
	text-decoration: none;
}

.sb-stoerer__mehr:hover { opacity: 1; color: #fff; text-decoration: underline; }

@media (max-width: 860px) {
	.sb-stoerer {
		flex-wrap: wrap;
		gap: 18px;
		padding: 24px 22px;
	}

	.sb-stoerer__aktion {
		width: 100%;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
	}
}

/* Schwebende Fassung – klebt unten rechts und lässt sich wegklicken. */
.sb-stoerer--schwebend {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 9990;
	max-width: 380px;
	flex-wrap: wrap;
	padding: 22px 24px;
	gap: 16px;
	animation: sb-rein 0.45s ease both;
}

@keyframes sb-rein {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
	.sb-stoerer--schwebend { animation: none; }
}

.sb-stoerer--schwebend .sb-stoerer__datum {
	width: 62px;
	height: 62px;
}

.sb-stoerer--schwebend .sb-stoerer__tag { font-size: 1.5em; }
.sb-stoerer--schwebend .sb-stoerer__titel { font-size: 1.1em; }
.sb-stoerer--schwebend .sb-stoerer__thema { display: none; }

.sb-stoerer--schwebend .sb-stoerer__aktion {
	width: 100%;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.sb-stoerer__zu {
	position: absolute;
	top: 6px;
	right: 10px;
	z-index: 2;
	border: 0;
	background: transparent;
	color: #fff;
	opacity: 0.6;
	font-size: 1.6em;
	line-height: 1;
	padding: 4px 8px;
	cursor: pointer;
}

.sb-stoerer__zu:hover { opacity: 1; }

@media (max-width: 620px) {
	.sb-stoerer--schwebend {
		right: 12px;
		left: 12px;
		bottom: 12px;
		max-width: none;
	}
}

/* ------------------------------------------------- Reichweite und Kanäle */

.sb-reichweite {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
	gap: 20px;
	margin: 0 0 26px;
}

.sb-phase {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--sb-border);
	border-radius: var(--sb-radius);
	background: #fff;
	padding: 28px 26px;
}

.sb-phase::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--sb-primary), var(--sb-akzent));
}

/* Die Ziffer als große, blasse Zahl im Hintergrund – ordnet, ohne zu lärmen. */
.sb-phase__nr {
	position: absolute;
	right: 16px;
	top: 6px;
	font-size: 5.4em;
	font-weight: 700;
	line-height: 1;
	color: var(--sb-dunkel);
	opacity: 0.06;
	pointer-events: none;
}

.sb-phase .sb-symbol {
	margin: 0 0 14px;
}

.sb-phase__stufe {
	margin: 0 0 4px;
	font-size: 0.74em;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sb-akzent);
}

.sb-phase__titel {
	margin: 0 0 14px;
	font-size: 1.14em;
	line-height: 1.3;
}

.sb-phase__liste {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sb-phase__liste li {
	position: relative;
	margin: 0 0 10px;
	padding: 0 0 0 24px;
	font-size: 0.95em;
	line-height: 1.55;
	color: var(--sb-muted);
}

.sb-phase__liste li:last-child { margin-bottom: 0; }

.sb-phase__liste li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 0.55em;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: linear-gradient(150deg, var(--sb-primary), var(--sb-akzent));
}

/* ------------------------------------------------------------- Kanäle */

.sb-kanaele {
	border-radius: var(--sb-radius);
	padding: 30px 32px;
	text-align: center;
	color: #fff;
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(120% 150% at 88% 0%, rgba(220, 0, 106, 0.38) 0%, rgba(220, 0, 106, 0) 60%),
		radial-gradient(110% 140% at 6% 100%, rgba(248, 122, 32, 0.28) 0%, rgba(248, 122, 32, 0) 58%),
		var(--sb-dunkel);
}

.sb-kanaele__titel {
	margin: 0 0 22px;
	font-size: 0.78em;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
	opacity: 0.75;
}

.sb-kanaele__liste {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px 30px;
	margin: 0 0 22px;
	padding: 0;
}

.sb-kanaele__liste li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	min-width: 74px;
}

.sb-kanal {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.16);
	color: #fff;
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.sb-kanaele__liste li:hover .sb-kanal {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.sb-kanal svg {
	width: 25px;
	height: 25px;
}

.sb-kanal__name {
	font-size: 0.78em;
	font-weight: 600;
	color: #d8d2de;
}

.sb-kanaele__fuss {
	margin: 0;
	font-size: 1.05em;
	font-weight: 600;
	color: #fff;
}

@media (max-width: 560px) {
	.sb-phase { padding: 24px 20px; }
	.sb-kanaele { padding: 26px 18px; }
	.sb-kanaele__liste { gap: 14px 18px; }
	.sb-kanal { width: 46px; height: 46px; }
}

/* Kanal ohne hinterlegte Adresse: sichtbar, aber erkennbar ohne Ziel. */
.sb-kanal--ohne {
	opacity: 0.55;
	cursor: default;
}

.sb-wrap a.sb-kanal {
	text-decoration: none !important;
	color: #fff !important;
}

.sb-wrap a.sb-kanal:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}
