.news-list{
	flex-wrap: wrap;
	justify-content: start !important;
	gap: 10px;
    padding-top: 35px;
}
.news-item{
	height: auto !important;
}
.news__title{
    padding-bottom: 30px;
}
.news-list{
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    width: 100%;
}
.news-item{
    width: 100%;
    max-width: 24%;
    height: 558px;
}
.news-item-title{
    padding-top: 20px;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--black);
}
.news-item__img{
    height: 100%;
    object-fit: cover;
}
.news-item__title{
    font-family: "PTSansCaptionBold";
    font-weight: 700;
    font-size: 20px;
    color: var(--black);
    text-transform: uppercase;
    max-width: 330px;
}р
.news-item__subtitle{
    font-weight: 400;
    font-size: 16px;
    color: rgba(66, 66, 66, 1);
    margin-bottom: 4px;
}
.news-item-content{
    padding-top: 20px;
}
.news-item-link{
    text-decoration: none;
    color: rgba(66, 66, 66, 1);
}
.news-content{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.news-action{
    font-family: "PTSansCaptionBold";
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
    border: 1px solid #000;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.5s;
    padding: 12px 0;
}
.news-action-link{
    color: var(--black);
    text-decoration: none;
    padding: 12px 53px;
}
.news-sections{
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    width: 100%;
}
.news-sections-item{
    border: 1px solid var(--black);
    transition: 0.5s;
    width: 190px;
}
.news-sections-item--active{
    background-color: var(--black);
}
.news-sections-item-link,
.news-sections-mobile-list-item-link{
    text-decoration: none;
}
.news-sections-item--active .news-sections-item-link{
    color: #fff;
}
.news-sections-item-name{
    color: var(--black);
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}
.news-sections-item--active .news-sections-item-name{
    color: #fff;
}
.news-sections-mobile{
    width: 100%;
    position: absolute;
}
.news-sections-mobile-current{
    width: 100%;
    border: 1px solid var(--black);
    text-align: center;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    background-color: #fff;
    border-bottom: unset;
}
.news-sections-mobile-list-item-link{
    color: var(--black);
    text-align: center;
    padding: 10px 0;
}
.news-sections-mobile-list{
    border: 1px solid var(--black);
    border-top: unset;
    transition: 1s;
}
.news-sections-mobile-list-item:not(:last-child){
    border-bottom: 1px solid var(--black);
}
.news-sections-mobile-list-item{
    padding: 10px 0;
    background-color: #fff;
}
.news-sections-mobile-list-item:first-child{
    border-top: 1px solid var(--black);
}
.news-sections-mobile-list-item--active{
    background-color: var(--black);
}
.news-sections-mobile-list-item--active .news-sections-mobile-list-item-link{
    color: #fff;
}
.news-sections-mobile-current-toggle{
    position: absolute;
    right: 25px;
}
.news-sections-mobile-list{
    max-height: 0;
    overflow: hidden;
}
.news-item-pic{
    height: 300px;
}
.news-item-img{
    height: inherit;
    object-fit: cover;
    width: 100%;
}
@media(max-width: 1530px){
	.news-item{
        max-width: 24%;
        background-size: cover;
    }
}
@media(max-width: 880px){
    .news-list{
        flex-wrap: wrap;
        gap: 20px;
    }
    .news-item{
        max-width: 45%;
    }
}
@media (max-width: 880px) {
    .news-list {
        justify-content: center !important;
    }
}
@media(min-width: 600px){
    .news-sections-mobile{
        display: none;
    }
}
@media(max-width: 600px){
    .news-sections{
        display: none;
    }
    .news-list{
        padding-top: 80px;
    }
}
@media(max-width: 530px){
    .news-item__title{
        font-size: 15px;
    }
}
@media(max-width: 450px){
    .news-item{
        max-width: 100%;
    }
}
@media(max-width: 330px){
    .news-action{
        padding: 12px 50px;
    }
}
@media screen{
    .news-action:hover{
        background: var(--black);
        color: #fff;
    }
    .news-action-link:hover{
        color: #fff;
    }
    .news-sections-item:hover{
        background-color: var(--black);
    }
    .news-sections-item:hover .news-sections-item-name{
        color: #fff;
    }
}