.bve-video-wrap {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: var(--bve-ratio, 56.25%);
	overflow: hidden;
	isolation: isolate;
	z-index: 1;
	margin: 0 auto;
}

.bve-video-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.bve-facade {
	cursor: pointer;
	background-color: #111;
	background-size: cover;
	background-position: center;
}

.bve-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.bve-facade:hover .bve-play-btn {
	background: rgba(0, 0, 0, 0.75);
	transform: translate(-50%, -50%) scale(1.06);
}
