/* ═══════════════════════════════════════════════════════════════════════════
   APPROACH PAGE — VIDEO EMBED (facade pattern)
   ═══════════════════════════════════════════════════════════════════════════ */

.approach-video {
	width: 100%;
	margin-top: 0.3rem;
	background: #ffffff;
	padding: 3rem 0;
	line-height: 0;
}

.approach-video__inner {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 var(--ci-container-padding, 2rem);
}

/* Facade — thumbnail + play button */
.approach-video__facade {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	cursor: pointer;
	display: block;
	overflow: hidden;
}

.approach-video__thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.approach-video__facade:hover .approach-video__thumb {
	transform: scale(1.02);
}

/* Play button — centred overlay */
.approach-video__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.25);
	transition: background 0.2s ease;
}

.approach-video__facade:hover .approach-video__play {
	background: rgba(0, 0, 0, 0.15);
}

.approach-video__play svg {
	width: 68px;
	height: 48px;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
	transition: transform 0.2s ease;
}

.approach-video__facade:hover .approach-video__play svg {
	transform: scale(1.1);
}

/* Injected iframe — replaces facade, constrained by inner wrapper */
.approach-video__iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	display: block;
	border: none;
	border-radius: 4px;
}

/* Full-width variant */
.approach-video--full {
	padding: 0;
}

.approach-video--full .approach-video__facade {
	border-radius: 0;
}

.approach-video--full .approach-video__iframe {
	border-radius: 0;
}

/* ── Mobile ── */
@media (max-width: 640px) {
	.approach-video__play svg {
		width: 52px;
		height: 37px;
	}
}
