/*
Theme Name: shivaspirit.tv - 2026
Theme URI: https://shivaspirit.tv/
Author: Lucas Steinmann
Author URI: https://eternagroup.me/
Description: shivaspirit.tv - Neues Theme für 2026
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: custom-theme
*/

:root {
	color-scheme: light;

	/* ——— Shiva Spirit · Farben (Figma) ——— */
	--gold-2: #fcf8ef;
	--gold-3: #ede3c8;
	--gold-1: #cbbd96;
	--gold-dark: #c3b37e;

	--violett-4: #d7acde;
	--violett-3: #89628f;
	--violett-1: #59375e;
	--violett-main: #432048;
	--violett-gradient-dark: #451950;
	--violett-dark-2: #200c23;
	--violett-dark: #1c1623;

	--gradient-violett: linear-gradient(90deg, var(--violett-dark) 0%, var(--violett-gradient-dark) 100%);
	--gradient-button: linear-gradient(90deg, var(--gold-1) 0%, var(--gold-3) 100%);

	/* ——— Shiva Spirit · Typografie (Figma, Desktop-Referenz) ——— */
	/*
	 * Figma → Web (semantisch):
	 *   h1 bold/light (88/96)     → h1  (einmal pro Seite: Hero)
	 *   h2 light (86/97)          → optional .type-hero-alt
	 *   h3.1 (57/65)              → h2  (Sektionsüberschriften; in Figma fälschlich h1)
	 *   h3 light/semibold (44/58) → h3
	 *   h4 semibold (44)          → h4
	 *   h5 (36)                   → h5
	 *   TxT / TxT semibold (20/27)→ body
	 *   small (14)                → small, .text-small
	 */
	--font-sans: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
	--font-serif: ui-serif, Georgia, "Times New Roman", "Droid Serif", serif;

	--font-weight-light: 300;
	--font-weight-regular: 400;
	--font-weight-semibold: 600;
	--font-weight-bold: 700;

	/* Fluide Größen (max. = Figma-Desktop) */
	--font-size-h1: clamp(2.5rem, 4.5vw + 1.25rem, 5.5rem);
	--line-height-h1: 1.09;

	--font-size-h2: clamp(1.85rem, 2.8vw + 0.85rem, 3.5625rem);
	--line-height-h2: 1.14;

	--font-size-h3: clamp(1.5rem, 1.6vw + 0.75rem, 2.75rem);
	--line-height-h3: 1.32;

	--font-size-h4: clamp(1.35rem, 1.2vw + 0.7rem, 2.75rem);
	--line-height-h4: 1.25;

	--font-size-h5: clamp(1.25rem, 0.8vw + 0.85rem, 2.25rem);
	--line-height-h5: 1.2;

	--font-size-body: clamp(1rem, 0.25vw + 0.95rem, 1.25rem);
	--line-height-body: 1.35;

	--font-size-small: 0.875rem;
	--line-height-small: 1.4;

	--font-size-hero-alt: clamp(2.45rem, 4.4vw + 1.2rem, 5.375rem);
	--line-height-hero-alt: 1.13;

	/* ——— Semantische UI-Farben (auf Brand-Tokens) ——— */
	--color-text: var(--violett-dark-2);
	--color-text-muted: var(--violett-3);
	--color-bg: var(--gold-2);
	--color-surface: #ffffff;
	--color-accent: var(--violett-main);
	--color-accent-hover: var(--violett-1);
	--color-border: rgba(28, 22, 35, 0.1);

	--content-max: 100%;
	--space: 1rem;
	--space-lg: clamp(1.5rem, 4vw, 2.5rem);
	--radius: 12px;
	--radius-sm: 8px;
	--shadow-sm: 0 1px 2px rgba(28, 22, 35, 0.08);
	--shadow-md: 0 4px 24px rgba(28, 22, 35, 0.12);
	--header-blur: 12px;

	/* Legacy-Aliase (bestehende Komponenten) */
	--header-purple: var(--violett-main);
	--header-purple-deep: var(--violett-dark-2);
	--header-gold: var(--gold-1);
	--header-gold-bright: var(--gold-3);

	/* Höhe Ankündigung + Nav für Überlappung mit Hero (Feintuning möglich) */
	--header-overlap: clamp(5.75rem, 15vw, 8.25rem);
}

@media (prefers-color-scheme: dark) {
	:root {
		color-scheme: dark;
		--color-text: #e8eaed;
		--color-text-muted: #94a3b8;
		--color-bg: #0f1419;
		--color-surface: #1a222c;
		--color-accent: #7c9eff;
		--color-accent-hover: #a8c0ff;
		--color-border: rgba(255, 255, 255, 0.1);
		--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
		--shadow-md: 0 8px 32px rgba(0, 0, 0, 0.45);
	}
}

/*
 * Optional: manueller Dark-Mode (data-theme auf <html>)
 *
 * :root[data-theme="dark"] { … }
 * :root[data-theme="light"] { … }
 */

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

html {
	scroll-behavior: smooth;
}

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

/* Semantische Überschriften (Figma-Look, korrekte HTML-Hierarchie) */
h1,
.h1 {
	margin: 0 0 0.5em;
	font-family: var(--font-sans);
	font-size: var(--font-size-h1);
	line-height: var(--line-height-h1);
	font-weight: var(--font-weight-bold);
	letter-spacing: -0.02em;
	color: inherit;
}

h2,
.h2 {
	margin: 0 0 0.45em;
	font-family: var(--font-sans);
	font-size: var(--font-size-h2);
	line-height: var(--line-height-h2);
	font-weight: var(--font-weight-light);
	letter-spacing: -0.02em;
	color: inherit;
}

h3,
.h3 {
	margin: 0 0 0.4em;
	font-family: var(--font-sans);
	font-size: var(--font-size-h3);
	line-height: var(--line-height-h3);
	font-weight: var(--font-weight-light);
	letter-spacing: -0.015em;
	color: inherit;
}

h4,
.h4 {
	margin: 0 0 0.35em;
	font-family: var(--font-sans);
	font-size: var(--font-size-h4);
	line-height: var(--line-height-h4);
	font-weight: var(--font-weight-semibold);
	letter-spacing: -0.01em;
	color: inherit;
}

h5,
.h5 {
	margin: 0 0 0.35em;
	font-family: var(--font-sans);
	font-size: var(--font-size-h5);
	line-height: var(--line-height-h5);
	font-weight: var(--font-weight-regular);
	color: inherit;
}

h6,
.h6 {
	margin: 0 0 0.3em;
	font-family: var(--font-sans);
	font-size: var(--font-size-body);
	line-height: var(--line-height-body);
	font-weight: var(--font-weight-semibold);
	color: inherit;
}

small,
.text-small {
	font-size: var(--font-size-small);
	line-height: var(--line-height-small);
}

/* Gewichts-Modifier (z. B. Strong/Light in Sektionstiteln) */
.font-light {
	font-weight: var(--font-weight-light);
}

.font-regular {
	font-weight: var(--font-weight-regular);
}

.font-semibold {
	font-weight: var(--font-weight-semibold);
}

.font-bold {
	font-weight: var(--font-weight-bold);
}

/* Figma „h1 light“ als zweite Hero-Variante – nur visuell, weiterhin ein h1 nutzen */
.type-hero-alt {
	font-size: var(--font-size-hero-alt);
	line-height: var(--line-height-hero-alt);
	font-weight: var(--font-weight-light);
}

a {
	color: var(--color-accent);
	text-decoration: none;
	transition: color 0.15s ease, opacity 0.15s ease;
}

a:hover {
	color: var(--color-accent-hover);
}
.section-inner {
	margin-left: auto;
    margin-right: auto;
    max-width: 165rem;
    width: calc(100% - 5rem);
}
@media (min-width: 700px) {
    .section-inner {
        width: calc(100% - 8rem);
    }
}

.skip-link.screen-reader-text:focus {
	clip: auto !important;
	height: auto;
	width: auto;
	position: fixed;
	left: var(--space);
	top: var(--space);
	z-index: 100001;
	padding: 0.65rem 1rem;
	background: var(--color-surface);
	color: var(--color-text);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-md);
	border: 1px solid var(--color-border);
}

.site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	/* Adjust the margin-top to the height of the header */
	margin-top: -100px;
}

/* ——— Header (Ankündigung + shiva spirit Hauptleiste) ——— */
.site-header-wrap {
	position: sticky;
	top: 0;
	z-index: 1000;
}

body.admin-bar .site-header-wrap {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .site-header-wrap {
		top: 46px;
	}
}

/* Obere Leiste */
.announcement-bar {
	background: var(--header-gold);
	color: #fff;
	text-align: center;
	overflow: hidden;
}

