.mc2-video-facade {
	position: relative;
	display: block;
	overflow: hidden;
	background: #000;
	cursor: pointer;
	/* 16:9 intrinsic ratio */
	padding-bottom: 56.25%;
	height: 0;
}

.mc2-video-facade img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity .15s;
}

.mc2-video-facade:hover img {
	opacity: .85;
}

.mc2-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 68px;
	height: 48px;
	background: rgba(0, 0, 0, .75);
	border: none;
	border-radius: 10px;
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.mc2-video-facade iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}
