.cejg-video-facade {
	position: relative;
	display: block;
	width: 100%;
	max-width: 720px;
	margin: 1em 0;
	aspect-ratio: 16 / 9;
	background: #111;
	border-radius: 8px;
	overflow: hidden;
}
.cejg-video-facade button {
	appearance: none;
	border: 0;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	background: #111;
	position: relative;
}
.cejg-video-facade img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.cejg-video-facade__ph {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	padding: 1rem;
	line-height: 1.35;
	background: linear-gradient(160deg, #1a1a1a, #333);
}
.cejg-video-facade__play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 68px;
	height: 48px;
	border-radius: 14px;
	background: #c00;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.cejg-video-facade__play::before {
	content: "";
	position: absolute;
	left: 27px;
	top: 14px;
	border-style: solid;
	border-width: 10px 0 10px 16px;
	border-color: transparent transparent transparent #fff;
}
.cejg-video-facade[data-provider="tiktok"] .cejg-video-facade__play {
	background: #fe2c55;
}
.cejg-video-facade.is-playing {
	aspect-ratio: auto;
	min-height: 240px;
}
.cejg-video-facade.is-playing iframe {
	width: 100%;
	height: 100%;
	min-height: 360px;
	border: 0;
	display: block;
}
