/* ==========================================================================
   Interhorse — Modern Theme (Rot/Weiss, inspiriert von Böckmann & Interhorse.hu)
   ========================================================================== */

:root {
	/* Brand Colors — Interhorse Manual (Mai 2026): Rot, Weiss, Schwarz, Hellgrau */
	--c-red:        #d4000b;  /* Rot (Akzent / Primary) */
	--c-red-dark:   #a30009;  /* Rot dunkler — Hover/Aktiv */
	--c-red-light:  #fde0e2;  /* Rot Tint — sehr helle Flächen */
	--c-white:      #fffffe;
	--c-off:        #f7f7f7;
	--c-surface:    #f2f2f2;
	--c-grey:       #d6d7d2;  /* Halbgrau — flächig für Sections statt Schwarz */
	--c-text:       #111111;
	--c-text-light: #4a4a4a;
	--c-muted:      #9d9e9e;  /* Hellgrau (Akzent) */
	--c-border:     #e5e5e5;
	--c-black:      #0a0a0a;  /* Akzent — nur sparsam einsetzen */

	/* Typo */
	--ff-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--ff-head:  "Abhaya Libre", Georgia, "Times New Roman", serif;

	/* Layout */
	--container:        1240px;
	--container-narrow: 800px;
	--container-wide:   1440px;
	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space:    1.5rem;
	--space-lg: 3rem;
	--space-xl: 5rem;
	--radius:   4px;
	--radius-lg: 8px;
	--shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
	--shadow:    0 4px 16px rgba(0,0,0,0.08);
	--shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
	--transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Self-hosted Fonts ======================================================= */
/* Inter — variable font, deckt 300–800 ab */
@font-face {
	font-family: "Inter";
	src: url("../fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("truetype-variations"),
	     url("../fonts/inter/Inter-VariableFont_slnt,wght.ttf") format("truetype");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

/* Abhaya Libre — Headlines (Regular & Bold lt. Manual; weitere Schnitte verfügbar) */
@font-face {
	font-family: "Abhaya Libre";
	src: url("../fonts/abhaya-libre/AbhayaLibre-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Abhaya Libre";
	src: url("../fonts/abhaya-libre/AbhayaLibre-Medium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Abhaya Libre";
	src: url("../fonts/abhaya-libre/AbhayaLibre-SemiBold.ttf") format("truetype");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Abhaya Libre";
	src: url("../fonts/abhaya-libre/AbhayaLibre-Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Abhaya Libre";
	src: url("../fonts/abhaya-libre/AbhayaLibre-ExtraBold.ttf") format("truetype");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

/* Reset & Base ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--ff-sans);
	font-size: 16px;
	line-height: 1.65;
	color: var(--c-text);
	background: var(--c-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--c-red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-red-dark); }

h1, h2, h3, h4, h5 {
	font-family: var(--ff-head);
	line-height: 1.15;
	margin: 0 0 0.6em;
	font-weight: 700;
	letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1em; }

::selection { background: var(--c-red); color: var(--c-white); }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; padding: 0.5rem 1rem; background: var(--c-white); z-index: 100; box-shadow: var(--shadow); }

/* WordPress-Accessibility: Screen-Reader-only Texte unsichtbar (aber für AT verfügbar) */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	word-wrap: normal !important;
}
.screen-reader-text:focus {
	clip: auto !important;
	-webkit-clip-path: none;
	clip-path: none;
	height: auto;
	width: auto;
	display: block;
	z-index: 100000;
	background: var(--c-white);
	color: var(--c-text);
	padding: 0.75rem 1rem;
	box-shadow: var(--shadow);
}

/* Layout ================================================================== */
.container        { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow{ max-width: var(--container-narrow); }
.container--wide  { max-width: var(--container-wide); }

.site-content { min-height: 60vh; }

/* Header / Navigation ===================================================== */

/* Default: fixed, transparent (über dem Hero, weisse Schrift)
   Scrolled / Pages ohne Hero: solid weiss, dunkle Schrift, dezenter Schatten */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	background: transparent;
	color: var(--c-white);
	transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
/* Solid state */
.site-header.is-scrolled,
body:not(.has-hero) .site-header {
	background: rgba(255,255,255,0.96);
	backdrop-filter: saturate(140%) blur(8px);
	-webkit-backdrop-filter: saturate(140%) blur(8px);
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	color: var(--c-text);
}

/* Body padding-top für Seiten ohne Hero (Header ist fixed) */
body:not(.has-hero) { padding-top: 116px; }
@media (max-width: 1200px) { body:not(.has-hero) { padding-top: 72px; } }

/* Topbar — hochwertig schmal, verschwindet beim Scrollen */
.site-header__topbar {
	background: var(--c-grey);
	color: var(--c-text);
	font-size: 0.82rem; letter-spacing: 0.02em;
	max-height: 60px; overflow: hidden;
	transition: max-height 0.35s ease, opacity 0.35s ease;
}
.site-header__topbar-inner {
	display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
	padding: 0.55rem 0;
}
.site-header__topbar a { color: var(--c-text); }
.site-header__topbar a:hover { color: var(--c-red); text-decoration: underline; }
.site-header__topbar-sep { margin: 0 0.6rem; opacity: 0.4; }
.site-header__topbar-right { color: var(--c-text-light); }

/* Beim Scrollen Topbar einklappen */
.site-header.is-scrolled .site-header__topbar {
	max-height: 0; opacity: 0;
}

/* Main Header Bar */
.site-header__main {
	transition: padding 0.3s ease;
}
.site-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	min-height: 80px; gap: 2rem;
	transition: min-height 0.3s ease;
}
.site-header.is-scrolled .site-header__inner { min-height: 68px; }

/* Logo */
.site-branding { display: flex; align-items: center; gap: 0.75rem; }
.site-logo {
	display: flex; align-items: center; gap: 0.65rem;
	color: inherit; font-weight: 800;
	transition: color var(--transition);
}
.site-logo:hover { text-decoration: none; }
.site-logo__mark {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px;
	background: var(--c-red);
	color: var(--c-white);
	font-weight: 800;
	border-radius: var(--radius);
	letter-spacing: 0.05em;
	transition: background var(--transition), color var(--transition);
}
/* Über dem Hero: Logo-Mark invertiert */
.has-hero .site-header:not(.is-scrolled) .site-logo__mark {
	background: var(--c-white);
	color: var(--c-red);
}
.site-logo__text {
	display: flex; flex-direction: column;
	font-size: 1.05rem; line-height: 1; gap: 3px;
	letter-spacing: 0.08em;
	color: inherit;
}
.site-logo__text small {
	font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em;
	color: var(--c-muted);
	transition: color var(--transition);
}
.has-hero .site-header:not(.is-scrolled) .site-logo__text small {
	color: rgba(255,255,255,0.7);
}

/* Primary Nav */
.primary-menu {
	list-style: none; padding: 0; margin: 0;
	display: flex; gap: 0.15rem; align-items: center;
	flex-wrap: nowrap;
}
.primary-menu > li { white-space: nowrap; }
.primary-menu > li { position: relative; }
.primary-menu > li > a {
	color: inherit; font-weight: 500; font-size: 0.9rem;
	padding: 0.55rem 0.7rem;
	display: inline-flex; align-items: center; gap: 0.2rem;
	border-radius: var(--radius);
	transition: color var(--transition), background var(--transition);
}
.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-menu-parent > a {
	color: var(--c-red);
}
/* Über dem Hero: Hover hellt nur leicht auf (rot wäre auf rot-Hero unsichtbar) */
.has-hero .site-header:not(.is-scrolled) .primary-menu > li > a:hover {
	color: var(--c-white); background: rgba(255,255,255,0.12);
}
.primary-menu .caret { font-size: 0.7rem; opacity: 0.7; }

/* Submenu / Dropdown */
.primary-menu .sub-menu {
	list-style: none; padding: 0.5rem 0; margin: 0;
	position: absolute; top: calc(100% + 4px); left: 0;
	background: var(--c-white); min-width: 220px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.15);
	border-radius: var(--radius);
	border-top: 3px solid var(--c-red);
	opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	z-index: 60;
}
.primary-menu > li:hover > .sub-menu,
.primary-menu > li:focus-within > .sub-menu {
	opacity: 1; visibility: visible; transform: translateY(0);
}
.primary-menu .sub-menu a {
	display: block; padding: 0.55rem 1.25rem; color: var(--c-text);
	font-size: 0.92rem; font-weight: 500;
	transition: background var(--transition), color var(--transition);
}
.primary-menu .sub-menu a:hover { background: var(--c-off); color: var(--c-red); }

/* CTA Button im Menü */
.primary-menu__cta { margin-left: 0.5rem; }
.primary-menu__cta .btn {
	padding: 0.55rem 1.15rem; font-size: 0.9rem;
}
.btn--sm { padding: 0.55rem 1.15rem; font-size: 0.9rem; }
/* Über dem Hero: CTA als Ghost-Button (weiss umrandet) */
.has-hero .site-header:not(.is-scrolled) .primary-menu__cta .btn {
	background: transparent; color: var(--c-white); border-color: var(--c-white);
}
.has-hero .site-header:not(.is-scrolled) .primary-menu__cta .btn:hover {
	background: var(--c-white); color: var(--c-red);
}

/* Zweizeilige Navigation (Desktop): obere Reihe = Allgemein, untere = Produkte */
@media (min-width: 1201px) {
	.site-navigation {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		gap: 0.3rem;
	}
	.primary-menu--top,
	.primary-menu--products { flex-wrap: nowrap; }

	/* Obere Reihe: kleiner und dezenter (Farbe wird geerbt → funktioniert auch über dem Hero) */
	.primary-menu--top { gap: 0.05rem; }
	.primary-menu--top > li > a {
		font-size: 0.82rem;
		padding: 0.3rem 0.6rem;
		opacity: 0.82;
	}
	.primary-menu--top > li > a:hover,
	.primary-menu--top > li.current-menu-item > a { opacity: 1; }

	/* CTA in der oberen Reihe etwas kompakter */
	.primary-menu--top .primary-menu__cta { margin-left: 0.4rem; }
	.primary-menu--top .primary-menu__cta .btn { padding: 0.4rem 1rem; font-size: 0.82rem; }

	/* Untere Reihe: Produkte – kräftiger, mit feiner Trennlinie darüber */
	.primary-menu--products {
		padding-top: 0.3rem;
		border-top: 1px solid rgba(0, 0, 0, 0.08);
	}
	.primary-menu--products > li > a {
		font-size: 0.96rem;
		font-weight: 600;
	}
	/* Über dem Hero (dunkel) Trennlinie hell halten */
	.has-hero .site-header:not(.is-scrolled) .primary-menu--products {
		border-top-color: rgba(255, 255, 255, 0.18);
	}
}

/* Mobile Toggle */
.menu-toggle {
	display: none;
	background: none; border: none; cursor: pointer;
	padding: 0.5rem;
}
.menu-toggle span {
	display: block; width: 26px; height: 2px;
	background: currentColor; margin: 5px 0;
	transition: var(--transition);
}

/* Hero ==================================================================== */
.hero {
	position: relative;
	background: #14110f; /* dunkler Grund statt Grau → kein ausgewaschener Look */
	color: var(--c-white);
	overflow: hidden;
	min-height: 700px;
	display: flex; align-items: center;
	padding-top: 116px; /* Platz für fixed Header */
}
@media (max-width: 1200px) { .hero { padding-top: 72px; min-height: 560px; } }
.hero__media {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
	opacity: 1; /* Bild voll/kräftig zeigen; Kontrast kommt vom Scrim unten */
}
.hero__media::after {
	content: "";
	position: absolute; inset: 0;
	background:
		/* oben abdunkeln → Header & Logo bleiben lesbar */
		linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 24%),
		/* links/diagonal abdunkeln → Hero-Text bleibt lesbar, Bild bleibt sichtbar */
		linear-gradient(110deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.38) 45%, rgba(0,0,0,0.1) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: 6rem 0; max-width: 800px; }
.hero__eyebrow {
	display: inline-block; padding: 0.4rem 1rem;
	background: var(--c-red); color: var(--c-white);
	font-size: 0.85rem; font-weight: 600;
	letter-spacing: 0.1em; text-transform: uppercase;
	margin-bottom: 1.5rem;
}
.hero__title { color: var(--c-white); margin-bottom: 1.5rem; }
.hero__lead {
	font-size: clamp(1.1rem, 1.8vw, 1.35rem);
	max-width: 680px; margin-bottom: 2.5rem;
	color: rgba(255,255,255,0.92);
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Buttons ================================================================= */
.btn {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.9rem 1.75rem;
	font-weight: 600; font-size: 0.95rem;
	border-radius: var(--radius);
	border: 2px solid transparent;
	cursor: pointer;
	transition: all var(--transition);
	letter-spacing: 0.02em;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--c-red); color: var(--c-white); border-color: var(--c-red); }
.btn--primary:hover { background: var(--c-red-dark); border-color: var(--c-red-dark); color: var(--c-white); }
.btn--ghost { background: transparent; color: var(--c-white); border-color: var(--c-white); }
.btn--ghost:hover { background: var(--c-white); color: var(--c-red); }
.btn--outline { background: transparent; color: var(--c-red); border-color: var(--c-red); }
.btn--outline:hover { background: var(--c-red); color: var(--c-white); }
.btn--text {
	padding: 0; background: none; border: none; color: var(--c-red);
	font-weight: 600;
}
.btn--text:hover { color: var(--c-red-dark); transform: none; }
.btn--lg { padding: 1.1rem 2.25rem; font-size: 1.05rem; }

/* Sections / Headers ====================================================== */
.section { padding: var(--space-xl) 0; }
.section--alt { background: var(--c-off); }
.section--dark { background: var(--c-grey); color: var(--c-text); }
.section--dark h2, .section--dark h3 { color: var(--c-text); }
.section--red { background: var(--c-red); color: var(--c-white); }
.section--red h2 { color: var(--c-white); }

.section-header { text-align: center; margin-bottom: 3rem; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-header__eyebrow {
	display: inline-block; color: var(--c-red);
	font-size: 0.85rem; font-weight: 700;
	letter-spacing: 0.15em; text-transform: uppercase;
	margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header__lead { color: var(--c-text-light); font-size: 1.1rem; }
.section-footer { text-align: center; margin-top: 3rem; }

/* Welcome Section ========================================================= */
.welcome-section { padding: 5rem 0 4rem; }
.welcome { text-align: left; }
.welcome .section-header__eyebrow { margin-bottom: 0.75rem; display: inline-block; }
.welcome__title {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	margin-bottom: 1.5rem;
	max-width: 720px;
}
.welcome__lead {
	font-size: 1.2rem; line-height: 1.55;
	color: var(--c-text); font-weight: 500;
	margin-bottom: 1.5rem;
}
.welcome p { color: var(--c-text-light); font-size: 1.05rem; }
.welcome__motto {
	margin: 2.5rem 0;
	padding: 2rem 2.5rem;
	background: var(--c-off);
	border-left: 4px solid var(--c-red);
	border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
	font-family: var(--ff-head);
	font-size: clamp(1.25rem, 2vw, 1.6rem);
	font-weight: 600;
	font-style: italic;
	color: var(--c-text);
	line-height: 1.4;
	position: relative;
}
.welcome__motto::before {
	content: "„";
	position: absolute; top: 0; left: 0.75rem;
	font-size: 4rem; color: var(--c-red); line-height: 1;
	opacity: 0.3; font-family: Georgia, serif;
}
@media (max-width: 600px) {
	.welcome__motto { padding: 1.5rem; font-size: 1.15rem; }
	.welcome__motto::before { font-size: 3rem; }
}

/* Stats Section =========================================================== */
.stats-section {
	padding: 6rem 0;
	background: linear-gradient(180deg, var(--c-off) 0%, var(--c-surface) 100%);
	position: relative;
	overflow: hidden;
}
/* Dezente rote Glow-Akzente im Hintergrund */
.stats-section::before,
.stats-section::after {
	content: ""; position: absolute; pointer-events: none;
	border-radius: 50%; filter: blur(120px);
	opacity: 0.25;
}
.stats-section::before {
	top: -100px; right: -150px; width: 500px; height: 500px;
	background: var(--c-red);
}
.stats-section::after {
	bottom: -150px; left: -150px; width: 450px; height: 450px;
	background: #d4a35d;
}
.stats-section .container { position: relative; z-index: 1; }
.stats-section .section-header h2 { color: var(--c-text); }
.stats-section .section-header__lead { color: var(--c-text-light); }
.stats-section .section-header__eyebrow { color: var(--c-red); }

/* Stats Grid mit dezenten Trenn-Linien */
.stats-grid {
	display: grid; gap: 0;
	grid-template-columns: repeat(3, 1fr);
	margin: 3rem auto 0;
	max-width: 1000px;
	text-align: center;
}
@media (max-width: 800px) {
	.stats-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.stat {
	padding: 1.5rem 1rem;
	position: relative;
}
/* Vertikale Trenn-Linie zwischen Stats (Desktop) */
@media (min-width: 801px) {
	.stat:not(:last-child)::after {
		content: ""; position: absolute;
		top: 20%; right: 0; bottom: 20%;
		width: 1px;
		background: linear-gradient(180deg, transparent 0%, rgba(212,0,11,0.3) 50%, transparent 100%);
	}
}

.stat__number {
	font-family: var(--ff-head);
	font-size: clamp(3.5rem, 7vw, 5rem);
	font-weight: 800;
	color: var(--c-red);
	line-height: 1;
	letter-spacing: -0.04em;
	margin-bottom: 1rem;
	display: flex; align-items: baseline; justify-content: center; gap: 0.05em;
}
.stat__number span {
	font-size: 0.5em;
	color: var(--c-red);
	opacity: 0.55;
	font-weight: 700;
}
.stat__label {
	color: var(--c-text-light);
	font-size: 1rem;
	max-width: 240px; margin: 0 auto;
	line-height: 1.5;
	font-weight: 500;
}

/* Countries — elegant centered text mit dezenten Pills */
.countries {
	display: flex; flex-wrap: wrap; justify-content: center;
	gap: 0.5rem;
	margin-top: 4rem;
	padding-top: 3rem;
	max-width: 900px; margin-left: auto; margin-right: auto;
	border-top: 1px solid rgba(212,0,11,0.15);
}
.countries::before {
	content: "Im Einsatz in";
	display: block; width: 100%;
	text-align: center;
	font-size: 0.78rem; font-weight: 700;
	letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--c-red);
	margin-bottom: 1.5rem;
}
.country {
	display: inline-block;
	padding: 0.45rem 1.1rem;
	font-size: 0.875rem;
	color: var(--c-text);
	background: rgba(255,255,255,0.7);
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: 999px;
	transition: all 0.25s ease;
	font-weight: 500;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.country:hover {
	background: var(--c-red);
	color: var(--c-white);
	border-color: var(--c-red);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(212,0,11,0.25);
}
@media (max-width: 600px) {
	.stats-section { padding: 4rem 0; }
	.countries { margin-top: 3rem; padding-top: 2rem; }
	.country { font-size: 0.8rem; padding: 0.4rem 0.9rem; }
}

/* CTA Phone Link */
.cta-section__actions {
	display: flex; align-items: center; justify-content: center;
	gap: 2rem; flex-wrap: wrap;
}
.cta-section__phone {
	color: var(--c-white);
	font-family: var(--ff-head);
	font-size: 1.5rem; font-weight: 700;
	letter-spacing: -0.01em;
	border-bottom: 2px solid rgba(255,255,255,0.3);
	padding-bottom: 0.25rem;
	transition: border-color 0.2s ease;
}
.cta-section__phone:hover {
	color: var(--c-white); border-bottom-color: var(--c-white);
	text-decoration: none;
}
.cta-section__phone::before { content: "📞 "; opacity: 0.7; }
@media (max-width: 600px) {
	.cta-section__actions { flex-direction: column; gap: 1rem; }
	.cta-section__phone { font-size: 1.25rem; }
}

/* Service Highlights (USPs) =============================================== */
.usps {
	display: grid; gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.usp { text-align: center; padding: 1.5rem; }
.usp__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 64px; height: 64px;
	background: var(--c-red-light); color: var(--c-red);
	border-radius: 50%; font-size: 1.75rem;
	margin-bottom: 1rem;
}
.usp__title { font-size: 1.15rem; margin-bottom: 0.5rem; }
.usp__text { color: var(--c-text-light); font-size: 0.95rem; }

/* Dienstleistung — 4er Card-Grid */
.dl-cards {
	display: grid; gap: 1.5rem;
	grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) { .dl-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .dl-cards { grid-template-columns: 1fr; } }
.dl-card {
	display: flex; flex-direction: column;
	padding: 1.75rem;
	background: var(--c-off);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.dl-card--link { cursor: pointer; color: inherit; }
.dl-card--link:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: transparent; text-decoration: none; }
.dl-card__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 56px; height: 56px; margin-bottom: 1rem;
	background: var(--c-red-light); border-radius: var(--radius);
}
.dl-card__icon img { width: 32px; height: 32px; object-fit: contain; display: block; }
.dl-card__title { font-size: 1.1rem; margin: 0 0 0.5rem; }
.dl-card__text { color: var(--c-text-light); font-size: 0.92rem; line-height: 1.55; margin: 0; }
.dl-card__link {
	margin-top: auto; padding-top: 0.85rem;
	color: var(--c-red); font-weight: 600; font-size: 0.9rem;
}
.dl-card--link:hover .dl-card__link { color: var(--c-red-dark); }

/* Category Cards (LKW / Selbstfahrer / Occasionen / Diverse) ============== */
.category-grid {
	display: grid; gap: 1.75rem;
	grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 800px) { .category-grid { grid-template-columns: 1fr; gap: 1.25rem; } }

.category-card {
	position: relative; overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--c-grey); color: var(--c-white);
	min-height: 440px;
	display: flex; align-items: flex-end;
	text-decoration: none;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
	            box-shadow 0.4s ease;
}
.category-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 60px rgba(0,0,0,0.18);
	text-decoration: none;
}
@media (max-width: 800px) { .category-card { min-height: 380px; } }

/* Bild */
.category-card__media {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
	opacity: 0.7;
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
	            opacity 0.4s ease;
}
.category-card:hover .category-card__media {
	transform: scale(1.06);
	opacity: 0.85;
}

/* Gradient-Overlay */
.category-card::after {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background: linear-gradient(180deg,
		rgba(0,0,0,0.15) 0%,
		rgba(0,0,0,0.45) 55%,
		rgba(0,0,0,0.92) 100%);
	z-index: 1;
}

/* Akzent-Linie oben */
.category-card::before {
	content: ""; position: absolute; top: 0; left: 0; right: 0;
	height: 4px; background: var(--c-red);
	transform: scaleX(0); transform-origin: left center;
	z-index: 3;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-card:hover::before { transform: scaleX(1); }

/* Nummerierung 01/02/03/04 */
.category-card__number {
	position: absolute; top: 1.5rem; right: 1.75rem;
	z-index: 3;
	font-family: var(--ff-head);
	font-size: 1.75rem; font-weight: 700;
	color: rgba(255,255,255,0.45);
	letter-spacing: 0.08em;
	transition: color 0.3s ease, transform 0.3s ease;
}
.category-card:hover .category-card__number {
	color: var(--c-red);
	transform: scale(1.1);
}

/* Body */
.category-card__body {
	position: relative; z-index: 2;
	padding: 2.5rem 2rem;
	width: 100%;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-card:hover .category-card__body { transform: translateY(-4px); }

.category-card__count {
	display: inline-block;
	font-size: 0.75rem; font-weight: 600;
	letter-spacing: 0.12em; text-transform: uppercase;
	color: var(--c-white);
	background: rgba(212, 0, 11,0.85);
	padding: 0.3rem 0.7rem;
	border-radius: 999px;
	margin-bottom: 1rem;
}

.category-card__title {
	color: var(--c-white);
	font-size: clamp(1.6rem, 2.5vw, 2.1rem);
	letter-spacing: -0.015em;
	margin-bottom: 0.6rem;
	font-weight: 700;
}

.category-card__text {
	color: rgba(255,255,255,0.88);
	font-size: 1.02rem;
	line-height: 1.55;
	margin-bottom: 1.5rem;
	max-width: 380px;
}

.category-card__link {
	display: inline-flex; align-items: center; gap: 0.6rem;
	color: var(--c-white);
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	padding-bottom: 0.4rem;
	border-bottom: 2px solid transparent;
	transition: border-color 0.3s ease, gap 0.3s ease;
}
.category-card__link::after {
	content: "→";
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-card:hover .category-card__link {
	border-bottom-color: var(--c-red);
	gap: 0.85rem;
}
.category-card:hover .category-card__link::after { transform: translateX(2px); }

/* Placeholder ohne Bild */
.category-card.is-placeholder .category-card__media {
	background:
		radial-gradient(circle at 20% 30%, rgba(212,0,11,0.35) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(212,0,11,0.25) 0%, transparent 50%),
		linear-gradient(135deg, var(--c-red-dark) 0%, var(--c-red) 100%);
	opacity: 1;
}
.category-card.is-placeholder .category-card__media::before {
	content: "IH";
	position: absolute; top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	font-family: var(--ff-head);
	font-size: 6rem; font-weight: 800;
	color: rgba(255,255,255,0.06);
	letter-spacing: 0.05em;
}

/* Vehicle Card (LKW, Selbstfahrer, Occasion) ============================== */
.vehicle-grid {
	display: grid; gap: 2rem;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.vehicle-card {
	background: var(--c-white);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex; flex-direction: column;
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.vehicle-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: transparent;
}
.vehicle-card__media {
	display: block; aspect-ratio: 4/3; overflow: hidden;
	background: var(--c-surface);
	position: relative;
}
.vehicle-card__media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 0.6s ease;
}
.vehicle-card:hover .vehicle-card__media img { transform: scale(1.04); }
.vehicle-card__badge {
	position: absolute; top: 1rem; left: 1rem;
	background: var(--c-red); color: var(--c-white);
	padding: 0.3rem 0.75rem; font-size: 0.75rem; font-weight: 600;
	border-radius: var(--radius); letter-spacing: 0.05em; text-transform: uppercase;
}
.vehicle-card__placeholder {
	display: flex; align-items: center; justify-content: center;
	height: 100%; background: linear-gradient(135deg, var(--c-red-light), var(--c-surface));
	color: var(--c-red); font-size: 3rem; font-weight: 800;
}
.vehicle-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.vehicle-card__category {
	font-size: 0.75rem; color: var(--c-red); font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem;
}
.vehicle-card__title { font-size: 1.3rem; margin-bottom: 0.75rem; }
.vehicle-card__title a { color: var(--c-text); }
.vehicle-card__title a:hover { color: var(--c-red); }
.vehicle-card__specs {
	list-style: none; padding: 0; margin: 0 0 1rem;
	display: flex; gap: 1rem; flex-wrap: wrap;
	font-size: 0.875rem; color: var(--c-muted);
	padding-bottom: 1rem; border-bottom: 1px solid var(--c-border);
}
.vehicle-card__specs strong { color: var(--c-text); display: block; font-size: 1rem; }
.vehicle-card__excerpt { color: var(--c-text-light); flex: 1; margin-bottom: 1rem; font-size: 0.95rem; }
.vehicle-card__footer {
	display: flex; justify-content: space-between; align-items: center;
	padding-top: 0.5rem;
}
.vehicle-card__price { font-size: 1.1rem; font-weight: 700; color: var(--c-text); }
.vehicle-card__price small { font-weight: 400; color: var(--c-muted); font-size: 0.75rem; }

/* Vehicle Single Page ===================================================== */
.vehicle-hero {
	padding: 2rem 0 4rem;
	background: var(--c-off);
}
.vehicle-hero__breadcrumbs { font-size: 0.875rem; color: var(--c-muted); margin-bottom: 1.5rem; }
.vehicle-hero__breadcrumbs a { color: var(--c-muted); }
.vehicle-hero__breadcrumbs a:hover { color: var(--c-red); }
.vehicle-hero__inner {
	display: grid; gap: 3rem;
	grid-template-columns: 1fr;
}
@media (min-width: 960px) {
	.vehicle-hero__inner { grid-template-columns: 1.3fr 1fr; align-items: start; }
}
.vehicle-hero__media { position: relative; }
.vehicle-hero__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.vehicle-hero__category {
	color: var(--c-red); font-size: 0.85rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.75rem;
}
.vehicle-hero__title { margin-bottom: 1.25rem; }
.vehicle-hero__lead { font-size: 1.15rem; color: var(--c-text-light); margin-bottom: 2rem; }
.vehicle-hero__price-box {
	padding: 1.5rem;
	background: var(--c-white);
	border-radius: var(--radius-lg);
	border: 1px solid var(--c-border);
	margin-bottom: 1.5rem;
}
.vehicle-hero__price-label { color: var(--c-muted); font-size: 0.875rem; }
.vehicle-hero__price-value { font-size: 2rem; font-weight: 800; color: var(--c-red); line-height: 1; }
.vehicle-hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Specs Table ============================================================= */
.specs-section { padding: 4rem 0; }
.specs-grid {
	display: grid; gap: 0;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	background: var(--c-white);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.specs-grid__item {
	padding: 1.5rem;
	border-right: 1px solid var(--c-border);
	border-bottom: 1px solid var(--c-border);
}
.specs-grid__item:last-child { border-right: none; }
.specs-grid dt {
	font-size: 0.8rem; color: var(--c-muted);
	text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem;
	font-weight: 600;
}
.specs-grid dd { margin: 0; font-size: 1.25rem; font-weight: 700; color: var(--c-text); }

/* Features List =========================================================== */
.features-list {
	list-style: none; padding: 0;
	display: grid; gap: 0.875rem;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.features-list li {
	padding: 0.875rem 1rem 0.875rem 2.5rem; position: relative;
	background: var(--c-white); border-radius: var(--radius); border: 1px solid var(--c-border);
}
.features-list li::before {
	content: ""; position: absolute; left: 1rem; top: 50%;
	width: 18px; height: 18px;
	background: var(--c-red); border-radius: 50%;
	transform: translateY(-50%);
}
.features-list li::after {
	content: "✓"; position: absolute; left: 1.25rem; top: 50%;
	transform: translateY(-50%); color: var(--c-white);
	font-size: 0.7rem; font-weight: 800;
}

/* Gallery ================================================================= */
.gallery-grid {
	display: grid; gap: 1rem;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.gallery-grid__item {
	margin: 0; overflow: hidden; border-radius: var(--radius-lg);
	cursor: pointer;
}
.gallery-grid img {
	aspect-ratio: 4/3; object-fit: cover; width: 100%;
	transition: transform 0.6s ease;
}
.gallery-grid__item:hover img { transform: scale(1.05); }

/* Reference Card ========================================================== */
.reference-grid {
	display: grid; gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.reference-card {
	background: var(--c-white);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: box-shadow var(--transition), transform var(--transition);
}
.reference-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.reference-card__media { aspect-ratio: 4/3; overflow: hidden; }
.reference-card__media img { width: 100%; height: 100%; object-fit: cover; }
.reference-card__body { padding: 1.5rem; }
.reference-card__quote {
	font-style: italic; color: var(--c-text-light);
	border-left: 3px solid var(--c-red); padding-left: 1rem;
	margin: 0 0 1rem;
}
.reference-card__author { font-size: 0.9rem; color: var(--c-muted); }
.reference-card__author strong { color: var(--c-text); display: block; }

/* Blog Post Cards ========================================================= */
.post-grid {
	display: grid; gap: 2rem;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.post-card {
	background: var(--c-white);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	overflow: hidden; display: flex; flex-direction: column;
	transition: transform var(--transition), box-shadow var(--transition);
}
.post-card { position: relative; }
.post-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
/* Ganze Karte klickbar: der Titel-Link überdeckt per ::after die komplette Karte */
.post-card__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.post-card__media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card__title { font-size: 1.2rem; margin-bottom: 0.5rem; }
.post-card__title a { color: var(--c-text); }
.post-card__title a:hover { color: var(--c-red); }
.post-card__meta { font-size: 0.85rem; color: var(--c-muted); margin-bottom: 0.75rem; }
.post-card__excerpt { flex: 1; color: var(--c-text-light); font-size: 0.95rem; }

/* Single Post (Blog) ====================================================== */
.single-post { padding: 3rem 0 5rem; }
.single-post__header { text-align: center; margin-bottom: 2.5rem; }
.single-post__meta { color: var(--c-muted); font-size: 0.95rem; }
.single-post__thumbnail { margin-bottom: 2.5rem; border-radius: var(--radius-lg); overflow: hidden; }
.single-post__thumbnail img { display: block; width: 100%; height: auto; }
.post-navigation { display: flex; justify-content: space-between; gap: 1rem; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--c-border); }

/* Single Post — Content + Sidebar Layout */
.single-post__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: start;
}
@media (min-width: 960px) {
	.single-post__layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 4rem; }
}
.single-post__main { min-width: 0; }
.single-post__footer { margin-top: 2.5rem; }
.single-post__tags { color: var(--c-muted); font-size: 0.9rem; }
.page-links { margin-top: 1.5rem; font-weight: 600; }

/* Sidebar — sticky on desktop */
.single-post__sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 960px) {
	.single-post__sidebar { position: sticky; top: 6rem; }
}
.post-sidebar__card {
	background: var(--c-off);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
}

/* Author box */
.post-author { display: flex; align-items: center; gap: 1rem; }
.post-author__img {
	flex: 0 0 64px;
	width: 64px; height: 64px;
	border-radius: 999px; overflow: hidden;
	background: var(--c-surface);
}
.post-author__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-author__meta { display: flex; flex-direction: column; line-height: 1.35; }
.post-author__eyebrow {
	font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
	text-transform: uppercase; color: var(--c-red); margin-bottom: 0.2rem;
}
.post-author__name { font-weight: 700; color: var(--c-text); }
.post-author__role { font-size: 0.9rem; color: var(--c-text-light); }

/* Meta list */
.post-meta-list { list-style: none; margin: 0; padding: 0; }
.post-meta-list li {
	display: flex; justify-content: space-between; gap: 1rem;
	padding: 0.65rem 0; border-bottom: 1px solid var(--c-border);
	font-size: 0.92rem;
}
.post-meta-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.post-meta-list li:first-child { padding-top: 0; }
.post-meta-list__label { color: var(--c-muted); font-weight: 600; }
.post-meta-list__value { color: var(--c-text); text-align: right; }
.post-meta-list__value a { color: var(--c-red); }

/* Share box */
.post-share__label {
	display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
	text-transform: uppercase; color: var(--c-muted); margin-bottom: 0.85rem;
}
.post-share__links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.post-share__links a {
	padding: 0.4rem 0.85rem;
	border: 1px solid var(--c-border); border-radius: 999px;
	font-size: 0.85rem; font-weight: 500; color: var(--c-text);
	transition: all var(--transition);
}
.post-share__links a:hover { background: var(--c-red); border-color: var(--c-red); color: var(--c-white); }

/* Sidebar-Karten: Titel / Text / Label (z.B. Manufaktur-Seite) */
.post-sidebar__card-title { font-size: 1.15rem; margin: 0 0 0.5rem; }
.post-sidebar__card-text { margin: 0 0 1.1rem; color: var(--c-text-light); font-size: 0.95rem; line-height: 1.55; }
.post-sidebar__card-label {
	display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
	text-transform: uppercase; color: var(--c-muted); margin-bottom: 0.85rem;
}

/* Highlight-Box (Akzent, z.B. Konfigurator-CTA) */
.post-sidebar__card--highlight {
	background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-dark) 100%);
	border-color: transparent;
	color: var(--c-white);
}
.post-sidebar__card--highlight .post-sidebar__card-title { color: var(--c-white); }
.post-sidebar__card--highlight .post-sidebar__card-text { color: rgba(255, 255, 255, 0.9); }
.post-sidebar__card--highlight .btn--primary {
	background: var(--c-white); color: var(--c-red); border-color: var(--c-white);
}
.post-sidebar__card--highlight .btn--primary:hover {
	background: var(--c-red-light); color: var(--c-red); border-color: var(--c-red-light);
}

/* Voll-Breite-Button in Sidebar-Karten */
.btn--block { display: flex; width: 100%; justify-content: center; }

/* Sidebar-Linkliste */
.sidebar-links { list-style: none; margin: 0; padding: 0; }
.sidebar-links__item + .sidebar-links__item { border-top: 1px solid var(--c-border); }
.sidebar-links__link { display: block; padding: 0.75rem 0; }
.sidebar-links__item:first-child .sidebar-links__link { padding-top: 0; }
.sidebar-links__item:last-child .sidebar-links__link { padding-bottom: 0; }
.sidebar-links__label {
	display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
	font-weight: 600; color: var(--c-text); transition: color var(--transition);
}
.sidebar-links__arrow { color: var(--c-red); transition: transform var(--transition); }
.sidebar-links__link:hover .sidebar-links__label { color: var(--c-red); }
.sidebar-links__link:hover .sidebar-links__arrow { transform: translateX(3px); }
.sidebar-links__desc { display: block; margin-top: 0.2rem; font-size: 0.85rem; color: var(--c-text-light); }

/* Inhalt ohne Sidebar → einspaltig, schmal zentriert */
.single-post__layout--full { display: block; max-width: var(--container-narrow); margin: 0 auto; }

/* Page Header ============================================================= */
.page-header {
	padding: 4rem 0 3rem;
	background: var(--c-off);
	border-bottom: 1px solid var(--c-border);
	margin-bottom: 3rem;
	text-align: center;
}
.page-header__breadcrumbs { font-size: 0.875rem; color: var(--c-muted); margin-bottom: 1rem; }
.page-header__title { margin-bottom: 0.5rem; }
.page-header__lead { color: var(--c-text-light); max-width: 720px; margin: 1rem auto 0; }

/* Taxonomy Filter ========================================================= */
.taxonomy-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; justify-content: center; }
.taxonomy-filter__item {
	padding: 0.5rem 1.25rem;
	border: 1px solid var(--c-border); border-radius: 999px;
	color: var(--c-text); font-size: 0.9rem; font-weight: 500;
	transition: all var(--transition);
}
.taxonomy-filter__item:hover,
.taxonomy-filter__item.is-active { background: var(--c-red); color: var(--c-white); border-color: var(--c-red); text-decoration: none; }

/* CTA Section ============================================================= */
.cta-section {
	padding: var(--space-xl) 0;
	background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-dark) 100%);
	color: var(--c-white);
	text-align: center;
}
.cta-section h2 { color: var(--c-white); }
.cta-section__lead { font-size: 1.15rem; max-width: 600px; margin: 0 auto 2rem; opacity: 0.95; }

/* Manufaktur Teaser ======================================================= */
.manufaktur-teaser {
	display: grid; gap: 0;
	grid-template-columns: 1fr;
	background: var(--c-grey); color: var(--c-text);
	border-radius: var(--radius-lg); overflow: hidden;
}
@media (min-width: 800px) {
	.manufaktur-teaser { grid-template-columns: 1fr 1fr; }
}
.manufaktur-teaser__media {
	min-height: 320px;
	background-size: cover; background-position: center;
}
.manufaktur-teaser__body { padding: 3rem; align-self: center; }
.manufaktur-teaser__eyebrow { color: var(--c-red); font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.85rem; margin-bottom: 0.75rem; }
.manufaktur-teaser h2 { color: var(--c-text); margin-bottom: 1rem; }

/* FAQ Accordion =========================================================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
	border-bottom: 1px solid var(--c-border);
	padding: 0;
}
.faq-item summary {
	padding: 1.5rem 0; cursor: pointer;
	font-weight: 600; font-size: 1.1rem;
	display: flex; justify-content: space-between; align-items: center;
	gap: 1rem; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: "+"; font-size: 1.5rem; color: var(--c-red); font-weight: 300;
	transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__content { padding: 0 0 1.5rem; color: var(--c-text-light); }

/* Pagination ============================================================== */
.pagination, .nav-links { display: flex; gap: 0.5rem; justify-content: center; margin: 4rem 0 2rem; }
.page-numbers {
	padding: 0.5rem 0.95rem; border: 1px solid var(--c-border); border-radius: var(--radius);
	color: var(--c-text); font-weight: 500;
}
.page-numbers:hover { background: var(--c-off); text-decoration: none; }
.page-numbers.current { background: var(--c-red); color: var(--c-white); border-color: var(--c-red); }

/* Footer ================================================================== */
.site-footer { background: var(--c-grey); color: var(--c-text); padding: 4rem 0 0; margin-top: 4rem; }
.site-footer h3, .site-footer h4 { color: var(--c-text); }
.site-footer__inner {
	display: grid; gap: 3rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	padding-bottom: 3rem;
}
.site-footer__col h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.site-footer__col h4 { font-size: 1rem; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.site-footer a { color: var(--c-text); }
.site-footer a:hover { color: var(--c-red); }
.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li { margin-bottom: 0.5rem; }
.site-footer__bottom {
	border-top: 1px solid rgba(0,0,0,0.1);
	padding: 1.5rem 0;
	font-size: 0.875rem; color: var(--c-text-light);
	display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}

/* Empty States ============================================================ */
.empty-state {
	text-align: center; padding: 4rem 2rem;
	background: var(--c-off); border-radius: var(--radius-lg);
	color: var(--c-text-light);
}
.empty-state__icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.5; }

/* Entry Content (Gutenberg) =============================================== */
.entry-content { line-height: 1.8; }
.entry-content > * { margin-bottom: 1.25em; }
.entry-content img { border-radius: var(--radius); }
.entry-content blockquote {
	border-left: 4px solid var(--c-red); padding-left: 1.5rem;
	font-style: italic; color: var(--c-text-light);
}
.entry-content h2 { margin-top: 2.5em; }
.entry-content h3 { margin-top: 2em; }

/* Mobile / Overlay-Menü ==================================================== */
@media (max-width: 1200px) {

	body:not(.has-hero) { padding-top: 72px; }
	.site-header__topbar { display: none; }

	/* Branding & Burger bleiben über dem Overlay sichtbar */
	.site-branding { position: relative; z-index: 250; }
	.menu-toggle {
		display: block; position: relative; z-index: 250;
		color: inherit; padding: 0.5rem; margin-right: -0.5rem;
	}
	.menu-toggle span {
		display: block; width: 28px; height: 2px;
		background: currentColor; margin: 6px 0;
		border-radius: 2px;
		transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1),
		            opacity 0.2s ease,
		            background 0.3s ease;
		transform-origin: center;
	}

	/* Burger → X */
	body.menu-open { overflow: hidden; }
	body.menu-open .menu-toggle { color: var(--c-white); }
	body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
	body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
	body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

	/* Logo bleibt sichtbar, aber Schrift wird weiss wenn Overlay offen */
	body.menu-open .site-logo { color: var(--c-white); }
	body.menu-open .site-logo__mark { background: var(--c-white); color: var(--c-red); }
	body.menu-open .site-logo__text small { color: rgba(255,255,255,0.7); }

	/* Header über Overlay sichtbar (für Logo/X) */
	body.menu-open .site-header.is-scrolled,
	body.menu-open .site-header {
		background: transparent !important;
		box-shadow: none !important;
		backdrop-filter: none !important;
		-webkit-backdrop-filter: none !important;
	}

	/* OVERLAY MENÜ */
	.site-navigation {
		position: fixed; inset: 0;
		width: 100vw; height: 100vh; max-width: none;
		background: linear-gradient(135deg, #0a0a0a 0%, #1f0005 50%, #4d0008 100%);
		color: var(--c-white);
		z-index: 200;
		overflow-y: auto;
		padding: 7rem 1.5rem 3rem;
		display: flex; flex-direction: column;

		opacity: 0; visibility: hidden;
		transform: scale(1.02);
		transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		            visibility 0.4s,
		            transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	}
	body.menu-open .site-navigation {
		opacity: 1; visibility: visible; transform: scale(1);
	}

	/* Subtile Background-Akzente */
	.site-navigation::before,
	.site-navigation::after {
		content: ""; position: absolute; pointer-events: none;
		border-radius: 50%;
		filter: blur(80px);
		opacity: 0; transition: opacity 0.6s ease 0.2s;
	}
	.site-navigation::before {
		top: 20%; right: -100px; width: 360px; height: 360px;
		background: rgba(212, 0, 11,0.4);
	}
	.site-navigation::after {
		bottom: -100px; left: -100px; width: 320px; height: 320px;
		background: rgba(212, 0, 11,0.3);
	}
	body.menu-open .site-navigation::before,
	body.menu-open .site-navigation::after { opacity: 1; }

	/* Menü-Liste */
	.primary-menu {
		flex-direction: column; align-items: stretch; gap: 0;
		padding: 0; margin: 0 auto;
		max-width: 720px; width: 100%;
		position: relative; z-index: 1;
	}
	.primary-menu > li {
		border-bottom: 1px solid rgba(255,255,255,0.08);
		opacity: 0; transform: translateY(20px);
		transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	}
	body.menu-open .primary-menu > li { opacity: 1; transform: translateY(0); }
	/* Stagger */
	body.menu-open .primary-menu > li:nth-child(1) { transition-delay: 0.18s; }
	body.menu-open .primary-menu > li:nth-child(2) { transition-delay: 0.22s; }
	body.menu-open .primary-menu > li:nth-child(3) { transition-delay: 0.26s; }
	body.menu-open .primary-menu > li:nth-child(4) { transition-delay: 0.30s; }
	body.menu-open .primary-menu > li:nth-child(5) { transition-delay: 0.34s; }
	body.menu-open .primary-menu > li:nth-child(6) { transition-delay: 0.38s; }
	body.menu-open .primary-menu > li:nth-child(7) { transition-delay: 0.42s; }
	body.menu-open .primary-menu > li:nth-child(8) { transition-delay: 0.46s; }
	body.menu-open .primary-menu > li:nth-child(9) { transition-delay: 0.50s; }
	body.menu-open .primary-menu > li:nth-child(10) { transition-delay: 0.54s; }

	.primary-menu > li > a {
		display: flex; align-items: center; justify-content: space-between;
		color: var(--c-white) !important;
		font-size: clamp(1.5rem, 5vw, 2.25rem);
		font-weight: 700;
		letter-spacing: -0.01em;
		padding: 1rem 0;
		width: 100%; border-radius: 0; background: transparent !important;
		transition: color 0.25s ease, transform 0.25s ease;
	}
	.primary-menu > li > a:hover,
	.primary-menu > li.is-open > a {
		color: var(--c-red-light) !important;
		transform: translateX(8px);
	}
	.primary-menu > li > a::after { display: none; }
	.primary-menu .caret { font-size: 0.6em; opacity: 0.6; transition: transform 0.3s ease; }
	.primary-menu > li.is-open .caret { transform: rotate(180deg); }

	/* Sub-Menü Akkordeon */
	.primary-menu .sub-menu {
		position: static; opacity: 1; visibility: visible; transform: none;
		background: transparent !important; box-shadow: none; border-top: none;
		padding: 0 0 0 1.25rem; border-radius: 0; min-width: 0;
		max-height: 0; overflow: hidden;
		transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
	}
	.primary-menu > li.is-open > .sub-menu {
		max-height: 600px;
		padding: 0 0 1rem 1.25rem;
	}
	.primary-menu .sub-menu a {
		display: block; padding: 0.6rem 0;
		color: rgba(255,255,255,0.65) !important;
		font-size: 1.05rem; font-weight: 400;
		background: transparent !important;
		transition: color 0.2s ease, transform 0.2s ease;
	}
	.primary-menu .sub-menu a:hover {
		color: var(--c-white) !important;
		transform: translateX(4px);
	}

	/* CTA */
	.primary-menu__cta { margin-top: 2rem !important; border-bottom: none !important; }
	.primary-menu__cta .btn {
		width: 100%; justify-content: center;
		background: var(--c-white) !important; color: var(--c-red) !important;
		border-color: var(--c-white) !important;
		font-size: 1.1rem; padding: 1rem 1.5rem;
	}
	.primary-menu__cta .btn:hover {
		background: var(--c-red-light) !important; color: var(--c-red) !important;
	}
}

/* Tablet polish */
@media (max-width: 1024px) {
	.section { padding: 3.5rem 0; }
	.section-header { margin-bottom: 2rem; }
	.hero__inner { padding: 4rem 0 3rem; }
	.page-header { padding: 3rem 0 2.5rem; }
	.cta-section { padding: 3.5rem 0; }
	.specs-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile polish */
@media (max-width: 600px) {
	.section { padding: 2.5rem 0; }
	.section-header { margin-bottom: 1.5rem; }
	.btn { padding: 0.8rem 1.5rem; font-size: 0.95rem; }
	.btn--lg { padding: 0.9rem 1.6rem; font-size: 1rem; }

	.container, .container--narrow, .container--wide { padding: 0 1.25rem; }

	.hero { min-height: 480px; padding-top: 72px; }
	.hero__inner { padding: 3rem 0 2rem; }
	.hero__lead { font-size: 1.05rem; }
	.hero__cta { gap: 0.75rem; }
	.hero__cta .btn { width: 100%; }

	.page-header { padding: 2.5rem 0 2rem; }

	.usps { grid-template-columns: 1fr; gap: 1rem; }
	.usp { padding: 1rem; }

	.category-grid { grid-template-columns: 1fr; gap: 1rem; }
	.category-card { min-height: 260px; }
	.category-card__body { padding: 1.5rem; }

	.vehicle-grid { grid-template-columns: 1fr; gap: 1.25rem; }
	.vehicle-card__body { padding: 1.25rem; }

	.post-grid { grid-template-columns: 1fr; gap: 1.25rem; }
	.reference-grid { grid-template-columns: 1fr; gap: 1.25rem; }

	.specs-grid { grid-template-columns: 1fr; }
	.specs-grid__item { padding: 1rem; }

	.vehicle-hero { padding: 1.5rem 0 3rem; }
	.vehicle-hero__inner { gap: 2rem; }
	.vehicle-hero__title { font-size: clamp(1.75rem, 7vw, 2.25rem); }
	.vehicle-hero__cta { flex-direction: column; }
	.vehicle-hero__cta .btn { width: 100%; }

	.gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }

	.manufaktur-teaser__body { padding: 2rem 1.5rem; }

	.cta-section { padding: 3rem 0; }
	.cta-section__lead { font-size: 1rem; }

	.site-footer { padding: 3rem 0 0; }
	.site-footer__inner { gap: 2rem; padding-bottom: 2rem; }
	.site-footer__bottom { flex-direction: column; text-align: center; }

	.faq-item summary { font-size: 1rem; padding: 1.25rem 0; gap: 0.75rem; }

	.taxonomy-filter { gap: 0.4rem; }
	.taxonomy-filter__item { padding: 0.4rem 1rem; font-size: 0.85rem; }
}

/* Sehr kleine Screens (< 380px) */
@media (max-width: 380px) {
	.site-logo__text { font-size: 0.95rem; }
	.site-logo__mark { width: 38px; height: 38px; }
	h1 { font-size: 1.85rem; }
	h2 { font-size: 1.5rem; }
}

/* ==========================================================================
   Header-Logos (dunkel/weiss-Switch je nach Hero/Scroll-Status)
   ========================================================================== */
.site-logo--image {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}
.site-logo__img {
	display: block;
	height: 48px;
	width: auto;
	max-width: 240px;
	object-fit: contain;
	transition: opacity 0.3s ease;
}

/* Default: dunkles Logo zeigen, weisses verstecken */
.site-logo__img--light { display: none; }

/* Wenn Header transparent über Hero ist → weisses Logo zeigen */
.has-hero .site-header:not(.is-scrolled) .site-logo__img--light { display: block; }
.has-hero .site-header:not(.is-scrolled) .site-logo__img--dark  { display: none; }

/* Logo bleibt in Originalfarben (inkl. Rot). Über dem Hero / im offenen
   Mobile-Menü nur ein dezenter Schatten zur besseren Abhebung auf dunklem Grund. */
.has-hero .site-header:not(.is-scrolled) .site-logo__img,
body.menu-open .site-logo__img {
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.55));
}

@media (max-width: 1200px) {
	.site-logo__img { height: 40px; }
}

/* ==========================================================================
   Footer — Logo
   ========================================================================== */
.site-footer__logo {
	display: inline-block;
	line-height: 0;
	margin-bottom: 0.5rem;
}
.site-footer__logo-img {
	display: block;
	width: auto;
	height: 78px;
	max-width: 308px;
	object-fit: contain;
}

/* ==========================================================================
   Footer — Social Icons
   ========================================================================== */
.site-footer__social {
	display: flex;
	gap: 0.85rem;
	flex-wrap: wrap;
	padding: 1.5rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin: 1rem 0;
}
.site-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px; height: 40px;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.85);
	transition: all var(--transition);
}
.site-footer__social-link:hover {
	background: var(--c-red);
	border-color: var(--c-red);
	color: var(--c-white);
	transform: translateY(-2px);
}
.site-footer__social-icon {
	width: 18px; height: 18px;
	object-fit: contain;
	display: block;
	filter: brightness(0) invert(1);
}

