/* ==========================================================================
   WildVenture Pilates — Vorlage
   Design-Referenz: docs/WildVenture Homepage.pdf (Entwurfsbreite 1024 px)
   Alle Werte sind aus dem PDF gemessen und proportional umgerechnet.
   Bootstrap 5.3.8 liefert Reset, Grid und Utilities; hier steht nur das Theme.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Schriften (lokal, kein externer Aufruf)
   -------------------------------------------------------------------------- */

@font-face {
	font-family: 'Playfair Display';
	src: url('../fonts/PlayfairDisplay-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Playfair Display';
	src: url('../fonts/PlayfairDisplay-Italic.woff2') format('woff2');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Playfair Display';
	src: url('../fonts/PlayfairDisplay-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* Kapitälchen-Schnitt für die Kursüberschriften (PlayfairDisplaySC-Bold im PDF) */
@font-face {
	font-family: 'Playfair Display SC';
	src: url('../fonts/PlayfairDisplaySC-Bold-latin.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: 'Playfair Display SC';
	src: url('../fonts/PlayfairDisplaySC-Bold-latin-ext.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: 'Raleway';
	src: url('../fonts/Raleway-Light.woff2') format('woff2');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Raleway';
	src: url('../fonts/Raleway-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Raleway';
	src: url('../fonts/Raleway-Medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Raleway';
	src: url('../fonts/Raleway-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* --------------------------------------------------------------------------
   2. Tokens

   Schriftgrößen: clamp(Mobil, PDF-Wert als vw, Deckel).
   Der vw-Wert ist PDF-Pixel / 1024 — bei 1024 px Viewport also exakt das PDF.
   Der Deckel greift ab ~1180 px, damit der Fließtext nicht mitwächst.
   -------------------------------------------------------------------------- */

:root {
	--wv-brown: #5f3f2e;
	--wv-cream: #f8f0dd;
	--wv-cream-transparent: rgba(248, 240, 221, 0.6);
	--wv-green: #28483e;
	--wv-sand: #f8ede4;

	--wv-font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--wv-font-caps: 'Playfair Display SC', 'Playfair Display', Georgia, serif;
	--wv-font-text: 'Raleway', 'Helvetica Neue', Arial, sans-serif;

	--wv-fs-h1: clamp(2.25rem, 5.273vw, 3.875rem);
	--wv-fs-h2: clamp(1.625rem, 2.734vw, 2.5rem);
	--wv-fs-lead: clamp(1.1875rem, 2.441vw, 1.75rem);
	--wv-fs-body: clamp(0.9375rem, 1.465vw, 1.0625rem);
	--wv-fs-body-dense: clamp(0.9375rem, 1.172vw, 1rem);
	--wv-fs-card-title: clamp(1rem, 1.563vw, 1.125rem);
	--wv-fs-card-text: clamp(0.875rem, 1.084vw, 0.9375rem);
	--wv-fs-nav: clamp(0.9375rem, 1.563vw, 1.0625rem);
	--wv-fs-footer: clamp(0.8125rem, 1.27vw, 0.9375rem);
	--wv-fs-btn-lg: clamp(1.0625rem, 2.148vw, 1.375rem);
	--wv-fs-btn: clamp(1rem, 1.758vw, 1.125rem);

	/* Vertikale Rhythmik der Abschnitte, aus den PDF-Abständen abgeleitet */
	--wv-section-y: clamp(3rem, 5.66vw, 5.5rem);
}

/* --------------------------------------------------------------------------
   3. Basis
   -------------------------------------------------------------------------- */

body {
	font-family: var(--wv-font-text);
	font-weight: 400;
	font-size: var(--wv-fs-body);
	line-height: 1.65;
	color: var(--wv-brown);
	background-color: var(--wv-cream);
	-webkit-font-smoothing: antialiased;
}

.wv-site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

#main-content {
	flex: 1 0 auto;
}

h1,
h2,
h3 {
	font-family: var(--wv-font-display);
	font-weight: 400;
	line-height: 1.15;
	margin: 0;
}

p {
	margin: 0 0 1.5em;
}

p:last-child {
	margin-bottom: 0;
}

a {
	color: inherit;
}

/* Sichtbarer Fokus, den Bootstrap sonst überfärbt */
a:focus-visible,
button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
	box-shadow: none;
}

/* --------------------------------------------------------------------------
   4. Farbflächen und Textbausteine
   -------------------------------------------------------------------------- */

.wv-band-brown {
	background-color: var(--wv-brown);
	color: var(--wv-cream);
}

.wv-band-cream {
	background-color: var(--wv-cream);
	color: var(--wv-brown);
}

.wv-band-green {
	background-color: var(--wv-green);
	color: var(--wv-cream);
}

.wv-h1 {
	font-size: var(--wv-fs-h1);
}

.wv-h2 {
	font-size: var(--wv-fs-h2);
}

/* Playfair Bold — H1 dezent größer als H2 (Über mich) */
.wv-h1--bold {
	font-weight: 700;
	font-size: clamp(1.25rem, 2.15vw, 2.25rem);
	line-height: 1.35;
}

.wv-h2--bold {
	font-weight: 700;
	font-size: clamp(1.35rem, 1.465vw, 1.75rem);
	line-height: 1.35;
}

.wv-lead {
	font-size: var(--wv-fs-lead);
	font-weight: 400;
	line-height: 1.3;
}

.wv-list {
	margin: 0 0 1.5em;
	padding-left: 1.25em;
}

.wv-list li {
	margin-bottom: 0.35em;
}
h1 {
	font-size: 2.15rem;
}

h2 {
	font-size: 1.75rem;
}

h3 {
	font-size: 1.35rem;
	margin-bottom: 0.5rem;
}
/* --------------------------------------------------------------------------
   5. Button — transparent mit Pill-Rahmen (PDF: 287x60 bzw. 243x46)
   -------------------------------------------------------------------------- */

.wv-btn {
	display: inline-block;
	border: 1px solid currentColor;
	border-radius: 999px;
	padding: 0.72em 1.9em;
	font-size: var(--wv-fs-btn);
	line-height: 1.3;
	text-decoration: none;
	background: rgba(0, 0, 0, 0.2);
	transition: background-color 0.2s ease, color 0.2s ease;
	color: #fff;;
}

.wv-btn:hover,
.wv-btn:focus {
	background-color: var(--wv-cream);
	color: var(--wv-brown);
}

.wv-btn--lg {
	font-size: var(--wv-fs-btn-lg);
	padding: 0.68em 2.5em;
}

/* --------------------------------------------------------------------------
   6. Kopfzeile — liegt über dem Hero (PDF: Logo 46/34, Navigation rechts)
   -------------------------------------------------------------------------- */

.wv-header {
	position: absolute;
	inset: 0 0 auto 0;
	z-index: 20;
	padding: 3.32vw 4.49vw 0;
	color: var(--wv-cream);
}

body:has(main > section:first-child.wv-band-cream) .wv-header,
body:has(main > section:first-child.wv-prose) .wv-header,
body:has(main > section:first-child.wv-titlebar) .wv-header {
	color: var(--wv-brown);
}

/* Ohne Hero und ohne Titlebar: Inhalt unter dem Logo */
body:not(:has(main > section:first-child.wv-hero)):not(:has(main > section:first-child.wv-titlebar)) #main-content > section:first-child {
	padding-top: clamp(9.5rem, 18vw, 13rem);
}

body:not(:has(main > section:first-child.wv-hero)):not(:has(main > section:first-child.wv-titlebar)) #main-content > section:first-child :is(
	.wv-prose > h1:first-child,
	.text-editor > h1:first-child,
	.wv-faq__title,
	h1.wv-h1,
	h1.wv-h1--bold
) {
	font-size: var(--wv-fs-h2);
	line-height: 1.25;
	margin-bottom: 0.85em;
	max-width: 36rem;
}

/* Seitentitel neben Logo (tid=15) — gleiche Zeile wie Header-Logo */
.wv-titlebar {
	background-color: var(--wv-cream);
	color: var(--wv-brown);
	padding: 3.32vw 4.49vw 1.75rem;
}

.wv-titlebar__inner {
	margin-left: calc(clamp(4.5rem, 9.28vw, 7.5rem) + clamp(0.85rem, 1.6vw, 1.5rem));
	min-height: clamp(4.5rem, 9.28vw, 7.5rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: min(38rem, calc(100% - clamp(7rem, 28vw, 18rem)));
}

.wv-titlebar .text-editor > h1:first-child,
.wv-titlebar h1 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(1.05rem, 1.45vw, 1.25rem);
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
	color: var(--wv-brown);
}

.wv-titlebar .text-editor > h1:first-child + p,
.wv-titlebar h1 + p {
	margin: 0.35em 0 0;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(0.9rem, 1.1vw, 1.05rem);
	font-style: italic;
	line-height: 1.4;
	color: var(--wv-brown);
}

.wv-titlebar + .wv-prose {
	padding-top: 0.5rem;
}

.wv-header__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.5rem;
}

.wv-logo {
	display: block;
	width: clamp(4.5rem, 9.28vw, 7.5rem);
	height: auto;
}

.wv-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: clamp(1rem, 2.15vw, 2rem);
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: var(--wv-fs-nav);
	padding-top: 0.35em;
}

.wv-nav a {
	text-decoration: none;
	padding-bottom: 2px;
	border-bottom: 1px solid transparent;
	/* text-shadow: 1px 1px 6px #000; */
	/* color: #000; */
}

.wv-nav li {
	margin: 0;
}

.wv-nav > li > a:hover,
.wv-nav > li > a[aria-current='page'],
.wv-nav > li.active > a,
.wv-nav .wv-nav__sub a:hover,
.wv-nav .wv-nav__sub li.active > a {
	border-bottom-color: currentColor;
}

.wv-nav__item--has-sub {
	position: relative;
	padding-bottom: 0.85rem;
}

.wv-nav__item--has-sub:hover,
.wv-nav__item--has-sub:focus-within {
	z-index: 22;
}

.wv-nav__sub {
	position: absolute;
	top: 100%;
	left: 0;
	right: auto;
	min-width: 13.5rem;
	margin: -0.2rem 0 0;
	padding: 0.55rem 0;
	list-style: none;
	background: var(--wv-cream-transparent);
	color: var(--wv-brown);
	box-shadow: 0 0.6rem 1.4rem rgba(95, 63, 46, 0.16);
	z-index: 21;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}

.wv-nav__item--has-sub:hover > .wv-nav__sub,
.wv-nav__item--has-sub:focus-within > .wv-nav__sub {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.wv-nav__sub li {
	display: block;
}

.wv-nav__sub a {
	display: block;
	padding: 0.4rem 1.1rem;
	white-space: nowrap;
	border-bottom: none;
}

/* --------------------------------------------------------------------------
   7. Abschnitts-Deckel + Hero
   max-height: 100vh gilt zunächst für alle main-Sections und den Hero.
   .wv-section--auto hebt den Deckel auf (lange Textabschnitte).
   -------------------------------------------------------------------------- */

main > section {
	max-height: 100vh;
}

.wv-section--auto {
	max-height: none;
}

.wv-hero {
	position: relative;
	max-height: 100vh;
	overflow: hidden;
	background-color: var(--wv-sand);
}

.wv-hero__media {
	display: block;
	width: 100%;
	/* height:auto ist nötig, sonst gewinnen die width/height-Attribute
	   des <img> gegen aspect-ratio */
	height: auto;
	max-height: 100vh;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

/* PDF Seite 2: der Banner ist auf 274 px Höhe beschnitten */
.wv-hero--flat .wv-hero__media {
	aspect-ratio: 1024 / 274;
}

/* Button sitzt im PDF auf 59 % der Herohöhe, 5,7 % vom linken Rand */
.wv-hero__cta {
	position: absolute;
	top: 59.2%;
	left: 5.66%;
}

.wv-hero__cta .row-link-wrap {
	display: contents;
}

@media (max-width: 575.98px) {
	.wv-hero__media {
		aspect-ratio: 4 / 5;
	}

	/* Der flache Banner wäre auf dem Handy nur rund 100 px hoch und läge
	   damit unter dem Logo. */
	.wv-hero--flat .wv-hero__media {
		aspect-ratio: 16 / 9;
	}

	.wv-hero__cta {
		top: auto;
		bottom: 8%;
	}
}

/* --------------------------------------------------------------------------
   8. Randlose Bilder — im PDF laufen mehrere Motive aus dem Satzspiegel heraus
   -------------------------------------------------------------------------- */

/* Die Fläche bestimmt die Figure (aspect-ratio oder Höhe), das Bild füllt
   sie absolut aus. Sonst setzt das <img> über seine Attribute die Höhe. */
.wv-figure {
	position: relative;
	margin: 0;
	overflow: hidden;
}
.wv-figure.shadow {
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.wv-figure__img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Der Anschnitt ragt absichtlich aus dem Satzspiegel heraus. Ohne clip
   würde daraus eine horizontale Bildlaufleiste. */
.wv-band-brown,
.wv-band-cream,
.wv-band-green {
	overflow-x: clip;
}

@media (min-width: 992px) {
	/* bis zum linken Fensterrand */
	.wv-bleed-start {
		margin-left: calc(50% - 50vw);
		width: calc(50vw + 50%);
	}

	/* bis zum rechten Fensterrand */
	.wv-bleed-end {
		margin-right: calc(50% - 50vw);
		width: calc(50vw + 50%);
	}

	/* bleibt in der Spalte, also im Container — Gegenstück zu wv-bleed-* */
	.wv-figure--contained {
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}
}

/* --------------------------------------------------------------------------
   9. Startseite — Intro (braunes Band, Bild links randlos)
   -------------------------------------------------------------------------- */

.wv-intro__media {
	aspect-ratio: 3 / 2;
}

.wv-intro__body {
	padding: var(--wv-section-y) 5.66vw;
}

/* PDF: Bild von links angeschnitten, der rechte Teil bleibt sichtbar */
.wv-intro__media .wv-figure__img {
	object-position: right center;
}

@media (min-width: 992px) {
	.wv-intro__media {
		/* PDF: Bild 457 px hoch, 58 px Luft nach oben und unten —
		   Deckel 100vh, damit der Abschnitt nicht über die Viewport-Höhe wächst */
		aspect-ratio: auto;
		height: min(44.63vw, calc(100vh - 11.32vw));
		margin-block: 5.66vw;
	}

	.wv-intro__body {
		/* PDF: Text beginnt 61 px nach der Bildkante, endet 76 px vor dem Rand */
		padding-left: 5.96vw;
		padding-right: 7.42vw;
		min-height: min(56.25vw, 100vh);
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

.wv-intro__title {
	margin-bottom: 0.1em;
}

.wv-intro__lead {
	margin-bottom: 1.6em;
}

/* --------------------------------------------------------------------------
   10. Startseite — Kurse (3 Karten, Bild 2:3, Titel in Kapitälchen)
   -------------------------------------------------------------------------- */

/* PDF: Überschrift 34 px unter der Bandkante, Karten enden 33 px vor Schluss */
.wv-courses {
	padding-block: clamp(2rem, 3.32vw, 3rem);
}

main > section:has(.wv-course__media) {
	padding-bottom: clamp(2rem, 3.32vw, 3rem);
}

.wv-courses__title {
	margin-bottom: clamp(1.25rem, 2.25vw, 1.75rem);
}

.wv-course__media {
	aspect-ratio: 285 / 428;
	margin-bottom: 1.1rem;
}

.wv-course__media .wv-figure__img {
	transform: scale(1);
	transform-origin: center;
	transition: transform 0.55s ease;
}

.wv-course__media:hover .wv-figure__img,
.wv-course__media:focus-within .wv-figure__img,
.position-relative:has(.wv-course__media):hover .wv-course__media .wv-figure__img,
.position-relative:has(.wv-box-link:focus-visible) .wv-course__media .wv-figure__img {
	transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
	.wv-course__media .wv-figure__img {
		transition: none;
	}

	.wv-course__media:hover .wv-figure__img,
	.wv-course__media:focus-within .wv-figure__img,
	.position-relative:has(.wv-course__media):hover .wv-course__media .wv-figure__img,
	.position-relative:has(.wv-box-link:focus-visible) .wv-course__media .wv-figure__img {
		transform: none;
	}
}

.wv-box-link {
	font-size: 0;
	line-height: 0;
	color: transparent;
	text-decoration: none;
}

.wv-box-link::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 2;
}

.wv-course__title {
	font-family: var(--wv-font-caps);
	font-weight: 700;
	font-size: var(--wv-fs-card-title);
	line-height: 1.2;
	margin: 0 0 0.45em;
}

.wv-course__text {
	font-size: var(--wv-fs-card-text);
	line-height: 1.5;
	margin: 0;
}

/* --------------------------------------------------------------------------
   11. Startseite — Kontakt (grün links, Bild rechts über die halbe Breite)
   -------------------------------------------------------------------------- */

/* Textblock vertikal zentriert zur Bildhöhe */
.wv-contact__body,
.wv-contact__body_cubic {
	padding: clamp(2.5rem, 4.88vw, 4rem) 5.66vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: clamp(1.5rem, 3vw, 2.5rem);
}

@media (min-width: 992px) {
	.wv-contact__body {
		min-height: min(56.35vw, 100vh);
		height: 100%;
	}
	.wv-contact__body_cubic {		
		/* min-height: min(56.35vw, 100vh); */
		height: 100%;
	}
}

.wv-contact__name {
	margin-top: 0.15em;
	margin-bottom: 0;
}

.wv-contact__cta .wv-btn {
	margin-top: 1.25rem;
}

.wv-contact__media {
	aspect-ratio: 2 / 3;
}

@media (min-width: 992px) {
	.wv-contact__media {
		aspect-ratio: auto;
		height: 100%;
		min-height: min(56.35vw, 100vh);
		max-height: 100vh;
	}
}

/* --------------------------------------------------------------------------
   12. Fußzeile — schmaler grüner Streifen unter dem Kontaktbereich
   -------------------------------------------------------------------------- */

.wv-footer {
	padding-top: clamp(1.5rem, 2.75vw, 2.25rem);
	padding-bottom: clamp(1rem, 1.95vw, 1.5rem);
}

.wv-footer__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(1.5rem, 6.15vw, 4.5rem);
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: var(--wv-fs-footer);
}

.wv-footer__nav a {
	text-decoration: none;
}

.wv-footer__nav a:hover {
	text-decoration: underline;
}

.text-editor > :last-child {
	margin-bottom: 0;
}

.wv-figure.img-hover-zoom .wv-figure__img {
	transform: scale(1);
	transform-origin: center;
	transition: transform 0.55s ease;
}

.wv-figure.img-hover-zoom:hover .wv-figure__img,
.wv-figure.img-hover-zoom:focus-within .wv-figure__img {
	transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
	.wv-figure.img-hover-zoom .wv-figure__img {
		transition: none;
	}

	.wv-figure.img-hover-zoom:hover .wv-figure__img,
	.wv-figure.img-hover-zoom:focus-within .wv-figure__img {
		transform: none;
	}
}

.wv-intro__body h1 {
	font-size: var(--wv-fs-h1);
}

/* --------------------------------------------------------------------------
   13. Über mich — Textabschnitte im Zweispalter
   -------------------------------------------------------------------------- */

.wv-prose {
	padding-block: var(--wv-section-y);
}

/* Fließtext-Stil hängt am Abschnitt — kein Extra-Wrapper um die <p> nötig */
.wv-prose p,
.wv-prose li {
	font-size: var(--wv-fs-body-dense);
	line-height: 1.7;
}

.wv-prose p {
	text-align: justify;
}

.wv-intro__body p {
	font-size: var(--wv-fs-body);
}

.wv-prose h1 {
	margin-bottom: 1.5em;
}
.wv-prose h2 {
	margin-bottom: .75em;
}

.wv-prose h1 + h2 {
	margin-top: -0.4em;
}

/* Abstand vor einer neuen Überschrift kommt vom Nachbarn, nicht von einer Extra-Klasse */
.wv-prose p:has(+ h1),
.wv-prose p:has(+ h2),
.wv-prose ul:has(+ h1),
.wv-prose ul:has(+ h2) {
	margin-bottom: 0;
}

.wv-prose p + h1,
.wv-prose p + h2,
.wv-prose ul + h1,
.wv-prose ul + h2 {
	margin-top: clamp(1.75rem, 2.73vw, 2.5rem);
}

/* Bildformate — später im Morpheus-Editor als Auswahl am Bildfeld.
   Klasse an die Figure (.wv-figure), nicht ans <img>. Thumb-Proportion
   muss zur Klasse passen, sonst schneidet thumb.php + object-fit doppelt. */
.wv-portrait {
	aspect-ratio: 1 / 2;
}

.wv-about-wide {
	aspect-ratio: 1770 / 1000;
}

.wv-about-landscape {
	aspect-ratio: 3 / 2;
}

.wv-about-portrait {
	aspect-ratio: 583 / 874;
}
.wv-cubic { aspect-ratio: 500 / 500; }
@media (min-width: 992px) {
	.wv-sticky-media {
		height: 100%;
	}
}

/* --------------------------------------------------------------------------
   FAQ-Liste (tid 54 / t54__modul_Faq_Liste)
   -------------------------------------------------------------------------- */

.wv-faq {
	padding-block: clamp(2rem, 4vw, 3.5rem);
}

.wv-faq__label {
	margin: 0 0 0.5rem;
	font-size: var(--wv-fs-nav);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.wv-faq__title {
	margin: 0 0 0.75rem;
	font-size: var(--wv-fs-h1);
}

.wv-faq__lead {
	margin: 0 0 2rem;
	font-size: var(--wv-fs-lead);
	max-width: 42rem;
}

.faq-list {
	margin-top: 0.5rem;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.faq-list__kat {
	margin: 0 0 1rem;
	font-family: var(--wv-font-display);
	font-size: var(--wv-fs-h2);
	color: var(--wv-brown);
}

.faq-list__dl {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.faq-list__item {
	padding-bottom: 1.15rem;
	border-bottom: 1px solid color-mix(in srgb, var(--wv-brown) 18%, transparent);
}

.faq-list__item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.faq-list__q {
	margin: 0 0 0.4rem;
	font-family: var(--wv-font-display);
	font-size: clamp(1.05rem, 1.4vw, 1.25rem);
	line-height: 1.35;
	color: var(--wv-brown);
}

.faq-list__a {
	margin: 0;
	font-size: var(--wv-fs-body);
	line-height: 1.6;
	max-width: 48rem;
}

.faq-list__empty {
	margin: 0;
	opacity: 0.7;
}
