/* KT News Video — стили формата «видео» для новостей (norebro) */

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

/* --- Превью в ленте: квадрат/адаптив как у картинки карточки --- */
.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;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(0, 0, 0, .55);
	color: #fff;
	font-size: 13px;
	line-height: 34px;
	text-align: center;
	pointer-events: none;
	z-index: 2;
	backdrop-filter: blur(2px);
}

/* --- Видео в самой статье (single, кастомная новость) --- */
/* Занимает тот же квадрат 1:1, что и .image-block */
.kt-news-video--single {
	width: 100%;
	height: 0;
	padding-bottom: 100%;
	border-radius: 0;
}

.kt-news-video--single .kt-news-video__el {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Кнопка «включить звук» */
.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;
	backdrop-filter: blur(2px);
}

.kt-news-video__sound:hover {
	background: rgba(0, 0, 0, .8);
	transform: scale(1.06);
}

/* Переключение иконки звука: по умолчанию звук выключен (muted) */
.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; }