/* ==========================================================================
   LKW Single — Premium Layout
   ========================================================================== */

.lkw-single { color: var(--c-text); }

/* Hero ---------------------------------------------------------------- */
.lkw-hero {
	position: relative;
	padding: 1.5rem 0 0;
	background:
		linear-gradient(180deg, var(--c-off) 0%, var(--c-white) 100%);
}
.lkw-hero::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 60%;
	background:
		radial-gradient(circle at 80% 20%, rgba(212,0,11,0.06), transparent 50%);
	pointer-events: none;
	z-index: 0;
}
.lkw-hero > .container { position: relative; z-index: 1; }

.lkw-hero__breadcrumbs {
	display: flex; gap: 0.4rem; flex-wrap: wrap; align-items: center;
	font-size: 0.875rem; color: var(--c-muted); margin-bottom: 2rem;
}
.lkw-hero__breadcrumbs a { color: var(--c-muted); }
.lkw-hero__breadcrumbs a:hover { color: var(--c-red); }
.lkw-hero__breadcrumbs span[aria-hidden] { opacity: 0.6; }

/* Hero-Media: Bild mit Titel-Overlay unten links --------------------- */
.lkw-hero__media {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	background: var(--c-surface);
}
.lkw-hero__media img,
.lkw-hero__image {
	width: 100%;
	height: auto;
	display: block;
	max-height: 70vh;
	object-fit: contain;
}

