.klopo-yt {
	position: relative;
	padding-top: 56.25%;
	max-width: 853px;
	margin: 5px auto;
	background: #000;
	overflow: hidden;
	border: 0;
}

.klopo-yt iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.klopo-yt-thumb {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.3s ease;
}

.klopo-yt:hover .klopo-yt-thumb {
	transform: scale(1.02);
}

.klopo-yt-play {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.klopo-yt-play::before {
	content: "";
	width: 68px;
	height: 48px;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.klopo-yt-play::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	margin-left: 6px;
	border-style: solid;
	border-width: 12px 0 12px 18px;
	border-color: transparent transparent transparent #fff;
}

.klopo-yt-play:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

.klopo-yt-play:focus-visible::before {
	background: rgba(0, 0, 0, 0.75);
}

