.news-block__container{
	position: relative;
}

.news-block__items{
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 30px;
	margin-bottom: 42px;
}

.news-block__item{
	grid-column: span 2;
}

.news-block__item img{
	border-radius: 16px;
	overflow: hidden;
	height: 235px;
	width: 100%;
    object-fit: cover;
	margin-bottom: 24px;
}

.news-block__item span{
	display: block;
	color: #606060;
	font-size: 12px;
	line-height: 16px;
	margin-bottom: 16px;
}


/* .news-block__item div{ */
.news-block__item-text{
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	letter-spacing: 0%;


	display: -webkit-box;
    -webkit-line-clamp: 2; /* Ограничение в 3 строки */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; /* Добавляет "..." */
    max-height: 4.5em; /* Примерный расчет высоты для 3 строк */
    line-height: 1.5em; /* Задаем высоту строки */
}



.news-block__container .button2025{
	color: black;
}

@media(max-width: 767px){
	.news-block__items{
		width: 1075px;
	}
	
	.news-block__scroll{
		overflow-x: scroll;
	}

	/* .news-block__item div { */
	.news-block__item-text{
		font-size: 16px;
	}
}

@media(max-width: 500px){
	.news-block__items {
		width: 788px;
    }
	
	.news-block__item img {
		height: 185px;
	}
	
	/* .news-block__item div { */
	.news-block__item-text{
		-webkit-line-clamp: 3;
	}
}

@media(min-width: 767px){
	.news-block__item:hover a{
		color: var(--orange);
	}
}