/* Dunkler Verlauf am unteren Bildrand für Lesbarkeit */
.lkw-hero__media::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 55%;
	background: linear-gradient(to top,
		rgba(0,0,0,0.78) 0%,
		rgba(0,0,0,0.55) 30%,
		rgba(0,0,0,0.20) 65%,
		rgba(0,0,0,0) 100%);
	pointer-events: none;
}

/* Overlay-Container links unten */
.lkw-hero__overlay {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: clamp(1.5rem, 4vw, 3rem);
	color: var(--c-white);
	z-index: 1;
}
.lkw-hero__category {
	display: inline-block;
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--c-white);
	background: rgba(212, 0, 11,0.92);
	padding: 0.35rem 0.8rem;
	border-radius: 999px;
	margin-bottom: 0.9rem;
	border: 0;
}
.lkw-hero__title {
	margin: 0;
	color: var(--c-white);
	font-size: clamp(1.75rem, 4.5vw, 3.25rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.1;
	text-shadow: 0 2px 16px rgba(0,0,0,0.35);
	max-width: 28ch;
}

@media (max-width: 600px) {
	.lkw-hero__media img,
	.lkw-hero__image { max-height: 60vh; }
}

/* Intro-Section in der Hauptspalte (neben der Sidebar) ------------------ */
.lkw-intro {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.lkw-intro__text {
	font-size: 1rem;
	color: var(--c-text-light);
	line-height: 1.7;
}
.lkw-intro__text p:last-child { margin-bottom: 0; }
.lkw-intro__cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }
@media (max-width: 600px) {
	.lkw-intro__cta .btn { flex: 1 1 auto; }
}

/* 2-Column Layout (Main + Sidebar) ------------------------------------- */
.lkw-layout { padding: 2.5rem 0 5rem; }
.lkw-layout__grid {
	display: grid;
	gap: 3rem;
}
@media (min-width: 1000px) {
	.lkw-layout__grid {
		grid-template-columns: minmax(0, 1fr) 320px;
		gap: 4rem;
	}
}
.lkw-layout__main { min-width: 0; }
.lkw-layout__main > section { margin-top: 0; }
.lkw-layout__main > section + section { margin-top: 3.5rem; }
.lkw-layout__main > .lkw-intro + section { margin-top: 3rem; }

/* Slider --------------------------------------------------------------- */
.lkw-slider { scroll-margin-top: 100px; }
.lkw-slider .section-header { margin-bottom: 1.75rem; text-align: left; }
.lkw-slider .section-header h2 { margin-bottom: 0.4rem; }
.section-header__lead {
	color: var(--c-text-light);
	font-size: 1rem;
	margin: 0;
	max-width: 56ch;
}

/* Stage: wrappt Viewport + Pfeile + Counter */
.lkw-slider__stage {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	background: var(--c-surface);
}

.lkw-slider__viewport {
	overflow: hidden;
}
.lkw-slider__track {
	display: flex;
	transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
	will-change: transform;
}
.lkw-slider__slide {
	flex: 0 0 100%;
	margin: 0;
	aspect-ratio: 16 / 10;
	background: var(--c-surface);
}
.lkw-slider__slide img {
	width: 100%; height: 100%;
	object-fit: cover; display: block;
}

/* Pfeile direkt auf dem Bild — Glas-Effekt, kein Kreis */
.lkw-slider__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 52px; height: 52px;
	display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(0, 0, 0, 0.32);
	-webkit-backdrop-filter: blur(12px) saturate(140%);
	backdrop-filter: blur(12px) saturate(140%);
	color: var(--c-white);
	border-radius: 2px;
	cursor: pointer;
	padding: 0;
	z-index: 2;
	opacity: 0;
	transition: opacity 0.35s ease, background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
.lkw-slider__stage:hover .lkw-slider__btn,
.lkw-slider__btn:focus-visible {
	opacity: 1;
}
.lkw-slider__btn:hover {
	background: rgba(0, 0, 0, 0.55);
	border-color: rgba(255, 255, 255, 0.32);
}
.lkw-slider__btn:active {
	transform: translateY(-50%) scale(0.96);
}
.lkw-slider__btn--prev { left: 1.25rem; }
.lkw-slider__btn--next { right: 1.25rem; }
.lkw-slider__btn svg { display: block; }

/* Auf Touch-Geräten Pfeile permanent dezent sichtbar */
@media (hover: none) {
	.lkw-slider__btn { opacity: 0.85; }
}

/* Bild-Zähler unten rechts (ersetzt visuell den klobigen Controls-Bar) */
.lkw-slider__counter {
	position: absolute;
	bottom: 1rem;
	right: 1.25rem;
	z-index: 2;
	font-family: var(--ff-head);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--c-white);
	background: rgba(0, 0, 0, 0.45);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	padding: 0.4rem 0.75rem;
	border-radius: 2px;
	display: inline-flex;
	gap: 0.3rem;
	align-items: center;
	font-variant-numeric: tabular-nums;
}
.lkw-slider__counter-divider { opacity: 0.55; }

