section.news-list .item {
    margin: 3em 0;
}

section.news-list .item h2 {
    margin: 0 0 1em 0;
}

section.news-list .item .description {
    margin: 1em 0;
}

section.news-list .item .img-wrapper + .text-wrapper {
    margin-top: 2em;
}

section.news-list .item .img-wrapper {
    border-radius: var(--box-radius);
    overflow: hidden;
    position: relative;
}

section.news-list .item .img-wrapper a {
    display: block;
    text-align: center;
}

section.news-list .item .img-wrapper a:after {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, 0.03);
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}

section.news-list .item .img-wrapper .img {
    width: 100%;
    min-height: 450px;
    display: block;
}

@media screen and (max-width: 600px) {
    section.news-list .item .img-wrapper .img {
        min-height: 300px;
    }
}

section.news-list .item .img-wrapper img {
    max-height: 550px;
}

section.news-list .shade:last-child {
    display: none;
}