/* ──────────────────────────────────────────────────────────────────────────
 * bold-pd-hero.css — zweispaltiger, cinematischer Produkt-Hero
 * (dosomat-move-Formensprache: near-black, Outline+Solid-Display, Teal-CTA).
 * Links die Copy auf Navy, rechts das Anlagenbild.
 * Scoped unter .bold-pd — nichts wirkt in cd.html oder andere Komponenten.
 * Contrast notes:
 *   - Copy #fff / rgba(255,255,255,.9) auf Navy #001b33 → > 12:1. AA pass.
 *   - Bright-blue Solid-Wort #32a5ff auf Navy → ~6:1; großes Display (AA-Large 3:1).
 *   - Teal CTA: dunkle Tinte #00231d auf #02e8c2 → > 12:1. AA pass.
 * ────────────────────────────────────────────────────────────────────────── */

.bold-pd .pd-hero {
	position: relative;
	background:
		radial-gradient(80% 120% at 100% 0%, rgb(var(--c-teal-rgb) / 0.12) 0%, rgb(var(--c-teal-rgb) / 0) 45%),
		radial-gradient(70% 100% at 0% 100%, rgb(var(--c-blue-bright-rgb) / 0.1) 0%, rgb(var(--c-blue-bright-rgb) / 0) 50%),
		var(--c-navy-dark);
	overflow: hidden;
	isolation: isolate;
}

/* Breadcrumb — auf dem dunklen Hero: gedämpftes Weiß, Teal-Hover, Chevron-Trenner */
.bold-pd .pd-hero__breadcrumb {
	position: relative;
	padding-top: 2rem;
}

.bold-pd .pd-hero__breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.75rem;
	margin-block: 0;
	list-style: none;
	font-size: 0.875rem;
}

.bold-pd .pd-hero__breadcrumb li {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: rgb(var(--c-white-rgb) / 0.6);
}

.bold-pd .pd-hero__breadcrumb li + li::before {
	content: "";
	width: 0.4rem;
	height: 0.4rem;
	border-top: 0.09375rem solid rgb(var(--c-teal-rgb) / 0.7);
	border-right: 0.09375rem solid rgb(var(--c-teal-rgb) / 0.7);
	transform: rotate(45deg);
}

.bold-pd .pd-hero__breadcrumb a {
	color: rgb(var(--c-white-rgb) / 0.7);
	text-decoration: none;
	transition: color 0.2s ease;
}

.bold-pd .pd-hero__breadcrumb a:hover,
.bold-pd .pd-hero__breadcrumb a:focus-visible {
	color: var(--c-teal);
}

.bold-pd .pd-hero__breadcrumb [aria-current="page"] {
	color: var(--c-white);
	font-weight: 600;
}

.bold-pd .pd-hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 3.5rem;
	align-items: center;
	padding-block: 3rem 4.5rem;
	min-height: 32rem;
}

/* Copy column */
.bold-pd .pd-hero__copy {
	max-width: 38rem;
}

.bold-pd .pd-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0 0 1.5rem;
	padding: 0.4rem 0.9rem;
	border: 0.0625rem solid rgb(var(--c-teal-rgb) / 0.55);
	border-radius: var(--radius);
	color: var(--c-teal);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bold-pd .pd-hero__eyebrow svg {
	width: 1.1rem;
	height: 1.1rem;
}

.bold-pd .pd-hero__title {
	margin: 0 0 1.5rem;
	font-size: clamp(2.5rem, 4.6vw, 4rem);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.01em;
	color: var(--c-white);
}

/* Outlined display word: transparent fill + thin light stroke */
.bold-pd .pd-hero__title-outline {
	display: block;
	color: transparent;
	-webkit-text-stroke: 0.09375rem rgb(var(--c-white-rgb) / 0.85);
	text-stroke: 0.09375rem rgb(var(--c-white-rgb) / 0.85);
}

/* Solid bright-blue word, italic — decorative emphasis, large text only */
.bold-pd .pd-hero__title-solid {
	display: block;
	color: var(--c-blue-bright);
	font-style: italic;
}

.bold-pd .pd-hero__lead {
	margin: 0 0 2.25rem;
	font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
	line-height: 1.6;
	color: rgb(var(--c-white-rgb) / 0.9);
}

.bold-pd .pd-hero__cta-group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.25rem 1.75rem;
}

/* Secondary button ("Broschüre herunterladen") — teal outline on navy, ≥ 5:1 → AA pass */
.bold-pd .pd-hero__btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.85rem 1.5rem;
	border: 0.125rem solid rgb(var(--c-teal-rgb) / 0.6);
	border-radius: var(--radius);
	color: var(--c-teal);
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.bold-pd .pd-hero__btn-secondary svg {
	width: 1.25rem;
	height: 1.25rem;
	flex: none;
}

.bold-pd .pd-hero__btn-secondary:hover,
.bold-pd .pd-hero__btn-secondary:focus-visible {
	background-color: rgb(var(--c-teal-rgb) / 0.12);
	border-color: var(--c-teal);
}

/* Media column — gerahmtes Anlagenbild mit Teal-Akzent */
.bold-pd .pd-hero__media {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.45);
}

.bold-pd .pd-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 0.0625rem solid rgb(var(--c-teal-rgb) / 0.35);
	border-radius: var(--radius);
	pointer-events: none;
}

.bold-pd .pd-hero__img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 26rem;
	object-fit: cover;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 60rem) {
	.bold-pd .pd-hero__inner {
		grid-template-columns: 1fr;
		gap: 2.25rem;
		padding-block: 3rem;
		min-height: 0;
	}
	.bold-pd .pd-hero__copy {
		max-width: none;
	}
	.bold-pd .pd-hero__img {
		min-height: 16rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bold-pd .pd-hero__play:hover .pd-hero__play-icon,
	.bold-pd .pd-hero__play:focus-visible .pd-hero__play-icon { transform: none; }
}
