.news-gallery{
	display:flex;
	flex-direction:column;
	width: 100%;
	position: relative;
	padding-top: 18px ;
}

 .news-gallery__header{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	position: relative;
 }

.news-gallery__header::before,
.news-gallery__header::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ccc;
    z-index: 0;
}

.news-gallery__header::before {
    top: calc(50% - 1px); /* верхняя линия */
}

.news-gallery__header::after {
    top: calc(50% + 1px); /* нижняя линия */
}



 .news-gallery__date{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 8px 10px;
	background-color: #343434;
	color:#e20000;
	border:2px solid #fff;
	border-radius: 18px;
	width: 204px;
	height: 46px;	
	font-weight: 800;
	position: relative;
	z-index: 1;
	font-size: 18px;
	letter-spacing: 0.01px;
}

.news-gallery__text{
	color:#fff;
	display: flex;
	width: 100%;
	justify-content: center;

}
.ng-text-content{
	display: flex;
	justify-content: center;
	gap:190px;
	width: 100%;
	padding: 18px 200px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.1px;

}
.ng-text__left, .ng-text__right{
	display: flex;
	flex-direction: column;
	width: 100%;
	gap:10px;
}



/*галерея*/


.news-gallery__photos {
    width: 100%;
	padding: 10px 10px 30px 10px;

	border-bottom: 3px double #fff;
    max-width: 100%;
    overflow: hidden; /* КРИТИЧНО */
    position: relative;
	display: flex;
}
.news-gallery__photos .swiper-wrapper {
	display: flex;
    flex-direction: row !important;
}

.swiper-slide {
    user-select: none;
	
}

.swiper-slide img,
.video-slide img {
    width: 100%;
	aspect-ratio: 3/2.3;
    object-fit: cover;
    display: block;
	border-radius: 20px;
}

/* видео */
.video-slide {
    position: relative;
    aspect-ratio: 3/2.3;
	border-radius: 20px;
}


.video-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* 🎯 центр — play */
.video-play-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 70px;
    height: 70px;

    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-center img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}





/* 🔥 кнопка "палец" снизу слева */
.video-play {
    position: absolute;
    right: 12px;
    bottom: -15px;

    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* размер иконки */
.video-play img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.f-button {
	margin-top: 60px !important;
}

.nb{
	border:none !important;
	padding-top: 30px !important;
}
@media(max-width:1400px){
	.ng-text-content {
		gap: 60px;
		padding: 18px 60px;
	}
}

@media(max-width:900px){
	.ng-text-content {
		gap: 40px;
		padding: 18px 40px;
	}
}
@media(max-width:600px){
	.ng-text-content {
		gap: 40px;
		padding: 18px 40px;
	}
	.ng-text-content{
		flex-direction: column;
		gap:10px;
	}
}