.announcement-bar__inner {
	max-width: var(--content-max);
	margin-inline: auto;
	padding: 0.45rem var(--space-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	/* etwas engerer Abstand zwischen Auge und Text */
	gap: 0.3rem 0.5rem;
	flex-wrap: wrap;
}

.announcement-bar__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/* leicht größeres Auge im Intro */
	width: 1.3rem;
	height: 1.3rem;
	flex-shrink: 0;
	color: #fff;
}

.announcement-bar__icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.announcement-bar__text {
	margin: 0;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.3;
	text-transform: uppercase;
}

/* Hauptnavigation: transparent mit Verlauf nach unten (verschmilzt mit Hero) */
.site-header--main {
	position: relative;
	color: #fff;
	background: transparent;
	border-bottom: none;
	box-shadow: none;
	overflow: visible;
}

.site-header__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	/* etwas über die Leiste hinaus = weicher Übergang ins Hero */
	height: calc(100% + 4.5rem);
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 95% 90% at 50% 0%, rgba(100, 65, 135, 0.38) 0%, transparent 58%),
		radial-gradient(ellipse 70% 100% at 12% 40%, rgba(80, 50, 110, 0.22) 0%, transparent 50%),
		linear-gradient(
			to bottom,
			rgba(58, 38, 70, 0.92) 0%,
			rgba(58, 38, 70, 0.72) 28%,
			rgba(58, 38, 70, 0.38) 55%,
			rgba(58, 38, 70, 0.12) 78%,
			transparent 100%
		);
}

.site-header__inner {
	position: relative;
	z-index: 1;
	max-width: var(--content-max);
	margin-inline: auto;
	padding: 0.85rem var(--space-lg);
	display: grid;
	grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
	align-items: center;
	gap: 1rem 1.5rem;
}

.site-header--main .site-branding {
	flex-direction: row;
	align-items: center;
}

.site-header--main .site-branding {
	min-width: 0;
}

.site-header--main .custom-logo-link,
.site-header--main .site-logo {
	display: block;
	line-height: 0;
	text-decoration: none;
}

.site-header--main .custom-logo-link img,
.site-header--main .site-logo img,
.site-header--main .site-logo__svg {
	display: block;
	height: 2.5rem;
	width: auto;
	max-width: min(16rem, 42vw);
}

.site-footer__brand-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

/* Fallback, falls kein Logo: Wordmark */
.site-title--wordmark {
	font-family: ui-serif, Georgia, "Times New Roman", serif;
	font-size: clamp(1.05rem, 2.4vw, 1.35rem);
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: lowercase;
	color: #fff;
	text-decoration: none;
}

.site-title--wordmark:hover {
	color: var(--header-gold-bright);
}

.site-header--main .main-navigation {
	justify-self: center;
}

.site-header--main .main-navigation .menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.15rem 0.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-header--main .main-navigation .menu a {
	display: block;
	padding: 0.5rem 0.85rem;
	border-radius: 6px;
	font-size: 0.9375rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.95);
	text-decoration: none;
}

.site-header--main .main-navigation .menu a:hover,
.site-header--main .main-navigation .menu .current-menu-item > a {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

.site-header__actions {
	justify-self: end;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.5rem 0.75rem;
}

.site-header__link-login {
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.92);
	padding: 0.35rem 0.25rem;
	text-decoration: none;
}

.site-header__link-login:hover {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.site-header__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1rem;
	min-height: 2.45rem;
	border-radius: 999px;
	font-size: 0.8125rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-header__btn--register {
	background: rgba(0, 0, 0, 0.12);
	color: var(--header-gold-bright);
	border: 1px solid rgba(255, 255, 255, 0.45);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.site-header__btn--register:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.75);
}

.site-header__btn--stream {
	background: var(--gradient-button);
	color: var(--header-purple-deep);
	border: 1px solid transparent;
}

.site-header__btn--stream:hover {
	background: var(--header-gold-bright);
	color: var(--header-purple-deep);
}

.site-header__user-menu {
	position: relative;
}

.site-header__user-toggle::after {
	content: "▾";
	margin-left: 0.45rem;
	font-size: 0.75rem;
}

.site-header__user-dropdown {
	position: absolute;
	top: calc(100% + 0.45rem);
	right: 0;
	min-width: 11rem;
	padding: 0.4rem;
	border-radius: var(--radius-sm);
	background: rgba(42, 29, 66, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: var(--shadow-md);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	z-index: 10;
}

.site-header__user-menu:hover .site-header__user-dropdown,
.site-header__user-menu:focus-within .site-header__user-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.site-header__user-menu:hover .site-header__user-toggle,
.site-header__user-menu:focus-within .site-header__user-toggle {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.75);
	background: rgba(255, 255, 255, 0.12);
}

.site-header__user-item {
	display: block;
	padding: 0.5rem 0.6rem;
	border-radius: 0.45rem;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--header-gold-bright);
	text-decoration: none;
}

.site-header__user-item:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

@media (max-width: 1024px) {
	.site-header__inner {
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto;
	}

	.site-header--main .site-branding {
		grid-column: 1;
		grid-row: 1;
	}

	.site-header__actions {
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
	}

	.site-header--main .main-navigation {
		grid-column: 1 / -1;
		grid-row: 2;
		justify-self: stretch;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		padding-top: 0.65rem;
	}

	.site-header--main .main-navigation .menu {
		justify-content: flex-start;
	}
}

@media (max-width: 600px) {
	.site-header__actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		max-width: 12rem;
	}

	.site-header__btn {
		width: 100%;
	}
}

/* ——— Sticky Button Berater ——— */
.sticky-button-berater {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1000;
}

.sticky-button-berater__button {
	background: var(--header-gold);
	color: var(--header-purple-deep);
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 0.5rem 1rem;
	font-size: 0.8125rem;
	font-weight: 600;
}
/* ——— Main ——— */
.site-main {
	flex: 1;
	width: min(100%, var(--content-max));
	margin-inline: auto;
	overflow-x: hidden;
}

/* Hero: bündig unter transparentem Header, Bild bis oben, volle Viewport-Breite */
main.site-main > .c2a-hero:first-of-type {
	position: relative;
	z-index: 0;
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-top: calc(-1 * var(--header-overlap));
	padding-top: var(--header-overlap);
	padding-bottom: clamp(3rem, 8vw, 5rem);
	min-height: min(88vh, 920px);
	background-color: #c9b896;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	display: flex;
	align-items: stretch;
}

main.site-main > .c2a-hero:first-of-type .section-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--content-max);
	margin-inline: auto;
	padding-inline: var(--space-lg);
	display: flex;
	align-items: center;
	min-height: inherit;
}

main.site-main > .c2a-hero:first-of-type .c2a-hero-content {
	max-width: min(100%, 34rem);
}

main.site-main > .c2a-hero:first-of-type .c2a-hero-content h1 {
	margin: 0 0 1.25rem;
	color: #fff;
	text-shadow: 0 2px 28px rgba(0, 0, 0, 0.25);
}

main.site-main > .c2a-hero:first-of-type .c2a-hero-content .btn.btn-primary {
	background: var(--header-gold);
	color: var(--header-purple-deep);
	border: none;
	border-radius: 999px;
	padding: 0.55rem 1.25rem;
	font-weight: 600;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

main.site-main > .c2a-hero:first-of-type .c2a-hero-content .btn.btn-primary:hover {
	background: var(--header-gold-bright);
	color: var(--header-purple-deep);
}

/* leichter Verlauf über dem Hero-Bild unten (optional weicher Übergang zum Rest) */
main.site-main > .c2a-hero:first-of-type::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(
		to bottom,
		transparent 0%,
		transparent 55%,
		rgba(0, 0, 0, 0.08) 100%
	);
}

/* ——— Block „Warum shivaspirit?“ (Info-Slider, ACF Options) ——— */
.warum-shivaspirit {
	--warum-bg: var(--gold-2);
	--warum-purple: var(--violett-main);
	--warum-text: var(--violett-dark-2);
	--warum-arrow: var(--gold-dark);
	--warum-arrow-hover: var(--gold-1);

	background: var(--warum-bg);
	color: var(--warum-text);
	padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.warum-shivaspirit__viewport {
	position: relative;
}

.warum-shivaspirit__slide {
	margin: 0;
}

.warum-shivaspirit__slide[hidden] {
	display: none !important;
}

.warum-shivaspirit__slide:not([hidden]) {
	display: block;
	animation: warum-shivaspirit-fade 0.4s ease;
}

@keyframes warum-shivaspirit-fade {
	from {
		opacity: 0.35;
	}
	to {
		opacity: 1;
	}
}

.warum-shivaspirit__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.75rem, 4vw, 3rem);
	align-items: center;
}

@media (min-width: 900px) {
	.warum-shivaspirit__grid {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
		gap: clamp(2rem, 5vw, 4rem);
	}
}

