/* KT News Video (Creative Kitchen) — формат «видео» + галерея видео (norebro) */

.kt-news-video {
	position: relative;
	display: block;
	overflow: hidden;
	background: #000;
	line-height: 0;
}

/* ---------- Одиночное видео в статье ---------- */
.kt-news-video--single {
	width: 100%;
	max-height: 70vh;
	margin: 0 0 28px;
	border-radius: 8px;
}

.kt-news-video--single .kt-news-video__el {
	width: 100%;
	max-height: 70vh;
	display: block;
	object-fit: contain;
	background: #000;
}

/* Кнопка «включить звук» */
.kt-news-video__sound {
	position: absolute;
	right: 14px;
	bottom: 14px;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, .55);
	color: #fff;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s ease, transform .15s ease;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}
.kt-news-video__sound:hover { background: rgba(0, 0, 0, .8); transform: scale(1.06); }
.kt-news-video__sound .kt-news-video__sound-off { display: inline; }
.kt-news-video__sound .kt-news-video__sound-on  { display: none; }
.kt-news-video.is-unmuted .kt-news-video__sound .kt-news-video__sound-off { display: none; }
.kt-news-video.is-unmuted .kt-news-video__sound .kt-news-video__sound-on  { display: inline; }

/* ---------- Галерея видео (сетка) ---------- */
.kt-vg {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
	margin: 0 0 28px;
}
/* при 3-4 роликах держим по 2 в ряд на десктопе для крупного вида */
.kt-vg[data-kt-count="3"],
.kt-vg[data-kt-count="4"] { grid-template-columns: repeat(2, 1fr); }

.kt-vg__item {
	position: relative;
	display: block;
	padding: 0;
	border: 0;
	margin: 0;
	cursor: pointer;
	overflow: hidden;
	border-radius: 8px;
	background: #000;
	aspect-ratio: 1 / 1;
	line-height: 0;
}

.kt-vg__el {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kt-vg__play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: rgba(0, 0, 0, .5);
	color: #fff;
	font-size: 20px;
	line-height: 54px;
	text-align: center;
	pointer-events: none;
	opacity: .9;
	transition: opacity .2s ease, transform .2s ease;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}
.kt-vg__item:hover .kt-vg__play { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }

@media screen and (max-width: 600px) {
	.kt-vg[data-kt-count="3"],
	.kt-vg[data-kt-count="4"] { grid-template-columns: repeat(2, 1fr); }
	.kt-vg { gap: 8px; }
}

/* ---------- Превью в ленте ---------- */
.kt-news-video--preview { width: 100%; }
.kt-news-video--preview .kt-news-video__el { width: 100%; height: auto; display: block; object-fit: cover; }
.kt-news-video__badge {
	position: absolute;
	right: 12px;
	bottom: 12px;
	min-width: 34px;
	height: 34px;
	padding: 0 10px;
	border-radius: 17px;
	background: rgba(0, 0, 0, .55);
	color: #fff;
	font-size: 13px;
	line-height: 34px;
	text-align: center;
	pointer-events: none;
	z-index: 2;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}

/* ---------- Лайтбокс ---------- */
.kt-lb {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, .9);
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s ease, visibility .2s ease;
	padding: 24px;
}
.kt-lb.is-open { opacity: 1; visibility: visible; }
.kt-lb__video {
	max-width: 92vw;
	max-height: 88vh;
	width: auto;
	height: auto;
	border-radius: 8px;
	background: #000;
	box-shadow: 0 10px 60px rgba(0, 0, 0, .6);
}
.kt-lb__close {
	position: absolute;
	top: 18px;
	right: 22px;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .12);
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	transition: background .2s ease;
}
.kt-lb__close:hover { background: rgba(255, 255, 255, .25); }
