.news_content_wrap{
	width: 100%;
    background-color: #1E1E1E;
	padding-top: 30px;
}

.news_content {
	max-width: 1680px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	column-gap: 16px;
	row-gap: 52px;
	justify-content: space-between;
}

.news_content__title{
	color: #FFFFFF;
	letter-spacing: -2px;
	font-family: "Cygre Medium-Medium", Helvetica;
	font-weight: 500;
	font-size: 100px;
	line-height: 132px;
	max-width: 1680px;
    width: 100%;
    margin: auto;
}

.news_content__item {
	display: flex;
    flex-direction: column;
    width: 408px;
    align-items: flex-start;
    gap: 22px;
    position: relative;
}

.news_content_img__wrap{
	height: 260px;
    width: 100%;
    overflow: hidden;
}

.news_content__item img {
	position: relative;
    align-self: stretch;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.news_content_img{
	position: relative;
}

.news_content__item a:hover .news_content_img:after {
	content: "";
	background: 
    linear-gradient(180deg, 
        rgba(255, 24, 29, 0) 0%, /* Начинаем с полной прозрачности */
        rgba(255, 24, 29, 0.1) 70%, 
        #46147C 110%
    ),
    linear-gradient(180deg, 
        rgba(255, 24, 29, 0) 0%, 
        rgba(255, 24, 29, 0.3) 90%, 
        rgba(255, 24, 29, 0) 100%
    );
	width: -webkit-fill-available;
	height: 110px;
	position: absolute;
	bottom: 2px;
	left: 0px;
}

.news_content__item h4{
	color: #FFFFFF;
	letter-spacing: -0.28px;
	font-family: "Cygre Medium-Medium", Helvetica;
	font-weight: 500;
	font-size: 24px;
}

@media screen and (max-width: 1260px) {
	.news_content {
		column-gap: unset;
		row-gap: 44px;
	}

	.news_content_wrap{
		padding-top: unset;
	}

	.news_content__title {
		font-size: 80px;
		/* line-height: 100%; */
	}
}