.warum-shivaspirit__media {
	border-radius: 18px;
	overflow: hidden;
	line-height: 0;
	box-shadow: 0 12px 40px rgba(61, 42, 92, 0.12);
}

.warum-shivaspirit__img {
	display: block;
	width: 100%;
	height: auto;
	max-height: min(70vh, 520px);
	object-fit: cover;
}

.warum-shivaspirit__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.25rem;
}

.warum-shivaspirit__title {
	color: var(--warum-purple);
}

.warum-shivaspirit__title-strong {
	font-weight: var(--font-weight-bold);
}

.warum-shivaspirit__title-light {
	font-weight: var(--font-weight-light);
}

.warum-shivaspirit__text {
	font-size: clamp(1rem, 2.2vw, 1.125rem);
	line-height: 1.65;
	color: var(--warum-text);
	max-width: 36rem;
}

.warum-shivaspirit__text > *:first-child {
	margin-top: 0;
}

.warum-shivaspirit__text > *:last-child {
	margin-bottom: 0;
}

.warum-shivaspirit__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	align-items: center;
}

.warum-shivaspirit__arrow {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	border: none;
	background: var(--warum-arrow);
	color: #fff;
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, transform 0.15s ease;
}
.warum-shivaspirit__arrow.arrow-left {
	opacity: 0.5;
}

.warum-shivaspirit__arrow:hover {
	background: var(--warum-arrow-hover);
}

.warum-shivaspirit__arrow:focus-visible {
	outline: 2px solid var(--warum-purple);
	outline-offset: 3px;
}

.warum-shivaspirit__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 22rem;
	padding: 0.85rem 1.5rem;
	border-radius: 999px;
	background: var(--warum-purple);
	color: #fff;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	text-align: center;
	transition: background 0.2s ease, transform 0.15s ease;
}

.warum-shivaspirit__cta:hover {
	background: #2f2045;
	color: #fff;
}

/* ——— Block „Für wen ist shivaspirit?“ (ACF Options) ——— */
.fuer-wen-shivaspirit {
	--fuer-wen-bg: var(--gold-2);
	--fuer-wen-purple: var(--violett-main);
	--fuer-wen-text: var(--violett-dark-2);
	--fuer-wen-arrow: var(--gold-3);
	--fuer-wen-arrow-hover: var(--gold-1);

	background: var(--fuer-wen-bg);
	padding: clamp(3rem, 7vw, 5rem) 0;
}

.fuer-wen-shivaspirit__inner {
	max-width: 66rem;
}

.fuer-wen-shivaspirit__header {
	text-align: center;
	margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.fuer-wen-shivaspirit__title {
	color: var(--fuer-wen-purple);
}

.fuer-wen-shivaspirit__title-strong {
	font-weight: var(--font-weight-bold);
}

.fuer-wen-shivaspirit__title-light {
	font-weight: var(--font-weight-light);
}

.fuer-wen-shivaspirit__viewport {
	position: relative;
}

.fuer-wen-shivaspirit__slide {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0;
}

.fuer-wen-shivaspirit__slide[hidden] {
	display: none !important;
}

.fuer-wen-shivaspirit__slide:not([hidden]) {
	animation: fuer-wen-fade 0.35s ease;
}

@keyframes fuer-wen-fade {
	from {
		opacity: 0.35;
	}
	to {
		opacity: 1;
	}
}

.fuer-wen-shivaspirit__media-wrap {
	position: relative;
	width: min(100%, 34rem);
}

.fuer-wen-shivaspirit__image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 14px;
	box-shadow: 0 12px 30px rgba(61, 42, 92, 0.14);
}

.fuer-wen-shivaspirit__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2.5rem;
	height: 2.5rem;
	border: none;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background: var(--fuer-wen-arrow);
	color: #fff;
	font-size: 1rem;
	line-height: 1;
	transition: background 0.2s ease, transform 0.15s ease;
}

.fuer-wen-shivaspirit__arrow--prev {
	left: -3.5rem;
	opacity: 0.65;
}

.fuer-wen-shivaspirit__arrow--next {
	right: -3.5rem;
}

.fuer-wen-shivaspirit__arrow:hover {
	background: var(--fuer-wen-arrow-hover);
}

.fuer-wen-shivaspirit__arrow:focus-visible {
	outline: 2px solid var(--fuer-wen-purple);
	outline-offset: 2px;
}

.fuer-wen-shivaspirit__text {
	margin: clamp(1.4rem, 3vw, 2rem) 0 0;
	max-width: 40rem;
	text-align: center;
	font-size: clamp(1.55rem, 3.3vw, 2.2rem);
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--fuer-wen-text);
}

.fuer-wen-shivaspirit__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: clamp(1.2rem, 2.5vw, 1.65rem);
	min-width: 13rem;
	padding: 0.75rem 1.4rem;
	border-radius: 0.5rem;
	background: var(--fuer-wen-purple);
	color: #fff;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.15s ease;
}

.fuer-wen-shivaspirit__cta:hover {
	background: #2f2045;
	color: #fff;
}

@media (max-width: 900px) {
	.fuer-wen-shivaspirit__arrow--prev {
		left: 0.7rem;
	}

	.fuer-wen-shivaspirit__arrow--next {
		right: 0.7rem;
	}
}

@media (max-width: 640px) {
	.fuer-wen-shivaspirit__text {
		font-size: clamp(1.2rem, 5.2vw, 1.6rem);
		line-height: 1.35;
	}
}

/* ——— Block „Wie läuft eine Sitzung ab?“ (ACF Options) ——— */
.wie-lauft-sitzung {
	--wie-bg: var(--gold-2);
	--wie-purple: var(--violett-main);
	--wie-text: var(--violett-dark-2);
	--wie-arrow: var(--violett-3);
	--wie-arrow-hover: var(--violett-1);

	background: var(--wie-bg);
}

.wie-lauft-sitzung__slide {
	display: grid;
	grid-template-columns: 1fr;
	min-height: min(78vh, 760px);
}

.wie-lauft-sitzung__slide[hidden] {
	display: none !important;
}

@media (min-width: 980px) {
	.wie-lauft-sitzung__slide {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}
}

.wie-lauft-sitzung__content {
	padding: clamp(2rem, 6vw, 6rem) clamp(1.5rem, 5vw, 6rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.wie-lauft-sitzung__title {
	color: var(--wie-purple);
	max-width: 30rem;
}

.wie-lauft-sitzung__title-strong {
	font-weight: var(--font-weight-bold);
}

.wie-lauft-sitzung__title-light {
	font-weight: var(--font-weight-light);
}

.wie-lauft-sitzung__subtitle {
	margin: clamp(1.1rem, 2.4vw, 1.75rem) 0 0;
	color: var(--violett-1);
}

.wie-lauft-sitzung__text {
	margin: clamp(0.4rem, 1.5vw, 0.75rem) 0 0;
	max-width: 26rem;
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	line-height: 1.45;
	font-weight: 600;
	color: var(--wie-text);
}

.wie-lauft-sitzung__nav {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-top: clamp(1.4rem, 3vw, 2rem);
}

.wie-lauft-sitzung__arrow {
	width: 2.55rem;
	height: 2.55rem;
	border: none;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--wie-arrow);
	color: #fff;
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease;
}

.wie-lauft-sitzung__arrow:hover {
	background: var(--wie-arrow-hover);
}

.wie-lauft-sitzung__arrow:focus-visible {
	outline: 2px solid var(--wie-purple);
	outline-offset: 2px;
}

.wie-lauft-sitzung__arrow--next {
	opacity: 0.7;
}

.wie-lauft-sitzung__media {
	min-height: 16rem;
}

.wie-lauft-sitzung__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: min(78vh, 760px);
	object-fit: cover;
}

/* ——— Block „Unsere Vorteile“ (ACF Options) ——— */
.unsere-vorteile {
	--vorteile-bg: var(--gold-2);
	--vorteile-purple: var(--violett-main);
	--vorteile-card: var(--gold-3);

	background: var(--vorteile-bg);
	padding: clamp(3rem, 7vw, 5rem) 0;
}

.unsere-vorteile__inner {
	max-width: 78rem;
}

.unsere-vorteile__header {
	text-align: center;
	margin-bottom: clamp(1.8rem, 4vw, 2.5rem);
}

.unsere-vorteile__title {
	color: var(--vorteile-purple);
}

.unsere-vorteile__title-light {
	font-weight: var(--font-weight-light);
}

.unsere-vorteile__title-strong {
	font-weight: var(--font-weight-bold);
}

.unsere-vorteile__slide[hidden] {
	display: none !important;
}

.unsere-vorteile__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 1rem;
}

@media (min-width: 640px) {
	.unsere-vorteile__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1040px) {
	.unsere-vorteile__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 0.95rem;
	}
}

