/* YouTube lite embeds: thumbnails are loaded first, iframe only on click. */
.youtube-lite
{
	position: relative;
	display: inline-block;
	width: 426px;
	max-width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
	overflow: hidden;
	text-decoration: none;
	vertical-align: middle;
}

.youtube-lite img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 0;
}

.youtube-lite-play
{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 74px;
	height: 52px;
	line-height: 52px;
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.72);
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 30px;
	text-align: center;
	text-indent: 4px;
}

.youtube-lite:hover .youtube-lite-play,
.youtube-lite:focus .youtube-lite-play
{
	background: rgba(118, 0, 1, 0.86);
}

.youtube-lite-iframe
{
	display: inline-block;
	width: 426px;
	max-width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
	vertical-align: middle;
}
