.news__snippet,
.news__snippet:visited,
.news__snippet:active,
.news__snippet:focus,
.news__snippet:hover {
    border: 1px solid #ccc;
    border-radius: 20px;
    display: flex;
    margin-bottom: 10px;
    background-color: blue;
    padding: 20px;
    background: #fff;
    transition: .3s background-color;
    text-decoration: none;
}

.news__snippet:hover {
    background-color: #f1f6f4;
}

.news__img {
    width: 100px;
    height: 95px;
    object-fit: cover;
    border-radius: 20px;
    margin-right: 20px;
    display: none;
}

.news__date {
    font-weight: 400;
    margin-bottom: 5px;
    color: #646464;
}

.news__title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #0C1737;
    font-size: 18px;
}

.news__text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.5em * 3);
    line-height: 1.5;
    color: #000;
}

@media (min-width: 768px) {
    .news__img {
        width: 137px;
        height: 133px;
        display: block;
    }

    .news__title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .news__snippet,
    .news__snippet:visited,
    .news__snippet:active,
    .news__snippet:focus,
    .news__snippet:hover {
        padding: 25px;
    }
}

@media (min-width: 1200px) {
    .news__snippet,
    .news__snippet:visited,
    .news__snippet:active,
    .news__snippet:focus,
    .news__snippet:hover {
        padding: 30px;
    }

    .news__title {
        font-size: 25px;
    }
}

@media (min-width: 1600px) {
    .news__img {
        width: 160px;
        height: 160px;
    }

    .news__title {
        font-size: 27px;
    }
}