.custom-yt-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
	overflow: hidden;
	cursor: pointer;
}

.custom-yt-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.custom-yt-wrapper img.yt-poster {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.yt-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: none;
	background: none;
	color: white;
	font-size: 80px;
	pointer-events: none;
	z-index: 2;
	padding: 0;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
	transition: transform 0.2s ease;
}

.custom-yt-wrapper:hover .yt-play-button {
	transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 768px) {
	.yt-play-button {
		font-size: 60px;
	}
}

@media (max-width: 480px) {
	.yt-play-button {
		font-size: 48px;
	}
}
