/**
 * Video Editing — “Our Video Editings”: YouTube thumbnail tiles (img.youtube.com).
 *
 * @package Teknnovation
 */

.tekn-youtube-thumb-wrap {
	position: relative;
	line-height: 0;
}

.tekn-youtube-thumb-link {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 2px;
}

.tekn-youtube-thumb-img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: middle;
}

/* Snapshot Customizer: tile uses self-hosted video instead of YouTube thumb */
.tekn-self-hosted-tile-video.tekn-youtube-thumb-img {
	max-height: none;
}

.tekn-youtube-play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 68px;
	height: 48px;
	border-radius: 12px;
	background: rgba(23, 23, 23, 0.85);
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.tekn-youtube-play::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 11px 0 11px 19px;
	border-color: transparent transparent transparent #fff;
	margin-left: 5px;
}

.tekn-youtube-thumb-link:hover .tekn-youtube-play {
	background: rgba(204, 0, 0, 0.92);
}