/* Dots unter dem Slider — schmale Linien statt Kreise */
.lkw-slider__dots {
	display: flex;
	gap: 0.4rem;
	align-items: center;
	justify-content: center;
	margin-top: 1.25rem;
}
.lkw-slider__dot {
	width: 22px; height: 2px;
	background: var(--c-border);
	border: 0; padding: 0;
	cursor: pointer;
	border-radius: 0;
	transition: width 0.35s ease, background 0.35s ease;
}
.lkw-slider__dot:hover { background: var(--c-muted); }
.lkw-slider__dot.is-active {
	background: var(--c-red);
	width: 36px;
}

/* Beschreibungs-Sektionen — kompaktes 2er-Grid -------------------------- */
.lkw-sections {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
@media (min-width: 700px) {
	.lkw-sections { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

.lkw-section {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	padding: 1.4rem 1.5rem;
	background: var(--c-white);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.lkw-section:hover {
	box-shadow: var(--shadow);
	border-color: var(--c-red-light);
	transform: translateY(-1px);
}
.lkw-section__index {
	font-family: var(--ff-head);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--c-red);
	text-transform: uppercase;
	margin: 0;
}
.lkw-section__index::before { content: "— "; opacity: 0.6; }
.lkw-section__body { display: contents; }
.lkw-section__title {
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0;
	letter-spacing: -0.005em;
	line-height: 1.3;
}
.lkw-section__content {
	color: var(--c-text-light);
	font-size: 0.93rem;
	line-height: 1.6;
}
.lkw-section__content p { margin-bottom: 0.5em; }
.lkw-section__content p:last-child { margin-bottom: 0; }
.lkw-section__content ul,
.lkw-section__content ol { margin: 0 0 0.5em 1.1em; padding: 0; }
.lkw-section__content li { margin-bottom: 0.2em; }
.lkw-section__content strong { color: var(--c-text); font-weight: 700; }

@media (max-width: 600px) {
	.lkw-section { padding: 1.2rem 1.25rem; }
	.lkw-section__title { font-size: 1.05rem; }
	.lkw-section__content { font-size: 0.9rem; }
}

/* Planzeichnungen ------------------------------------------------------ */
.lkw-plans .section-header { margin-bottom: 1.75rem; text-align: left; }
.lkw-plans__grid {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.lkw-plans__item {
	margin: 0;
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--c-white);
	transition: all var(--transition);
}
.lkw-plans__item:hover {
	border-color: var(--c-red);
	box-shadow: var(--shadow);
}
.lkw-plans__item a {
	display: block;
}
.lkw-plans__item img {
	width: 100%;
	height: auto;
	display: block;
	background: var(--c-surface);
	transition: transform 0.5s ease;
}
.lkw-plans__item:hover img { transform: scale(1.01); }

/* Produkte / Zubehör — kompaktes 2er-Grid ------------------------------ */
.lkw-products .section-header { margin-bottom: 1.75rem; text-align: left; }
.lkw-products__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}
@media (min-width: 700px) {
	.lkw-products__list { grid-template-columns: repeat(2, 1fr); }
}

.lkw-product {
	display: flex;
	flex-direction: column;
	background: var(--c-white);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: all var(--transition);
}
.lkw-product:hover {
	border-color: var(--c-red-light);
	box-shadow: var(--shadow);
	transform: translateY(-1px);
}
.lkw-product__media {
	background: var(--c-surface);
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.lkw-product__image,
.lkw-product__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}
.lkw-product__body {
	padding: 1.25rem 1.4rem 1.4rem;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	flex: 1;
}
.lkw-product__title {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: -0.005em;
	line-height: 1.3;
}
.lkw-product__features {
	color: var(--c-text-light);
	font-size: 0.9rem;
	line-height: 1.55;
}
.lkw-product__features p { margin-bottom: 0.45em; }
.lkw-product__features p:last-child { margin-bottom: 0; }
.lkw-product__features ul { margin: 0 0 0 1.05em; padding: 0; }
.lkw-product__features li { margin-bottom: 0.2em; }
.lkw-product__price {
	font-family: var(--ff-head);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--c-red);
	letter-spacing: -0.005em;
	padding: 0.55rem 0;
	border-top: 1px dashed var(--c-border);
	margin-top: auto;
}
.lkw-product .btn { align-self: flex-start; padding: 0; font-size: 0.9rem; }

/* Gutenberg-Content (zusätzlich) — schlicht im Layout ------------------ */
.lkw-content .entry-content > *:first-child { margin-top: 0; }
.lkw-content .entry-content > *:last-child  { margin-bottom: 0; }
.lkw-content h2,
.lkw-content h3 { margin-top: 1.5em; }

/* Sidebar -------------------------------------------------------------- */
.lkw-sidebar { min-width: 0; }
@media (min-width: 1000px) {
	.lkw-sidebar__sticky {
		position: sticky;
		top: 100px;
		display: flex;
		flex-direction: column;
		gap: 1.25rem;
	}
}
@media (max-width: 999px) {
	.lkw-sidebar__sticky {
		display: flex;
		flex-direction: column;
		gap: 1.25rem;
	}
}

.lkw-sidebar__card {
	background: var(--c-white);
	border: 1px solid var(--c-border);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	box-shadow: var(--shadow-sm);
}
.lkw-sidebar__card--contact {
	background: var(--c-grey);
	color: var(--c-text);
	border-color: var(--c-border);
}
.lkw-sidebar__card--contact .lkw-sidebar__title { color: var(--c-text); }
.lkw-sidebar__card--contact .lkw-sidebar__lead   { color: var(--c-text-light); }

/* Logo in der Kontakt-Card — gross und prominent */
.lkw-sidebar__logo {
	display: flex;
	justify-content: center;
	margin: 0 0 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	line-height: 0;
}
.lkw-sidebar__logo-img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: 120px;
	object-fit: contain;
}
/* Zweites Logo direkt unter dem ersten: der Trenner sitzt unter dem zweiten Logo */
.lkw-sidebar__logo:has( + .lkw-sidebar__logo--secondary ) {
	margin-bottom: 1rem;
	padding-bottom: 0;
	border-bottom: 0;
}
.lkw-sidebar__logo--secondary .lkw-sidebar__logo-img { max-height: 90px; }

