/* Façade vidéo témoignages (local + externe) */
.epoca-tv {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #113341;
	overflow: hidden;
}

.epoca-tv-media,
.epoca-tv-thumb,
.epoca-tv-iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.epoca-tv-media,
.epoca-tv-thumb {
	object-fit: cover;
	background: #113341;
}

/* Bouton lecture (accessible clavier, focus visible) */
.epoca-tv-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 68px;
	height: 68px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(17, 51, 65, 0.82);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.15s ease, transform 0.15s ease;
	z-index: 2;
}

.epoca-tv-play:hover {
	background: #113341;
}

.epoca-tv-play:focus-visible {
	outline: 3px solid #97ff8c;
	outline-offset: 3px;
}

.epoca-tv-play-icon {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 0 12px 20px;
	border-color: transparent transparent transparent currentColor;
	margin-left: 4px;
}

/* Pendant la lecture, on masque le bouton (l'iframe / la vidéo prend le relais) */
.epoca-tv.is-playing .epoca-tv-play {
	display: none;
}

.epoca-tv.is-playing .epoca-tv-thumb {
	display: none;
}

@media (prefers-reduced-motion: reduce) {
	.epoca-tv-play {
		transition: none;
	}
}
