/* ==========================================================
   Gallery
========================================================== */

.tvh-gallery{
	padding:60px 0;
}

.tvh-gallery-featured img{
	width:100%;
	border-radius:20px;
	cursor:pointer;
}

.tvh-gallery-grid{
	display:grid;
	grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
	gap:20px;
	margin-top:25px;
}

.tvh-gallery-item img{
	width:100%;
	border-radius:16px;
	cursor:pointer;
	transition:.25s;
}

.tvh-gallery-item img:hover{
	transform:scale(1.03);
}

.tvh-gallery-video{
	margin-top:30px;
}

.tvh-gallery-video video,
.tvh-gallery-video iframe{
	width:100%;
	border-radius:18px;
	aspect-ratio:16/9;
}

/* ==========================================================
   Lightbox
========================================================== */

#tvh-lightbox{
	position:fixed;
	inset:0;
	background:rgba(0,0,0,.92);
	display:none;
	align-items:center;
	justify-content:center;
	z-index:99999;
	padding:40px;
}

#tvh-lightbox img{
	max-width:95%;
	max-height:90%;
	border-radius:16px;
}

#tvh-lightbox-close{
	position:absolute;
	top:25px;
	right:35px;
	color:#fff;
	font-size:42px;
	cursor:pointer;
}