#news .news-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1em;
    margin: 0;
    padding: 0;
    text-align: left;
}

#news .news-list:after {
    display: none;
}

#news .news-item {
    list-style: none;
}

#news .news-card {
    background: #fff;
    border: 1px solid rgba(81, 62, 53, 0.16);
    box-shadow: 0 8px 20px rgba(81, 62, 53, 0.09);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

#news .news-card-image {
    background: #fff;
    cursor: pointer;
    display: block;
    height: 190px;
}

#news .news-card img {
    background: #fff;
    display: block;
    height: 190px;
    object-fit: cover;
    transition: opacity 0.2s ease;
    width: 100%;
}

#news .news-card-image img {
    height: 100%;
    object-fit: contain;
}

#news .news-card-image:hover img {
    opacity: 0.88;
}

#news .news-card-content {
    background: #99BC39;
    box-sizing: border-box;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.35em;
    justify-content: space-between;
    padding: 1em;
}

#news .news-card p {
    font-size: 105%;
    line-height: 1.25;
    margin: 0;
}

#news .news-card time {
    font-size: 90%;
    font-weight: 500;
    opacity: 0.9;
}

@media screen and (min-width: 620px) {
    #news .news-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #news .news-card-image,
    #news .news-card img {
        height: 210px;
    }

    #news .news-card-image img {
        height: 100%;
    }
}

@media screen and (min-width: 1040px) {
    #news .news-list {
        gap: 1.2em;
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    #news .news-item {
        grid-column: span 2;
    }

    #news .news-item:nth-child(-n+2) {
        grid-column: span 3;
    }

    #news .news-item:nth-child(-n+2) .news-card-image {
        height: 250px;
    }

    #news .news-item:nth-child(-n+2) .news-card-image img {
        height: 100%;
    }

    #news .news-card-image,
    #news .news-card img {
        height: 180px;
    }

    #news .news-card-image img {
        height: 100%;
    }
}

@media screen and (max-width: 420px) {
    #news .news-card-image,
    #news .news-card img {
        height: 170px;
    }

    #news .news-card-image img {
        height: 100%;
    }

    #news .news-card-content {
        padding: 0.85em;
    }
}
