/* =========================================================================
   Landing Technik — dunkles Band: gleiches Prinzip, zwei Ausführungen
   Abhängigkeit: shared/base.css (Tokens, .wd-eyebrow, .wd-h-sec)

   Bewusst ohne Typ-Selektoren wie ".wd-tech__head p": jedes Element hat eine
   eigene Klasse. Sonst schlägt ein Typ-Selektor (0,1,1) eine Klasse (0,1,0)
   und überschreibt still deren Schriftgröße.
   ====================================================================== */

.wd-tech {
	padding-block: clamp(64px, 8.5vw, 124px);
	background: var(--wd-ink);
	color: var(--wd-paper);
	font-family: var(--wd-font-body);
}

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

.wd-tech__inner {
	max-width: 1280px;
	margin-inline: auto;
	padding-inline: var(--wd-gut);
}

/* Auf dem dunklen Band die geteilten Bausteine umfärben. */
.wd-tech .wd-eyebrow {
	color: rgba(246, 243, 239, .5);
}

.wd-tech .wd-h-sec {
	color: var(--wd-paper);
}

/* ---- Kopf: Headline links, Einleitung rechts, unten ausgerichtet ------- */

.wd-tech__head {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: clamp(24px, 4vw, 72px);
	align-items: end;
	margin-bottom: clamp(38px, 5vw, 66px);
}

.wd-tech .wd-tech__intro {
	margin: 0;
	font-size: clamp(1rem, 1.3vw, 1.16rem);
	line-height: 1.55;
	color: rgba(246, 243, 239, .68);
}

/* ---- Zwei Bilder nebeneinander ---------------------------------------- */

.wd-tech__split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(14px, 2vw, 26px);
}

.wd-tech__figure {
	margin: 0;
}

.wd-tech__img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 3px;
}

.wd-tech .wd-tech__caption {
	display: flex;
	align-items: center;
	gap: .6em;
	margin-top: .85rem;
	font-family: var(--wd-font-data);
	font-size: .68rem;
	letter-spacing: .11em;
	text-transform: uppercase;
	color: rgba(246, 243, 239, .62);
}

.wd-tech .wd-tech__label {
	font-weight: 500;
	color: var(--wd-paper);
}

.wd-tech__mark {
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
}

.wd-tech__mark line,
.wd-tech__mark circle {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.4;
}

/* ---- Ablauf: der Weg des Wassers, darum numeriert --------------------- */

.wd-tech__flow {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(165px, 100%), 1fr));
	gap: 0;
	margin: clamp(40px, 5.5vw, 72px) 0 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid rgba(246, 243, 239, .2);
}

.wd-tech__step {
	padding: 1.5rem 1.2rem 0;
	border-left: 1px solid rgba(246, 243, 239, .14);
}

.wd-tech__step:first-child {
	padding-left: 0;
	border-left: 0;
}

.wd-tech .wd-tech__step-n {
	display: block;
	margin-bottom: .7rem;
	font-family: var(--wd-font-data);
	font-size: .66rem;
	letter-spacing: .13em;
	color: var(--wd-gold);
}

.wd-tech .wd-tech__step-text {
	margin: 0;
	font-size: .9rem;
	line-height: 1.5;
	color: rgba(246, 243, 239, .8);
}

.wd-tech .wd-tech__step-text strong {
	font-weight: 600;
	color: var(--wd-paper);
}

/* ---- Umbrüche --------------------------------------------------------- */

@media (max-width: 900px) {
	.wd-tech__head {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.wd-tech__flow {
		grid-template-columns: 1fr 1fr;
	}

	.wd-tech__step {
		padding: 1.2rem 1rem 1.2rem 0;
		border-left: 0;
		border-top: 1px solid rgba(246, 243, 239, .14);
	}

	.wd-tech__step:first-child {
		border-top: 0;
	}
}

@media (max-width: 560px) {
	.wd-tech__split,
	.wd-tech__flow {
		grid-template-columns: 1fr;
	}
}
