.yt-facade {
	position: relative;
	width: 100%;
	max-width: 800px;
	aspect-ratio: 16 / 9;
	background-color: #000;
	cursor: pointer;
	overflow: hidden;
	margin-bottom: 20px;
	border-radius: 8px;
}

.yt-facade .yt-thumbnail {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.8;
	transition: opacity 0.3s ease-in-out;
}

.yt-facade:hover .yt-thumbnail {
	opacity: 1;
}

.yt-facade .yt-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 68px;
	height: 48px;
	background-color: rgba(255, 0, 0, 0.8);
	border-radius: 12px;
	transition: background-color 0.3s;
}

.yt-facade .yt-play-button::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-40%, -50%);
	border-style: solid;
	border-width: 10px 0 10px 20px;
	border-color: transparent transparent transparent #fff;
}

.yt-facade:hover .yt-play-button {
	background-color: rgba(255, 0, 0, 1);
}

.yt-facade iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}