.unsere-vorteile__card {
	background: var(--vorteile-card);
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.unsere-vorteile__card-media {
	line-height: 0;
}

.unsere-vorteile__card-image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 2.35;
	object-fit: cover;
}

.unsere-vorteile__card-body {
	padding: 1.05rem 0.95rem 1.2rem;
	text-align: center;
	color: var(--vorteile-purple);
}

.unsere-vorteile__card-title {
	color: var(--vorteile-purple);
}

.unsere-vorteile__card-text {
	margin: 0.5rem 0 0;
	font-size: clamp(0.95rem, 1.2vw, 1.1rem);
	line-height: 1.35;
	font-weight: 600;
	color: #3f3a43;
}

.unsere-vorteile__nav {
	display: flex;
	justify-content: center;
	gap: 0.55rem;
	margin-top: 1.1rem;
}

.unsere-vorteile__arrow {
	width: 2.4rem;
	height: 2.4rem;
	border: none;
	border-radius: 50%;
	background: #7f6095;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.unsere-vorteile__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: clamp(1.5rem, 3vw, 2rem) auto 0;
	min-width: 13rem;
	padding: 0.75rem 1.35rem;
	border-radius: 0.55rem;
	background: var(--vorteile-purple);
	color: #fff;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
}

.unsere-vorteile__cta:hover {
	background: #2f2045;
	color: #fff;
}

/* ——— Block „Banner Claim“ (ACF Options) ——— */
main.site-main > .banner-claim-home {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
}

.banner-claim-home {
	position: relative;
	overflow: hidden;
	min-height: clamp(20rem, 44vw, 28rem);
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner-claim-home__bg {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 0;
}

.banner-claim-home__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(12, 12, 18, 0.38);
}

.banner-claim-home--no-image .banner-claim-home__overlay {
	background: var(--gradient-violett);
}

.banner-claim-home__inner {
	position: relative;
	z-index: 2;
	text-align: center;
}

.banner-claim-home__title {
	max-width: 18ch;
	margin-inline: auto;
	color: #fff;
	font-weight: var(--font-weight-bold);
	text-wrap: balance;
	text-shadow: 0 3px 26px rgba(0, 0, 0, 0.35);
}

/* ——— Block „Berater Kategorien Banner“ (ohne ACF) ——— */
main.site-main > .berater-kategorien-banner {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
}

.berater-kategorien-banner {
	--bk-purple-1: #1f1733;
	--bk-purple-2: #4c1f63;
	--bk-chip-start: #7f4d9c;
	--bk-chip-end: #4f2a73;
	--bk-cta: #d4c8a5;

	background: radial-gradient(120% 120% at 100% 100%, var(--bk-purple-2) 0%, var(--bk-purple-1) 62%);
	padding: clamp(3rem, 7vw, 5.2rem) 0;
}

.berater-kategorien-banner__inner {
	max-width: 66rem;
	text-align: center;
}

.berater-kategorien-banner__title {
	margin: 0;
	color: #fff;
	font-size: clamp(2rem, 5vw, 3.6rem);
	line-height: 1.14;
	letter-spacing: -0.02em;
	font-weight: 300;
}

.berater-kategorien-banner__title span {
	font-weight: 700;
}

.berater-kategorien-banner__chips {
	list-style: none;
	margin: clamp(1.4rem, 3vw, 2rem) 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.6rem 0.7rem;
}

.berater-kategorien-banner__chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.46rem 1rem;
	border-radius: 0.65rem;
	background: linear-gradient(180deg, var(--bk-chip-start) 0%, var(--bk-chip-end) 100%);
	color: #fff;
	font-size: clamp(0.95rem, 1.8vw, 1.55rem);
	line-height: 1.15;
	font-weight: 700;
	white-space: nowrap;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28) inset, 0 3px 10px rgba(0, 0, 0, 0.22);
}

.berater-kategorien-banner__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: clamp(1.8rem, 3.5vw, 2.3rem);
	min-width: 11rem;
	padding: 0.78rem 1.35rem;
	border-radius: 0.55rem;
	background: var(--bk-cta);
	color: #2b2041;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.15s ease, background 0.2s ease;
}

.berater-kategorien-banner__cta:hover {
	background: #e0d4b1;
	color: #2b2041;
}

@media (max-width: 700px) {
	.berater-kategorien-banner__chip {
		font-size: 0.95rem;
	}
}

/* ——— Block „Testimonials“ (ACF Options) ——— */
main.site-main > .testimonials-home {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
}

.testimonials-home {
	--testi-bg: #f7f3e8;
	--testi-purple: #5a2f73;
	background: var(--testi-bg);
}

.testimonials-home__slide {
	display: grid;
	grid-template-columns: 1fr;
	min-height: clamp(24rem, 44vw, 32rem);
}

.testimonials-home__slide[hidden] {
	display: none !important;
}

@media (min-width: 980px) {
	.testimonials-home__slide {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}
}

.testimonials-home__media {
	position: relative;
	min-height: 20rem;
}

.testimonials-home__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: clamp(20rem, 44vw, 32rem);
	object-fit: cover;
}

.testimonials-home__media::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 42%;
	background: linear-gradient(to top, rgba(76, 41, 96, 0.72) 0%, rgba(76, 41, 96, 0) 100%);
}

.testimonials-home__name {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: clamp(1rem, 3vw, 2.1rem);
	margin: 0;
	z-index: 2;
	color: #fff;
	font-size: clamp(1.5rem, 3.1vw, 2.2rem);
	line-height: 1.08;
	font-weight: 400;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
	white-space: nowrap;
}

.testimonials-home__content {
	padding: clamp(1.6rem, 5vw, 3.4rem) clamp(1.4rem, 5vw, 3.4rem);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.testimonials-home__quote {
	margin: 0;
	color: #43384d;
	font-size: clamp(2rem, 4vw, 3.35rem);
	line-height: 1.12;
	font-weight: 350;
	letter-spacing: -0.01em;
}

.testimonials-home__quote::before,
.testimonials-home__quote::after {
	color: var(--testi-purple);
	font-weight: 600;
}

.testimonials-home__quote::before {
	content: "«";
	margin-right: 0.08em;
}

.testimonials-home__quote::after {
	content: "»";
	margin-left: 0.08em;
}

.testimonials-home__subtext {
	margin: clamp(1rem, 2vw, 1.45rem) 0 0;
	color: #4a3f54;
	font-size: clamp(0.92rem, 1.3vw, 1.05rem);
	font-weight: 700;
}

.testimonials-home__nav {
	display: flex;
	gap: 0.55rem;
	margin-top: auto;
	justify-content: flex-end;
	padding-top: clamp(1rem, 2vw, 1.7rem);
}

.testimonials-home__arrow {
	width: 2.65rem;
	height: 2.65rem;
	border: none;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--testi-purple);
	color: #fff;
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
}

.testimonials-home__arrow--next {
	opacity: 0.78;
}

@media (max-width: 979px) {
	.testimonials-home__name {
		left: clamp(1rem, 4vw, 1.8rem);
		transform: none;
		white-space: normal;
	}

	.testimonials-home__nav {
		justify-content: flex-start;
	}
}

/* ——— Block „Banner Bonus“ (ACF Options) ——— */
main.site-main > .banner-bonus {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
}

.banner-bonus {
	position: relative;
	overflow: hidden;
	min-height: clamp(20rem, 42vw, 31rem);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(4rem, 9vw, 7rem) 0;
}

.banner-bonus__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}

.banner-bonus__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(57, 36, 76, 0.5) 0%, rgba(37, 22, 54, 0.55) 100%);
}

.banner-bonus--no-image .banner-bonus__overlay {
	background: radial-gradient(120% 120% at 10% 0%, #6b4d85 0%, #2b1d40 70%);
}

.banner-bonus__inner {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 56rem;
}

.banner-bonus__title {
	margin: 0;
	color: #fff;
	font-size: clamp(2rem, 5.6vw, 4.6rem);
	line-height: 1.06;
	letter-spacing: -0.02em;
	font-weight: 700;
	text-wrap: balance;
}

.banner-bonus__text {
	margin: clamp(1rem, 2.6vw, 1.7rem) auto 0;
	max-width: 41rem;
	color: #fff;
	font-size: clamp(1rem, 2vw, 1.55rem);
	line-height: 1.3;
	font-weight: 600;
	text-wrap: balance;
}

.banner-bonus__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: clamp(1.2rem, 3vw, 2rem);
	min-width: 12rem;
	padding: 0.8rem 1.45rem;
	border-radius: 0.55rem;
	background: #d6c99f;
	color: #33234a;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
}

.banner-bonus__cta:hover {
	background: #e2d5af;
	color: #33234a;
}

