.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, 350px);
    grid-gap: 30px;
    justify-content: center;
}

.news {
    background-color: #fff;
    display: grid;
}

.news__img {
    height: 220px;
    background: no-repeat center center;
    background-size: cover;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    cursor: pointer;
}

.news__date {
    color: #fff;
    background: rgba(169, 11, 129, .31);
    padding: 5px;
    display: inline-block;
}

.news__img img {
    object-fit: cover;
}

.news__body {
    padding: 30px 0;
}

.news__title a {
    color: #825754;
    font-size: 20px;
    font-weight: 700;
}

.inner {
    grid-template-columns: repeat(auto-fill, 250px);
    grid-gap: 15px;
    justify-content: flex-start;
}

.inner .news__img {
    height: 150px;
}