/* ── videos.css — „GEO im Video erklärt" ──────────────────────────────────────
   Kompakte 2er-Reihe mit echten YouTube-Embeds vom Evergreen-Media-Kanal
   (youtube-nocookie). Ersetzt den interaktiven Selbstcheck an dieser Stelle und
   gruppiert sich thematisch mit der Engines-Sektion (GEO verstehen).
   ──────────────────────────────────────────────────────────────────────────── */

.videos {
	background: var(--c-surface);
}

.videos h2 {
	font-size: var(--fs-h2-fluid);
	max-width: 34rem;
}

.videos__intro {
	max-width: 42rem;
	margin: 0 0 2rem;
	color: var(--c-text-muted);
}

.videos__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.video-card {
	margin: 0;
	min-width: 0;
}

.video-card__frame {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	background: var(--c-primary);
}

.video-card__frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.video-card__caption {
	margin-top: 0.875rem;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.35;
	color: var(--c-text);
}

@media (max-width: 48rem) {
	.videos__grid {
		grid-template-columns: 1fr;
	}
}