/* ——— Block „Banner Kennzahlen“ (ACF Options) ——— */
main.site-main > .banner-kennzahlen {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
}

.banner-kennzahlen {
	position: relative;
	overflow: hidden;
	width: 100%;
	color: #fff;
	padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.banner-kennzahlen__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}

.banner-kennzahlen--no-image .banner-kennzahlen__overlay {
	background: linear-gradient(
		135deg,
		rgba(20, 28, 22, 0.96) 0%,
		rgba(12, 18, 14, 0.98) 45%,
		rgba(26, 36, 28, 0.95) 100%
	);
}

.banner-kennzahlen__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: rgba(12, 18, 14, 0.55);
}

.banner-kennzahlen__inner {
	position: relative;
	z-index: 2;
	max-width: var(--content-max);
	margin-inline: auto;
	padding-inline: var(--space-lg);
}

.banner-kennzahlen__stats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 5vw, 3rem);
	text-align: center;
	align-items: start;
}

@media (min-width: 560px) {
	.banner-kennzahlen__stats {
		grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
		gap: clamp(2rem, 6vw, 4rem);
	}
}

.banner-kennzahlen__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	max-width: 22rem;
	margin-inline: auto;
}

.banner-kennzahlen__value {
	font-family: var(--font-sans);
	font-size: clamp(2.25rem, 5.5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #fff;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.banner-kennzahlen__label {
	font-family: var(--font-sans);
	font-size: clamp(0.95rem, 2vw, 1.125rem);
	font-weight: 400;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.92);
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

/* Listen / Archive */
.archive-header,
.page-header {
	margin-bottom: var(--space-lg);
}

.archive-title,
.page-title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.2;
}

.archive-description {
	margin: 0;
	color: var(--color-text-muted);
	font-size: 1rem;
	max-width: 42rem;
}

.posts-feed {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/* Karten (Blog-Liste, Suche) */
.entry-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: clamp(1.15rem, 3vw, 1.5rem);
	box-shadow: var(--shadow-sm);
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.entry-card:hover {
	box-shadow: var(--shadow-md);
	border-color: color-mix(in srgb, var(--color-accent) 22%, var(--color-border));
}

.entry-card .entry-header {
	margin-bottom: 0.65rem;
}

.entry-card .entry-title {
	margin: 0 0 0.35rem;
	font-size: clamp(1.15rem, 2.5vw, 1.35rem);
	font-weight: 650;
	letter-spacing: -0.02em;
	line-height: 1.25;
}

.entry-card .entry-title a {
	color: inherit;
}

.entry-card .entry-title a:hover {
	color: var(--color-accent);
}

.entry-meta {
	font-size: 0.8125rem;
	color: var(--color-text-muted);
	font-variant-numeric: tabular-nums;
}

.entry-summary {
	margin: 0;
	color: var(--color-text-muted);
	font-size: 0.975rem;
	line-height: 1.6;
}

.entry-summary p {
	margin: 0;
}

/* Einzelansicht / Seite */
.entry-singular {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: clamp(1.25rem, 4vw, 2.25rem);
	box-shadow: var(--shadow-sm);
}

.entry-singular .entry-title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.85rem, 4.5vw, 2.5rem);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.15;
}

.entry-singular .post-thumbnail {
	margin: 1.25rem 0 1.5rem;
	border-radius: var(--radius-sm);
	overflow: hidden;
	line-height: 0;
}

.entry-singular .post-thumbnail img {
	display: block;
	width: 100%;
	height: auto;
}

.entry-content {
	max-width: 65ch;
	font-size: 1.0625rem;
	line-height: 1.7;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 1.75em;
	margin-bottom: 0.5em;
	font-weight: 650;
	letter-spacing: -0.02em;
	line-height: 1.25;
}

.entry-content h2 {
	font-size: 1.35rem;
}

.entry-content h3 {
	font-size: 1.15rem;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
	margin-bottom: 1.1em;
}

.entry-content a {
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.entry-footer {
	margin-top: 2rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--color-border);
	font-size: 0.875rem;
	color: var(--color-text-muted);
}

.page-links {
	margin-top: 1.5rem;
	font-size: 0.9375rem;
}

/* Pagination */
.navigation.pagination,
.posts-navigation {
	margin-top: var(--space-lg);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.navigation.pagination .page-numbers,
.posts-navigation a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.65rem;
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: var(--radius-sm);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	color: var(--color-text);
	box-shadow: var(--shadow-sm);
}

.navigation.pagination .page-numbers:hover,
.posts-navigation a:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
}

.navigation.pagination .page-numbers.current {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: #fff;
}

.navigation.pagination .page-numbers.dots {
	border: none;
	background: transparent;
	box-shadow: none;
	min-width: auto;
}

/* Sidebar & Widgets */
#secondary.widget-area {
	margin-top: var(--space-lg);
	padding: 1.25rem;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
}

.widget-title {
	margin: 0 0 0.75rem;
	font-size: 1rem;
	font-weight: 650;
}

/* Footer */
.site-footer {
	margin-top: auto;
	padding: clamp(2.8rem, 6vw, 4rem) 0 clamp(1.2rem, 2.8vw, 1.8rem);
	background: var(--gradient-violett);
	color: var(--gold-2);
}

.site-footer__inner {
	max-width: 84rem;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.75rem, 4vw, 3rem);
}

@media (min-width: 980px) {
	.site-footer__grid {
		grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
		align-items: start;
	}
}

.site-footer__menus {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.8rem);
}

@media (max-width: 760px) {
	.site-footer__menus {
		grid-template-columns: 1fr;
	}
}

.site-footer__heading {
	margin: 0 0 0.7rem;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2;
	color: #e4d9f1;
}

.site-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.38rem;
}

.site-footer__menu li {
	margin: 0;
}

.site-footer__menu a {
	color: #fff;
	font-size: 1.07rem;
	font-weight: 600;
	text-decoration: none;
}

.site-footer__menu a:hover {
	color: #d6c8ed;
}

.site-footer__newsletter-text {
	margin: 0 0 0.9rem;
	color: #f2ebfb;
	max-width: 32rem;
	font-size: 1rem;
	line-height: 1.45;
}

.site-footer__newsletter-form {
	max-width: 31rem;
}

.site-footer__newsletter-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.6rem;
}

.site-footer__newsletter-form label {
	display: block;
	margin: 0;
}

.site-footer__newsletter-form input {
	width: 100%;
	height: 2.75rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0.5rem;
	padding: 0 0.9rem;
	background: rgba(206, 178, 235, 0.26);
	color: #fff;
	font-size: 0.95rem;
	outline: none;
}

.site-footer__newsletter-form input::placeholder {
	color: rgba(241, 233, 252, 0.8);
}

.site-footer__newsletter-form > label {
	display: block;
	margin-top: 0.55rem;
}

.site-footer__newsletter-form button {
	margin-top: 0.7rem;
	min-width: 4.6rem;
	height: 2.35rem;
	padding: 0 1rem;
	border: none;
	border-radius: 0.45rem;
	background: #d5c8a3;
	color: #331f42;
	font-size: 0.95rem;
	font-weight: 700;
	cursor: pointer;
}

.site-footer__bottom {
	margin-top: clamp(1.8rem, 4vw, 2.9rem);
	display: flex;
	align-items: center;
	gap: 0.55rem;
	color: #d6cbe2;
}

.site-footer__brand-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.65rem;
	height: 1.65rem;
	color: #d8cca8;
}

.site-footer__brand-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.site-footer__copyright {
	margin: 0;
	font-size: 0.95rem;
}

@media (max-width: 600px) {
	.site-footer__newsletter-row {
		grid-template-columns: 1fr;
	}
}

/* Fehler / leer */
.error-404,
.no-results {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: clamp(1.5rem, 4vw, 2rem);
	box-shadow: var(--shadow-sm);
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}

.alignwide {
	max-width: var(--content-max);
	margin-inline: auto;
}

/* WooCommerce */
.woocommerce-page .site-main {
	max-width: var(--content-max);
}

.woocommerce img,
.woocommerce-page img {
	height: auto;
	max-width: 100%;
}

.woocommerce table.shop_table {
	width: 100%;
}

/* ——— C2A Hero ——— */
.c2a-hero {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* ——— Einheitlicher Header für normale Seiten ——— */
main.site-main > .page-hero {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
}

.page-hero {
	position: relative;
	overflow: hidden;
	min-height: clamp(26rem, 70vh, 44rem);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: clamp(4rem, 11vw, 7rem) 0 clamp(2.6rem, 6vw, 4rem);
}

.page-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}

.page-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(35, 18, 52, 0.44) 0%, rgba(32, 18, 49, 0.62) 100%);
}