.lkw-sidebar__title {
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 0.85rem;
	letter-spacing: -0.005em;
}
.lkw-sidebar__lead {
	font-size: 0.92rem;
	color: var(--c-text-light);
	line-height: 1.55;
	margin: 0 0 1.25rem;
}

.lkw-sidebar__contact-row {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.6rem 0;
	font-size: 0.95rem;
	color: var(--c-text);
	border-top: 1px solid rgba(0,0,0,0.1);
	transition: color var(--transition);
}
.lkw-sidebar__contact-row:first-of-type { border-top: 0; padding-top: 0; }
.lkw-sidebar__contact-row:hover { color: var(--c-red); }
a.lkw-sidebar__contact-row:hover { color: var(--c-red); }
.lkw-sidebar__contact-row--text { cursor: default; }
.lkw-sidebar__contact-row--text p { margin: 0; }
.lkw-sidebar__contact-text {
	flex: 1;
	min-width: 0;
	line-height: 1.5;
}
.lkw-sidebar__contact-text p {
	margin: 0 0 0.25em;
}
.lkw-sidebar__contact-text p:last-child { margin-bottom: 0; }
.lkw-sidebar__contact-icon {
	flex: 0 0 auto;
	font-size: 0.95rem;
	opacity: 0.85;
	margin-top: 2px;
}

