.trail-lazy-video {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 14px;
	background: #000;
	aspect-ratio: 16 / 9;
}

.trail-lazy-video-poster {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.trail-lazy-video-button {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 72px;
	height: 72px;
	transform: translate(-50%, -50%);
	border: 2px solid #fff;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	cursor: pointer;
	z-index: 2;
}

.trail-lazy-video-button span {
	position: absolute;
	left: 29px;
	top: 22px;
	width: 0;
	height: 0;
	border-top: 14px solid transparent;
	border-bottom: 14px solid transparent;
	border-left: 22px solid #fff;
}

.trail-lazy-video video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}