/* ── Video Section ────────────────────────────────────────── */

.video-section {
	background: var(--ink, #0C1F3F);
}

.video-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* ── Header ──────────────────────────────────────────────── */

.video-header {
	text-align: center;
	margin-bottom: 40px;
	max-width: 700px;
}

.video-eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 14px;
}

.video-heading {
	font-weight: 700;
	color: #fff;
	margin: 0 0 16px;
}

.video-subtext {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
}

/* ── Video Player ────────────────────────────────────────── */

.video-player {
	position: relative;
	width: 100%;
	max-width: 800px;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	margin-bottom: 48px;
}

.video-thumbnail {
	width: 100%;
	display: block;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.video-player iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* ── Play Button ─────────────────────────────────────────── */

.video-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-play-btn svg {
	margin-left: 3px;
}

.video-play-btn svg polygon {
	fill: var(--ink, #0C1F3F);
}

.video-player:hover .video-play-btn {
	transform: translate(-50%, -50%) scale(1.08);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.video-player.playing .video-play-btn,
.video-player.playing .video-thumbnail {
	display: none;
}

/* ── CTA ─────────────────────────────────────────────────── */

.video-cta {
	text-align: center;
}

.video-cta-btn {
	margin-bottom: 12px;
}

.video-cta-note {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
	margin: 0;
}
