.news {
	margin-bottom: 60px
}
.news__block {
	width: 100%;
	display:  flex;
}
.block-img {
	width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.news__block:hover .last__news .block-img img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
	-moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
	transition: all 1s ease-out;
}
.news .date {
	position: absolute;
	top: 0;
	left: 0;
    width: 92px;
    height: 70px;
    background-color: #EA2839;
    z-index: 2;
    display: flex;
    flex-direction: column;
    margin: 0;
    justify-content: center;
}
.news .date .day {
	font-family: Calibri;
    font-style: normal;
    font-weight: bold;
    font-size: 36px;
    line-height: 30px;
    color: var(--color-white);
    margin-left: 15px;
}
.news .date .year {
	font-family: Calibri;
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 22px;
	color: var(--color-white);
	margin-left: 15px;
}
.news__block .last__news {
    width: 50%;
	position: relative;
	display: flex;
	flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
	align-items: center;
}
/*@media (max-width: 1199px) {
	.news__block .last__news {
		justify-content: center;
	}
}*/
.news .last__news img{
	width: 100%;
	max-width: fit-content;
}
.last__news::after {
	content: '';
	display: block;
	position:  absolute;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, #29292D 0%, rgba(41, 41, 45, 0) 0.01%, rgba(41, 41, 45, 0.6) 100%);
	width: 100%;
	height: 100%;
}

.news__text {
	z-index: 2;
    position: absolute;
    bottom: 0;
	padding: 20px 50px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 29px;
    color: var(--color-white);
}
@media (max-width: 1199px) {
	.news__text {
		position: relative;
	}
}
.other_news {
	display: block;
	width: 50%;
	margin-left: 30px;
}

.other__news_item {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.other__news_item-date .day{
	display: flex;
    justify-content: end;
    font-family: Calibri;
    font-style: normal;
    font-weight: bold;
    font-size: 40px;
    line-height: 36px;
    color: var(--border-color-light-gray);
}


.other__news_item-date .year {
	font-family: Calibri;
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 20px;
	color: #56565E;
}

.other__news_item-title a{
	min-height: 103px;
    display: flex;
    align-items: center;
    max-width: 660px;
    font-family: 'Open Sans';
	font-style: normal;
	font-weight: normal;
	font-size: 20px;
	line-height: 28px;
	color: #383636;
}

.other__news_item:nth-child(1) {
	border-top: 1px;
	border-bottom: 1px;
	border-left: 0;
	border-right: 0;
	border-style: solid;
	border-color: var(--border-color-light-gray);
}

.other__news_item {
	border-top: 0;
	border-bottom: 1px;
	border-left: 0;
	border-right: 0;
	border-style: solid;
	border-color: var(--border-color-light-gray);
}

.news .button .button__link {
	margin-top: 40px;
}
@media (max-width: 991.98px) {
    .news__block {
		flex-direction: column;
		justify-content: space-between;
		position: relative;
    }
    .news__block .last__news {
        width: 100%;
    }
    .news__block .other_news {
        width: 100%;
		margin-left: 0;
    }
}
@media (max-width: 768px) {
	.news__block .last__news .news__text {
		padding: 20px;
	}
}
@media(max-width: 550px) {
	.news .date {
		position: relative;
		align-self: flex-start;
	}
}
@media (max-width: 425px) {
	.last__news::after {
		background:none;
	}
	.news__block .last__news .news__text {
		padding: 20px 0;
	}
	.news__block .last__news .news__text a {
		color: #383636;
	}
}