.news__snippet,
.news__snippet:visited,
.news__snippet:active,
.news__snippet:focus,
.news__snippet:hover {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    display: flex;
    margin-bottom: var(--spacing-lg);
    background-color: var(--main-bg);
    padding: 1.8rem 2rem;
    background: #fff;
    transition: .3s background-color;
}

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

.news__img {
    width: 100px;
    height: 95px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-right: var(--spacing-md);
}

.news__date {
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
    color: var(--sec-text-color);
}

.news__title {
    color: var(--primary-link-color);
    font-weight: 600;
    font-size: calc(var(--font-size-base) + 3px);
    margin-bottom: var(--spacing-sm);
}

.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;
    font-size: calc(var(--font-size-base) - 1px);
    color: var(--sec-text-color);
}

@media (min-width: 768px) {
    .news__img {
        width: 137px;
        height: 133px;
        margin-right: 20px;
    }
}

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