.lkw-sidebar__btn {
	width: 100%;
	margin-top: 1.25rem;
	justify-content: center;
}

/* Sidebar Search-Form */
.lkw-sidebar__search {
	display: flex;
	gap: 0;
	border: 1px solid var(--c-border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color var(--transition);
}
.lkw-sidebar__search:focus-within { border-color: var(--c-red); }
.lkw-sidebar__search input[type="search"] {
	flex: 1;
	border: 0;
	padding: 0.7rem 0.9rem;
	font: inherit;
	font-size: 0.95rem;
	background: var(--c-white);
	color: var(--c-text);
	min-width: 0;
}
.lkw-sidebar__search input[type="search"]:focus { outline: 0; }
.lkw-sidebar__search button {
	border: 0;
	padding: 0 1rem;
	background: var(--c-red);
	color: var(--c-white);
	cursor: pointer;
	transition: background var(--transition);
	display: inline-flex; align-items: center; justify-content: center;
}
.lkw-sidebar__search button:hover { background: var(--c-red-dark); }

/* Sidebar — Andere Modelle */
.lkw-sidebar__list {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}
.lkw-sidebar__list a {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.6rem;
	color: var(--c-text);
	border-radius: var(--radius);
	transition: background var(--transition);
}
.lkw-sidebar__list a:hover {
	background: var(--c-off);
	color: var(--c-red);
}
.lkw-sidebar__list-thumb {
	flex: 0 0 48px;
	width: 48px; height: 48px;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--c-surface);
	display: flex; align-items: center; justify-content: center;
}
.lkw-sidebar__list-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lkw-sidebar__list-thumb--placeholder {
	font-weight: 700; color: var(--c-muted);
	font-size: 0.85rem; letter-spacing: 0.05em;
}
.lkw-sidebar__list-title {
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.3;
}
.lkw-sidebar__more {
	display: inline-block;
	margin-top: 1rem;
	font-size: 0.9rem;
}

