/**
 * OSTBRONX – YouTube „Klick zum Laden"-Facade (DSGVO/BITV).
 *
 * Ersetzt eingebettete YouTube-Videos durch eine CI-Platzhalterkachel. Erst beim
 * aktiven Klick wird der iframe (youtube-nocookie.com) nachgeladen – vorher KEINE
 * Requests/Cookies an Google. Kein externes Vorschaubild (würde sonst die IP an
 * Google leaken), daher CI-Flächen statt YouTube-Thumbnail.
 */
.ob-ytf {
	position: relative;
	margin: 1.5rem 0;
	background: #141414;
	border-radius: 4px;
	overflow: hidden;
}

.ob-ytf__inner {
	position: relative;
	aspect-ratio: 16 / 9;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 1.5rem clamp(1rem, 5vw, 3rem);
	text-align: center;
	background:
		radial-gradient(120% 120% at 50% 0%, rgba(228, 0, 124, .22), transparent 60%),
		#141414;
}

.ob-ytf__play {
	appearance: none;
	border: 0;
	background: #E4007C;
	color: #fff;
	font-family: "Super Grotesk", sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	gap: .55em;
	padding: .75em 1.4em;
	border-radius: 999px;
	cursor: pointer;
	transition: transform .12s ease, background-color .12s ease;
}

.ob-ytf__play:hover,
.ob-ytf__play:focus-visible {
	background: #A8005C;
	transform: translateY(-1px);
}

.ob-ytf__play:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

.ob-ytf__icon {
	font-size: 1.1em;
}

.ob-ytf__note {
	margin: 0;
	max-width: 48ch;
	color: rgba(255, 255, 255, .82);
	font-size: .82rem;
	line-height: 1.5;
}

.ob-ytf__note a,
.ob-ytf__fallback {
	color: #fff;
	text-decoration: underline;
}

/* Nachgeladenes Video ersetzt .ob-ytf__inner. */
.ob-ytf iframe {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	border: 0;
}

/* Ausrichtung aus dem Embed-Block (align left/right). Text läuft drumherum. */
.ob-ytf.alignleft,
.ob-ytf.alignright {
	width: clamp(240px, 42%, 380px);
	margin-top: .4rem;
}

.ob-ytf.alignleft {
	float: left;
	margin-right: 1.5rem;
}

.ob-ytf.alignright {
	float: right;
	margin-left: 1.5rem;
}

/* Auf schmalen Screens nicht floaten – volle Breite, sonst wird's gequetscht. */
@media (max-width: 600px) {
	.ob-ytf.alignleft,
	.ob-ytf.alignright {
		float: none;
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ob-ytf__play {
		transition: none;
	}
}
