/*Новости*/
.news-card{
    display: block;
}
.news-card:hover .news-card__title {
	color: var(--orange-color);
}

.news-card:hover .news-card__subtitle {
	color: var(--orange-color);
}

.news-card__img {
	margin-bottom: 24px;
	text-align: center;
    position: relative;
}

.news-card__img img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.news-card--file{
    height: 100%;
}
.news-card__labels{
    position: absolute;
	top: 16px;
	right: 16px;
    display: flex;
    gap: 8px;
}

.news-card__labels-item {
	font-weight: 400;
	font-size: 12px;
	line-height: 15px;
	background-color: #fff;
	color: var(--orange-color);
	padding: 6px 8px;
}

.news-card__date {
	margin-bottom: 8px;

	font-weight: 400;
	font-size: 14px;
	line-height: 17px;

	color: var(--mild-grey-color);
}
.news-card__title {
	margin-bottom: 16px;
	width: 85%;
	font-weight: 400;
	font-size: 24px;
	line-height: 114.52%;
	transition: color 0.5s ease;
}

.news-card__subtitle {
	width: 85%;
	font-weight: 400;
	font-size: 16px;
	line-height: 145%;
	transition: color 0.5s ease;
}

@media screen and (max-width: 640px){
    .news-slider .slider-head{
        margin-bottom: 0;
    }
    .news-slider .slider-head__nav{
        display: none;
    }
    .news-slider__wrapper{
        flex-direction: column;
        gap: 40px;
    }
    .news-slider__item:not(:first-child, :nth-child(2), :nth-child(3)){
        display: none;
    }
}

@media screen and (max-width: 425px){
    .news-slider .slider-head{
        margin-bottom: 0;
    }
    .news-card__img{
        margin-bottom: 16px;
    }
    .news-card__date{
        font-size: 12px;
        line-height: normal;
    }
    .news-card__title{
        font-size: 18px;
        margin-bottom: 8px;
    }
    .news-card__subtitle{
        font-size: 15px;
    }
}
.news-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.news-card--file {
    background: rgba(240, 241, 245, 0.8);
    padding: 16px 16px 24px 32px;
    position: relative;
}

.news-card--file .news-card__labels {
    position: relative;
    top: unset;
    right: unset;
    justify-content: flex-end;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.news-card--file .news-card__date {
    font-size: 12px;
    margin-bottom: 24px;
}

.news-card--file .document {
    display: flex;
    gap: 16px;
    width: fit-content;
}

.document__link {
    text-align: left;
}

.news-card--file .document__title {
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 8px;
    transition: .3s;
}

.news-card--file .document__info {
    font-size: 12px;
    color: var(--dark-grey-color);
}

.news-card--file:hover .document {
    color: var(--orange-color);
}

@media screen and (max-width: 1024px) {
    .news-section__grid {
        grid-template-columns: 48% 48%;
    }
}

@media screen and (max-width: 768px) {
    .news-card--file {
        padding-left: 16px;
    }
}

@media screen and (max-width: 600px) {
    .news-section__grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 375px) {
    .news-card--file .document__img svg {
        width: 20px;
        height: auto;
    }
}

.title_link svg {
    width: 29px;
    height: 29px;
    stroke: var(--orange-color);
    margin-left: 6px;
    transition: stroke 0.5s ease;
}

.title_link:hover svg {
    stroke: var(--blue-color);
}


.news-card__labels-item a {
    color: inherit;
}