/* Produkt-CPTs (Sattelschrank / Pferdesolarium / Golfcar) ---------------- */
/* Technische Daten — 2-spaltige Label/Wert-Liste */
.prod-specs__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.5rem; }
@media (max-width: 600px) { .prod-specs__grid { grid-template-columns: 1fr; } }
.prod-spec {
	display: flex; justify-content: space-between; gap: 1rem;
	padding: 0.7rem 0; border-bottom: 1px solid var(--c-border);
	font-size: 0.95rem;
}
.prod-spec__label { color: var(--c-muted); font-weight: 600; }
.prod-spec__value { color: var(--c-text); text-align: right; }

/* Eckdaten-Liste in der Sidebar-Card */
.lkw-sidebar__facts { margin: 0 0 1rem; }

/* Datenblatt-Download in der Sidebar */
.lkw-sidebar__datasheet {
	display: flex; align-items: center; gap: 0.6rem;
	margin-top: 0.85rem; padding: 0.7rem 0.85rem;
	background: var(--c-off); border: 1px solid var(--c-border);
	border-radius: var(--radius); color: var(--c-text);
	font-size: 0.92rem; font-weight: 500;
	transition: background var(--transition), color var(--transition);
}
.lkw-sidebar__datasheet:hover { background: var(--c-surface); color: var(--c-red); }
.lkw-sidebar__datasheet small { display: block; color: var(--c-muted); font-weight: 400; font-size: 0.8rem; }

/* Mobile-Anpassungen --------------------------------------------------- */
@media (max-width: 768px) {
	.lkw-hero { padding: 1rem 0 2rem; }
	.lkw-hero__cta .btn { flex: 1 1 auto; }
	.lkw-layout { padding: 2.5rem 0 3rem; }
	.lkw-layout__main > section + section { margin-top: 3rem; }
}

/* CZV- / FAQ-Seite ======================================================== */
/* Abschnitts-Titel mit rotem Unterstrich (trennt Links / Fragen / Text klar) */
.czv-block-title {
	font-size: 1.5rem;
	margin: 0 0 1.25rem;
	padding-bottom: 0.6rem;
	border-bottom: 2px solid var(--c-red);
}
.czv-resources {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}
/* Eintrag ohne URL = reiner Hinweistext (nicht wie ein Link gestaltet) */
.czv-resources__item--text {
	background: transparent;
	border-left-color: var(--c-border);
	color: var(--c-text-light);
}
.czv-resources__item--text:hover { background: transparent; }
.czv-resources__item {
	background: var(--c-off);
	border-left: 3px solid var(--c-red);
	border-radius: var(--radius);
	padding: 1rem 1.25rem;
	font-size: 1rem;
	line-height: 1.5;
	transition: background var(--transition);
}
.czv-resources__item:hover { background: var(--c-surface); }
.czv-resources__item a {
	color: var(--c-text);
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}
.czv-resources__item a::after {
	content: "↗";
	color: var(--c-red);
	font-size: 0.95em;
	transition: transform var(--transition);
}
.czv-resources__item a:hover { color: var(--c-red); }
.czv-resources__item a:hover::after { transform: translate(2px, -2px); }