.page-hero--no-image .page-hero__overlay {
	background: radial-gradient(120% 120% at 20% 0%, #7d5fa0 0%, #302043 68%);
}

.page-hero__inner {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 62rem;
}

.page-hero__title {
	margin: 0;
	color: #fff;
	font-size: clamp(2.1rem, 6.4vw, 5rem);
	line-height: 1.02;
	letter-spacing: -0.02em;
	font-weight: 700;
	margin-bottom: 10%;
}

.page-hero__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.85rem;
	margin-top: clamp(1.2rem, 3vw, 2rem);
	min-width: min(100%, 18rem);
	padding: 0.82rem 1.4rem;
	border-radius: 0.45rem;
	background: #6e3f84;
	color: #fff;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 700;
}

.page-hero__cta-arrow {
	font-size: 1.45rem;
	line-height: 1;
}
#hero-home {
	background-color: var(--color-accent);
	height: calc(100vh + 100px);
	display: flex;
	align-items: center;
}
.c2a-hero-content {
	max-width: 40%;
}
.c2a-hero-content h1 {
	color: var(--color-surface);
}
.c2a-hero-content a{
	color: var(--color-surface);
	text-decoration: none;
	border-bottom: 1px solid var(--color-surface);
	padding-bottom: 0.25rem;
	transition: all 0.3s ease;
	background-color: var(--color-accent);
	padding: 0.5rem 1rem;
	border-radius: 0.25rem;
	transition: all 0.3s ease;
	box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
	transform: translateY(-0.25rem);
}
.c2a-hero-content a:hover{
	color: var(--color-accent-hover);
	background-color: var(--color-accent-hover);
	border-bottom-color: var(--color-accent-hover);
	transform: translateY(-0.5rem);
}
/* ——— C2A Berater (Ziel: breiter Textblock links ~60 %, Foto-Streifen rechts, Abspann-Fade unten) ——— */
.c2a-berater {
	--c2a-purple: var(--violett-main);
	--c2a-cream: var(--gold-2);
	--c2a-gold: var(--gold-3);
	--c2a-btn: var(--gold-1);

	background: var(--c2a-purple);
	color: var(--c2a-cream);
	overflow: hidden;
	padding:  0;
}

.c2a-berater .section-inner {
	max-width: var(--content-max);
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2.25rem, 5vw, 4rem);
	align-items: center;
}

@media (min-width: 900px) {
	.c2a-berater .section-inner {
		grid-template-columns: minmax(0, 1.12fr) minmax(280px, 40%);
		align-items: stretch;
	}
}

.c2a-berater .left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 36rem;
	justify-content: center;
}

/* Sektionstitel: semantisch h2 empfohlen; h3 erhält h2-Optik (Figma h3.1) */
.c2a-berater .left h2,
.c2a-berater .left h3 {
	margin: 0 0 clamp(1rem, 2.5vw, 1.35rem);
	font-family: var(--font-serif);
	font-size: var(--font-size-h2);
	line-height: var(--line-height-h2);
	font-weight: var(--font-weight-semibold);
	letter-spacing: -0.02em;
	color: var(--c2a-cream);
}

.c2a-berater .btn.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1.5rem;
	min-height: 2.75rem;
	border-radius: 999px;
	background: var(--c2a-btn);
	color: var(--c2a-purple);
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
	border: none;
	transition: background 0.2s ease, transform 0.15s ease;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

.c2a-berater .btn.btn-primary:hover {
	background: #e8dcc4;
	color: #2a1d40;
}

.c2a-berater .left .btn.btn-primary {
	margin-top: 0;
}

/* Kategorien unter dem Button: wie Film-Abspann – langsam nach oben, unten weich ausgeblendet */
.c2a-berater__categories {
	margin-top: clamp(1.5rem, 3.5vw, 2.25rem);
	width: 100%;
	max-width: 100%;
}

.c2a-berater__categories-viewport {
	position: relative;
	max-height: min(46vh, 320px);
	overflow: hidden;
	/* Klares Ausblenden nach unten (wie Mockup), oben volle Deckkraft */
	mask-image: linear-gradient(
		to bottom,
		#000 0%,
		#000 52%,
		rgba(0, 0, 0, 0.55) 78%,
		rgba(0, 0, 0, 0.12) 92%,
		transparent 100%
	);
	-webkit-mask-image: linear-gradient(
		to bottom,
		#000 0%,
		#000 52%,
		rgba(0, 0, 0, 0.55) 78%,
		rgba(0, 0, 0, 0.12) 92%,
		transparent 100%
	);
}

.c2a-berater__categories-track {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
	will-change: transform;
	animation: c2a-berater-categories-scroll 260s linear infinite;
}

@keyframes c2a-berater-categories-scroll {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-50%);
	}
}

/* Zusätzlicher weicher Übergang in die Sektionsfarbe (ohne backdrop-blur → wirkt klarer als im 2. Screenshot) */
.c2a-berater__categories-fade {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 48%;
	pointer-events: none;
	z-index: 1;
	background: linear-gradient(
		to top,
		var(--c2a-purple) 0%,
		rgba(61, 42, 92, 0.97) 22%,
		rgba(61, 42, 92, 0.55) 55%,
		rgba(61, 42, 92, 0) 100%
	);
}

@media (prefers-reduced-motion: reduce) {
	.c2a-berater__categories-track {
		animation: none;
	}

	.c2a-berater__categories-viewport {
		max-height: none;
		mask-image: none;
		-webkit-mask-image: none;
	}

	.c2a-berater__categories-fade {
		display: none;
	}
}

.c2a-berater__category-item {
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	font-size: clamp(0.9rem, 1.9vw, 1.05rem);
	line-height: 1.45;
	color: color-mix(in srgb, var(--c2a-gold) 92%, transparent);
	font-weight: 500;
	padding: 0.08rem 0;
	letter-spacing: 0.02em;
	text-align: left;
	width: 100%;
}

@supports not (color: color-mix(in srgb, white 50%, black)) {
	.c2a-berater__category-item {
		color: rgba(232, 212, 184, 0.92);
	}
}

.c2a-berater__visual {
	position: relative;
	min-height: min(52vh, 480px);
	max-height: min(72vh, 700px);
	height: 100%;
	border-radius: 18px;
	mask-image: linear-gradient(to bottom, transparent 0%, #000 6%, #000 94%, transparent 100%);
	-webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.c2a-berater__columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(0.65rem, 2vw, 1.1rem);
	height: 100%;
	min-height: min(52vh, 480px);
	max-height: inherit;
}

.c2a-berater__col {
	overflow: hidden;
	border-radius: 16px;
}

.c2a-berater__track {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	will-change: transform;
}

.c2a-berater__col--down .c2a-berater__track {
	animation: c2a-berater-scroll 38s linear infinite;
}

.c2a-berater__col--up .c2a-berater__track {
	animation: c2a-berater-scroll 44s linear infinite reverse;
}

@keyframes c2a-berater-scroll {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.c2a-berater__col--down .c2a-berater__track,
	.c2a-berater__col--up .c2a-berater__track {
		animation: none;
	}
}

.c2a-berater__figure {
	margin: 0;
	line-height: 0;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.c2a-berater__img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	vertical-align: middle;
}

/* ——— Team-Seite ——— */
.site-main--team {
	width: 100%;
	max-width: none;
	margin-inline: 0;
	overflow-x: hidden;
}

.site-main--team > .page-hero {
	min-height: min(76vh, 760px);
	padding: clamp(4.5rem, 10vw, 7rem) 0 clamp(2.4rem, 5vw, 3.5rem);
	align-items: center;
}

.site-main--team .page-hero__bg {
	background-position: right center;
}

.site-main--team .page-hero__overlay {
	background:
		radial-gradient(90% 85% at 20% 40%, rgba(196, 186, 175, 0.45) 0%, rgba(196, 186, 175, 0) 65%),
		linear-gradient(180deg, rgba(38, 25, 50, 0.58) 0%, rgba(38, 25, 50, 0.28) 40%, rgba(38, 25, 50, 0.08) 100%);
}

.site-main--team .page-hero__inner {
	max-width: 56rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.site-main--team .page-hero__title {
	margin: 0;
	color: #fff;
	font-size: clamp(3rem, 7vw, 5.2rem);
	font-weight: var(--font-weight-bold);
	letter-spacing: -0.025em;
	text-shadow: 0 3px 22px rgba(0, 0, 0, 0.28);
}

.site-main--team .page-hero__cta {
	margin-top: clamp(1.1rem, 2.4vw, 1.8rem);
	min-width: min(100%, 17.5rem);
	padding: 0.78rem 1.3rem;
	border-radius: 0.5rem;
	background: var(--violett-main);
	font-size: 0.9rem;
	font-weight: var(--font-weight-semibold);
}

.site-main--team .page-hero__cta:hover {
	background: var(--violett-1);
	color: #fff;
}

.page-team .sticky-button-berater,
.page-template-page-templates-team-php .sticky-button-berater {
	display: none;
}

.team-hero {
	position: relative;
	overflow: hidden;
	background: radial-gradient(120% 100% at 12% 0%, rgba(134, 120, 108, 0.35) 0%, rgba(190, 180, 171, 0.08) 60%, rgba(239, 236, 232, 0) 100%), #d7d2cb;
	padding: clamp(5.2rem, 11vw, 8rem) 0 clamp(2.7rem, 5vw, 4rem);
	min-height: min(78vh, 820px);
}

.team-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 4vw, 3rem);
	align-items: center;
}

