.news-list__inner{
    display: flex;
    flex-wrap: wrap;
    grid-gap: 20px;
}
.news-item{
    position: relative;
    width: calc(33.3333% - 15px);
    padding: 20px 10px;
    border-radius: 12px;
    filter: drop-shadow(1px 1px 12px rgba(0, 0, 0, 0.19));
}
.news-item__info {
    background: #fff;
    padding: 20px 10px;
    border-radius: 0px 0px 12px 12px;
}
.news-item__image img{
    width: 100%;
    height: 100%;
    border-radius: 12px 12px 0 0;
}
.news-item__title{
    font-size: 18px;
}
.news-item_link{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.news-list_nav{
    margin-top: 40px;
}
.news-item__desc {
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
}
.news-item__image {
    max-height: 210px;
    overflow: hidden;
}
@media(max-width:1020px){
    .news-item{
        width: calc(50% - 15px);
    }
}
@media(max-width:530px){
    .news-item{
        width: 100%;
    }
}