.czv-lead {
	font-size: 1.15rem;
	line-height: 1.6;
	color: var(--c-text);
	font-weight: 500;
	max-width: 720px;
	margin: 0 auto;
	padding: 1.5rem 1.75rem;
	background: var(--c-white);
	border-left: 4px solid var(--c-red);
	border-radius: var(--radius);
}

.faq-item summary {
	gap: 1.25rem;
}
.faq-item__number {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	height: 2.25rem;
	padding: 0 0.5rem;
	background: var(--c-red);
	color: var(--c-white);
	font-size: 0.875rem;
	font-weight: 600;
	border-radius: var(--radius);
	letter-spacing: 0.02em;
}
.faq-item__question {
	flex: 1 1 auto;
}

.czv-schluss {
	background: var(--c-off);
	border-radius: var(--radius-lg);
	padding: 2rem 2.25rem;
	color: var(--c-text);
	line-height: 1.65;
}
.czv-schluss h2,
.czv-schluss h3 { margin-top: 0; }
.czv-schluss p:last-child { margin-bottom: 0; }

/* Downloads-Seite ========================================================= */
.download-section {
	margin-bottom: 3.5rem;
}
.download-section:last-child { margin-bottom: 0; }
.download-section__title {
	font-size: 1.5rem;
	margin: 0 0 0.75rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--c-red);
}
.download-section__description {
	color: var(--c-text-light);
	margin-bottom: 1.25rem;
}
.download-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.5rem;
}
.download-item {
	background: var(--c-off);
	border-radius: var(--radius);
	transition: background var(--transition);
}
.download-item:hover { background: var(--c-surface); }
.download-item__link {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	color: var(--c-text);
	text-decoration: none;
}
.download-item__link::before {
	content: "📄";
	font-size: 1.25rem;
	flex: 0 0 auto;
}
.download-item__link:hover { color: var(--c-red); }
.download-item__title {
	flex: 1 1 auto;
	font-weight: 500;
}
.download-item__meta {
	flex: 0 0 auto;
	font-size: 0.875rem;
	color: var(--c-muted);
}
.download-item > .download-item__title {
	display: block;
	padding: 1rem 1.25rem;
	color: var(--c-muted);
}

/* Downloads — Sektionen-Template (Sprungnav, Badge, Beschreibung, Link-Icon) */
.download-toc {
	display: flex; flex-wrap: wrap; gap: 0.5rem;
	margin-bottom: 2.5rem;
}
.download-toc__item {
	padding: 0.45rem 1rem;
	background: var(--c-off); border: 1px solid var(--c-border);
	border-radius: 999px; font-size: 0.88rem; font-weight: 500; color: var(--c-text);
	transition: all var(--transition);
}
.download-toc__item:hover { background: var(--c-red); border-color: var(--c-red); color: var(--c-white); }
.download-section { scroll-margin-top: 130px; }
.download-item__body { flex: 1 1 auto; display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.download-item__desc { font-size: 0.85rem; color: var(--c-text-light); }
.download-item__link--ext::before { content: "↗"; }
.download-item__badge {
	display: inline-block; vertical-align: middle; margin-left: 0.5rem;
	padding: 0.12rem 0.5rem; border-radius: 4px;
	background: var(--c-red); color: var(--c-white);
	font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.download-item__meta { white-space: nowrap; }

@media (max-width: 600px) {
	.faq-item summary { gap: 0.75rem; }
	.faq-item__number { min-width: 2rem; height: 2rem; font-size: 0.8rem; }
	.czv-lead { padding: 1.25rem 1.25rem; font-size: 1rem; }
	.czv-schluss { padding: 1.5rem 1.25rem; }
	.download-item__link { flex-wrap: wrap; gap: 0.5rem; }
	.download-item__meta { width: 100%; padding-left: 2.25rem; }
}

/* Kontaktformular ========================================================= */
.contact-form-wrap { max-width: 760px; margin: 0 auto; width: 100%; }
.contact-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .contact-form__grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; margin-bottom: 1.25rem; }
.form-field > label { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; }
.form-field input,
.form-field textarea {
	width: 100%; padding: 0.75rem 0.9rem;
	border: 1px solid var(--c-border); border-radius: var(--radius);
	font: inherit; color: var(--c-text); background: var(--c-white);
	transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus,
.form-field textarea:focus {
	outline: none; border-color: var(--c-red);
	box-shadow: 0 0 0 3px var(--c-red-light);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field--error input,
.form-field--error textarea { border-color: var(--c-red); }
.form-field__error { color: var(--c-red); font-size: 0.85rem; margin-top: 0.35rem; }
.form-consent { display: flex; flex-direction: row; gap: 0.6rem; align-items: flex-start; font-weight: 400; font-size: 0.92rem; cursor: pointer; margin: 0; }
.form-consent input { width: auto; margin-top: 0.2rem; flex: 0 0 auto; }
.contact-form__hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-form .btn { margin-top: 0.5rem; }
.form-notice { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-weight: 500; }
.form-notice--success { background: #e7f6ec; border: 1px solid #aadcbb; color: #1c6b3a; }
.form-notice--error { background: var(--c-red-light); border: 1px solid #f0b3b7; color: var(--c-red-dark); }

/* Suchergebnisse ========================================================== */
.search-form-inline { display: flex; gap: 0.5rem; max-width: 540px; margin: 1.5rem auto 0; }
.search-form-inline input {
	flex: 1 1 auto; padding: 0.7rem 0.95rem;
	border: 1px solid var(--c-border); border-radius: var(--radius);
	font: inherit; color: var(--c-text); background: var(--c-white);
}
.search-form-inline input:focus { outline: none; border-color: var(--c-red); box-shadow: 0 0 0 3px var(--c-red-light); }
.search-form-inline .btn { flex: 0 0 auto; }
.search-results { list-style: none; margin: 0; padding: 0; }
.search-result { padding: 1.75rem 0; border-bottom: 1px solid var(--c-border); }
.search-result:first-child { padding-top: 0; }
.search-result__type {
	display: inline-block; font-size: 0.72rem; font-weight: 700;
	letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-red);
	margin-bottom: 0.35rem;
}
.search-result__title { font-size: 1.3rem; margin: 0 0 0.4rem; }
.search-result__title a { color: var(--c-text); }
.search-result__title a:hover { color: var(--c-red); }
.search-result__excerpt { color: var(--c-text-light); margin: 0 0 0.6rem; }

/* Zweiter Sidebar-CTA (Konfigurator) — Abstand zum Anfrage-Button */
.lkw-sidebar__btn--alt { margin-top: 0.6rem; }

/* Lightbox (Galerie-Vergrösserung) ======================================== */
body.lightbox-open { overflow: hidden; }
.lightbox {
	position: fixed; inset: 0; z-index: 1000;
	background: rgba(10, 10, 10, 0.92);
	display: flex; align-items: center; justify-content: center;
	padding: 4vh 5vw;
	opacity: 0; visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__figure {
	margin: 0; max-width: 100%; max-height: 100%;
	display: flex; flex-direction: column; align-items: center; gap: 0.85rem;
}
.lightbox__img {
	max-width: 100%; max-height: 84vh; width: auto; height: auto;
	border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	background: var(--c-white);
}
.lightbox__caption { color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; text-align: center; max-width: 700px; }
.lightbox__close,
.lightbox__nav {
	position: absolute; background: rgba(255, 255, 255, 0.12); color: #fff;
	border: none; cursor: pointer; border-radius: 999px; line-height: 1;
	display: inline-flex; align-items: center; justify-content: center;
	transition: background var(--transition);
}
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--c-red); }
.lightbox__close { top: 1.25rem; right: 1.5rem; width: 44px; height: 44px; font-size: 1.9rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2.1rem; }
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }
@media (max-width: 600px) {
	.lightbox__nav { width: 42px; height: 42px; font-size: 1.6rem; }
	.lightbox__nav--prev { left: 0.5rem; }
	.lightbox__nav--next { right: 0.5rem; }
	.lightbox__close { top: 0.75rem; right: 0.75rem; }
}

/* Zweites Footer-Logo IMMER unter dem ersten — beide Logos als eigene Blockzeile
   (sonst stehen die inline-block-Logos bei breitem Footer nebeneinander). */
.site-footer__logo { display: block; }
.site-footer__logo--secondary { margin-top: 0.85rem; line-height: 0; }
.site-footer__logo--secondary .site-footer__logo-img { height: 56px; }

/* Über uns ================================================================ */
.about-hero-image { border-radius: var(--radius-lg); overflow: hidden; }
.about-hero-image img { display: block; width: 100%; height: auto; }

.about-story { display: grid; gap: 3rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 860px) { .about-story:not(.about-story--full) { grid-template-columns: 1.1fr 0.9fr; } }
.about-story--full { max-width: var(--container-narrow); margin: 0 auto; }
.about-story__title { margin-bottom: 1rem; }
.about-story__media img { display: block; width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* Zahlen & Fakten */
.about-stats { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); text-align: center; }
.about-stat__number { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--c-red); line-height: 1; }
.about-stat__label { margin-top: 0.5rem; color: var(--c-text-light); font-size: 0.95rem; }

/* Team-Grid */
.about-team-grid { display: grid; gap: 1.75rem; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.about-member {
	background: var(--c-white); border: 1px solid var(--c-border);
	border-radius: var(--radius-lg); overflow: hidden;
	display: flex; flex-direction: column;
	transition: box-shadow var(--transition), transform var(--transition);
}
.about-member:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.about-member__photo {
	aspect-ratio: 4 / 5; background: var(--c-surface);
	display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.about-member__photo img { width: 100%; height: 100%; object-fit: cover; }
.about-member__placeholder { font-weight: 800; font-size: 2rem; color: var(--c-muted); }
.about-member__body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.3rem; }
.about-member__role { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-red); }
.about-member__name { font-size: 1.15rem; margin: 0; }
.about-member__bio { color: var(--c-text-light); font-size: 0.92rem; margin: 0.3rem 0 0; }
.about-member__contact { display: flex; flex-direction: column; gap: 0.25rem; margin-top: 0.7rem; font-size: 0.9rem; }
.about-member__contact a { color: var(--c-text); }
.about-member__contact a:hover { color: var(--c-red); }