@media (min-width: 900px) {
	.team-hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(260px, 28rem);
		gap: clamp(2rem, 6vw, 4.2rem);
	}
}

.team-hero__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.6rem;
	min-height: clamp(10rem, 22vw, 15rem);
}

.team-hero__title {
	margin: 0;
	color: #fff;
	text-align: center;
	font-size: clamp(3rem, 7.2vw, 5.4rem);
	line-height: 1.02;
	font-weight: var(--font-weight-semibold);
	letter-spacing: -0.03em;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}

.team-hero__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	min-width: min(100%, 18.5rem);
	padding: 0.82rem 1.25rem;
	border-radius: 0.5rem;
	background: var(--violett-main);
	color: #fff;
	font-size: 0.9rem;
	font-weight: var(--font-weight-semibold);
	text-decoration: none;
}

.team-hero__cta:hover {
	background: var(--violett-1);
	color: #fff;
}

.team-hero__media {
	position: relative;
	border-radius: 0;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	width: min(100%, 24rem);
	margin-inline: auto;
	align-self: end;
}

@media (min-width: 900px) {
	.team-hero__media {
		margin-inline: 0;
		justify-self: end;
		width: min(100%, 24rem);
	}
}

.team-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: right bottom;
}

.team-hero--with-bg {
	background-image: var(--team-hero-bg);
	background-size: cover;
	background-position: center;
}

.team-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(47, 34, 54, 0.6) 0%, rgba(52, 40, 56, 0.38) 35%, rgba(52, 40, 56, 0.2) 100%);
}

.team-filters {
	background: radial-gradient(120% 120% at 15% 0%, #4e1f63 0%, #281735 58%, #22142d 100%);
	padding: clamp(2.8rem, 5vw, 4rem) 0 clamp(2.8rem, 5vw, 4.2rem);
}

.team-filters__row {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.35rem;
}

@media (min-width: 900px) {
	.team-filters__row {
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		gap: 1.8rem;
	}
}

.team-filters__title {
	margin: 0;
	flex: 0 0 auto;
	color: #fff;
	text-align: center;
	font-size: clamp(2.05rem, 4.5vw, 3.3rem);
	line-height: 1.08;
	font-weight: var(--font-weight-light);
	letter-spacing: -0.02em;
}

.team-filters__fields {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
	gap: 0.85rem 1rem;
	width: min(100%, 50rem);
	flex: 0 1 auto;
	margin-inline: auto;
}

@media (min-width: 700px) {
	.team-filters__fields {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		width: min(100%, 58rem);
	}
}

.team-filters__field {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	min-width: 0;
	width: 100%;
}

.team-filters__label {
	font-size: clamp(1rem, 1.65vw, 1.95rem);
	font-weight: var(--font-weight-regular);
	color: #fff;
	line-height: 1.2;
	text-align: left;
	white-space: normal;
}

.team-filters__select {
	width: 100%;
	min-height: 2.45rem;
	padding: 0.45rem 2.3rem 0.45rem 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 0.4rem;
	background-color: rgba(186, 146, 201, 0.82);
	color: #fff;
	font-family: var(--font-sans);
	font-size: 0.78rem;
	font-weight: var(--font-weight-regular);
	line-height: 1.3;
	cursor: pointer;
	appearance: none;
	color-scheme: light;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='white' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.9rem center;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.team-filters__coach {
	margin-top: 0.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.65rem;
}

.team-filters__coach-text {
	margin: 0;
	color: #fff;
	font-size: 0.73rem;
	font-weight: 600;
}

.team-filters__coach-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 12.8rem;
	padding: 0.55rem 1rem;
	border-radius: 0.42rem;
	background: var(--gold-3);
	color: var(--violett-main);
	font-size: 0.76rem;
	font-weight: 600;
}

.team-filters__select:focus {
	outline: 2px solid var(--violett-3);
	outline-offset: 2px;
}

.team-filters__select option {
	background: #fff;
	color: var(--violett-dark-2);
}

.team-berater {
	background: var(--gold-2);
	padding: clamp(3rem, 5vw, 5.5rem) 0 clamp(4.5rem, 8vw, 6.5rem);
}

.team-berater__title {
	margin: 0 0 clamp(1.5rem, 3vw, 2.2rem);
	color: var(--violett-main);
	text-align: center;
	font-size: clamp(2.75rem, 5.8vw, 5.5rem);
	line-height: 1.09;
	letter-spacing: -0.02em;
}

.team-berater__title-light {
	font-weight: var(--font-weight-light);
}

.team-berater__title-bold {
	font-weight: var(--font-weight-bold);
}

.team-berater__quick-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin: 0 0 clamp(1.5rem, 2.5vw, 2.2rem);
}

.team-berater__quick-btn {
	border: none;
	border-radius: 15px;
	min-height: 3.875rem;
	min-width: 10rem;
	padding: 0.65rem 1.35rem;
	font-family: var(--font-sans);
	font-size: clamp(1rem, 1.1vw, 1.25rem);
	font-weight: var(--font-weight-semibold);
	line-height: 1.35;
	background: var(--violett-gradient-dark);
	color: var(--gold-2);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.team-berater__quick-btn.is-active {
	background: var(--gold-1);
	color: var(--violett-main);
}

.team-berater__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: clamp(0.85rem, 1.5vw, 1.15rem);
	flex-wrap: nowrap;
}

.team-berater__slider {
	position: relative;
}

.team-berater__track-wrap {
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding: 0.15rem 0 4.5rem;
}

.team-berater__track-wrap::-webkit-scrollbar {
	display: none;
}

.team-berater__nav {
	position: absolute;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	gap: 0.65rem;
	z-index: 3;
}

.team-berater__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.4375rem;
	height: 3.4375rem;
	border-radius: 50%;
	border: none;
	background: var(--gold-1);
	cursor: pointer;
	padding: 0;
	box-shadow: 0 6px 18px rgba(28, 22, 35, 0.12);
	transition: filter 0.2s ease, opacity 0.2s ease;
}

.team-berater__arrow[disabled] {
	opacity: 0.35;
	cursor: default;
}

.team-berater__arrow-icon {
	display: block;
	width: 1.35rem;
	height: 0;
	border-top: 2px solid var(--violett-main);
	position: relative;
}

.team-berater__arrow-icon::after {
	content: "";
	position: absolute;
	top: -0.42rem;
	width: 0.55rem;
	height: 0.55rem;
	border-top: 2px solid var(--violett-main);
	border-right: 2px solid var(--violett-main);
	transform: rotate(45deg);
}

.team-berater__arrow--prev .team-berater__arrow-icon {
	transform: scaleX(-1);
}

.team-berater__arrow--next .team-berater__arrow-icon {
	transform: none;
}

@media (max-width: 900px) {
	.team-berater__nav {
		display: none;
	}

	.team-berater__track-wrap {
		padding-bottom: 0.5rem;
	}
}

.team-berater__item[hidden] {
	display: none;
}

.team-berater__item {
	flex: 0 0 clamp(16.5rem, 24vw, 22.75rem);
	scroll-snap-align: start;
}

.team-berater__card {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	height: 100%;
}

.team-berater__visual {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	aspect-ratio: 367 / 576;
	background: var(--violett-dark-2);
	box-shadow: 0 10px 28px rgba(28, 22, 35, 0.12);
}

.team-berater__media {
	display: block;
	position: absolute;
	inset: 0;
	line-height: 0;
	overflow: hidden;
	z-index: 1;
}

.team-berater__image-bg {
	display: block;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	transition: transform 0.25s ease;
}

.team-berater__media:hover .team-berater__image-bg {
	transform: scale(1.03);
}

.team-berater__status {
	position: absolute;
	top: clamp(0.85rem, 2vw, 1.35rem);
	left: clamp(0.85rem, 2vw, 1.35rem);
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: clamp(1rem, 1.1vw, 1.25rem);
	font-weight: var(--font-weight-semibold);
	line-height: 1.35;
	color: var(--gold-2);
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.team-berater__status-dot {
	flex: 0 0 1.15rem;
	width: 1.15rem;
	height: 1.15rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.55);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.22) inset;
}

.team-berater__status--frei .team-berater__status-dot {
	background: var(--gold-1);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.28) inset;
}

.team-berater__status--besetzt .team-berater__status-dot {
	background: linear-gradient(135deg, var(--gold-1) 0%, var(--violett-main) 100%);
}

.team-berater__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
	padding: clamp(2.5rem, 5vw, 3.5rem) clamp(0.85rem, 2vw, 1.2rem) clamp(0.95rem, 2vw, 1.15rem);
	background: linear-gradient(180deg, rgba(28, 22, 35, 0) 0%, rgba(28, 22, 35, 0.42) 38%, rgba(28, 22, 35, 0.78) 100%);
}

.team-berater__name {
	margin: 0;
	font-size: clamp(2rem, 2.8vw, 2.75rem);
	font-weight: var(--font-weight-semibold);
	line-height: 1;
	letter-spacing: -0.02em;
}

.team-berater__name a {
	color: var(--gold-2);
	text-decoration: none;
}

.team-berater__name a:hover {
	color: #fff;
}

.team-berater__stars {
	display: inline-flex;
	align-items: center;
	gap: 0.12rem;
	line-height: 1;
}

.team-berater__star {
	color: rgba(252, 248, 239, 0.28);
	font-size: clamp(0.95rem, 1.2vw, 1.15rem);
}

.team-berater__star.is-filled {
	color: var(--gold-1);
}

.team-berater__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 3.25rem;
	padding: 0.7rem 1rem;
	border-radius: 15px;
	font-size: clamp(1rem, 1.1vw, 1.25rem);
	font-weight: var(--font-weight-semibold);
	line-height: 1.35;
	text-decoration: none;
	white-space: nowrap;
	transition: filter 0.2s ease;
}

.team-berater__cta--frei {
	background: var(--gold-1);
	color: var(--violett-main);
}

.team-berater__cta--besetzt {
	background: linear-gradient(0deg, var(--gold-1) 0%, var(--violett-main) 100%);
	color: var(--gold-2);
}

.team-berater__cta--offline {
	background: var(--violett-gradient-dark);
	color: var(--gold-2);
}

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

.team-berater__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.42rem 0.75rem;
	border-radius: 15px;
	background: var(--violett-gradient-dark);
	color: var(--gold-2);
	font-size: var(--font-size-small);
	font-weight: var(--font-weight-regular);
	line-height: 1;
}

@media (max-width: 820px) {
	.team-hero__content {
		align-items: flex-start;
	}

	.team-hero__title {
		text-align: left;
	}

	.team-hero__cta {
		min-width: 14.5rem;
	}

	.team-hero__media {
		display: none;
	}

	.team-filters__fields {
		grid-template-columns: 1fr;
		width: min(100%, 24rem);
	}
}

.team-berater__cta:hover {
	filter: brightness(1.05);
}

.team-berater__empty,
.team-berater__no-match {
	margin: 0;
	text-align: center;
	color: var(--violett-3);
	font-size: 1rem;
}

.site-main--team > .testimonials-home,
.site-main--team > .wie-lauft-sitzung,
.site-main--team > .berater-kategorien-banner,
.site-main--team > .banner-kennzahlen,
.site-main--team > .banner-bonus {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
}

/* Live-Sendeplan → assets/css/block-sendeplan.css */

/* Live-Seite: Stream + Chat (Figma Hero Section) */
.live-page {
	color: #fff;
}

.live-hero {
	background: linear-gradient(180deg, #251931 0%, #130b1c 100%);
	padding: clamp(2rem, 5vw, 5rem) 0 clamp(2.5rem, 6vw, 6.25rem);
}

.live-page:has(.page-hero) .live-hero {
	padding-top: clamp(1.25rem, 3vw, 2.5rem);
}

.live-page .page-hero + .live-hero {
	margin-top: 0;
}

.live-hero__inner {
	max-width: 165rem;
	width: calc(100% - 5rem);
	margin: 0 auto;
}

.live-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.8fr) minmax(17.5rem, 1fr);
	grid-template-rows: auto auto;
	gap: 1.25rem clamp(1.5rem, 3vw, 2.5rem);
	align-items: stretch;
}

.live-player-shell {
	position: relative;
	grid-column: 1;
	grid-row: 1;
	min-height: clamp(16rem, 42vw, 30.625rem);
	border-radius: 1rem;
	overflow: hidden;
	background: #0a0514;
	box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.35);
}

.live-player-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	padding: 0.28rem 0.72rem;
	border-radius: 0.375rem;
	background: #e52626;
	color: #fff;
	font-size: 0.8125rem;
	font-weight: var(--font-weight-semibold);
	line-height: 1.2;
	letter-spacing: 0.02em;
	pointer-events: none;
}

.live-player-frame,
.live-chat-frame {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.live-player-frame {
	position: absolute;
	inset: 0;
}

.live-chat-shell {
	grid-column: 2;
	grid-row: 1;
	display: flex;
	flex-direction: column;
	min-height: clamp(16rem, 42vw, 30.625rem);
	border-radius: 1rem;
	overflow: hidden;
	background: #1a0f29;
	box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.35);
}

.live-chat-shell--off-air .live-chat-body {
	padding: 0 1.125rem 0 2.5rem;

}
.live-chat-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-shrink: 0;
	min-height: 3.25rem;
	padding: 0 1.125rem;
	background: var(--violett-main);
}

.live-chat-header__title {
	font-size: 0.9375rem;
	font-weight: var(--font-weight-semibold);
	color: #fff;
}

.live-chat-header__title::before {
	content: "💬";
	margin-right: 0.35rem;
}

.live-chat-body {
	position: relative;
	flex: 1;
	min-height: 0;
	background: #1a0f29;
}

.live-chat-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 12rem;
	padding: 1.5rem;
	text-align: center;
}

.live-chat-placeholder p {
	margin: 0;
	font-size: 0.875rem;
	color: rgba(237, 227, 200, 0.75);
}

.live-stream-info {
	grid-column: 1;
	grid-row: 2;
	padding-top: 0.35rem;
}

.live-stream-info__layout {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.live-stream-info__avatar-wrap {
	flex-shrink: 0;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 999px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.08);
}

.live-stream-info__avatar,
.live-stream-info__avatar.berater-avatar--initials {
	width: 100%;
	height: 100%;
	display: block;
}

.live-stream-info__avatar.berater-avatar--initials {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #e7dbf0;
	color: var(--violett-main);
	font-size: 0.86rem;
	font-weight: var(--font-weight-semibold);
}

.live-stream-info__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.live-stream-info__text {
	min-width: 0;
}

.live-stream-info__title {
	margin: 0;
	font-size: clamp(1.25rem, 2vw, 1.375rem);
	font-weight: var(--font-weight-semibold);
	line-height: 1.3;
	color: #fff;
}

.live-stream-info__meta {
	margin: 0.5rem 0 0;
	font-size: 0.875rem;
	line-height: 1.45;
	color: rgba(237, 227, 200, 0.8);
}

@media (max-width: 960px) {
	.live-hero__inner {
		width: calc(100% - 2.5rem);
	}

	.live-layout {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
	}

	.live-player-shell,
	.live-chat-shell {
		grid-column: 1;
		min-height: clamp(14rem, 56vw, 22rem);
	}

	.live-player-shell {
		grid-row: 1;
	}

	.live-chat-shell {
		grid-row: 2;
	}

.live-player-shell--off-air .live-player-offair {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
	padding: 1rem 1.1rem;
	background: linear-gradient(180deg, rgba(10, 5, 20, 0.92) 0%, rgba(10, 5, 20, 0.55) 75%, transparent 100%);
	pointer-events: none;
}

.live-player-offair p {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.92);
}

.live-player-offair__next {
	font-weight: var(--font-weight-semibold);
}

.live-player-offair__last,
.live-player-offair__replay {
	margin-top: 0.35rem;
	color: rgba(237, 227, 200, 0.85);
}

.live-chat-shell--off-air .live-chat-body {
	display: flex;
	align-items: center;
	justify-content: center;
}

.live-chat-offline {
	padding: 1.5rem;
	text-align: center;
	max-width: 18rem;
	margin: 0 auto;
}

.live-chat-offline__title {
	margin: 0 0 0.5rem;
	font-size: 0.95rem;
	font-weight: var(--font-weight-semibold);
	color: #fff;
}

.live-chat-offline p {
	margin: 0.35rem 0 0;
	font-size: 0.82rem;
	line-height: 1.45;
	color: rgba(237, 227, 200, 0.78);
}

.live-chat-offline__next {
	margin-top: 0.75rem !important;
	color: var(--gold-3) !important;
}

/* Block: Vergangene Streams → assets/css/block-archiv-streams.css (Live-Seite) */
