.news__container {
    display: block;

    margin: 4rem 0 4rem 0;
}

.news__item {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.news__prev-pic {
    width: 20%;
    min-width: 195px;
}

.news__prev-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news__wrapper {
    background-color: #f7f7f7;
    padding: 15px;
}

.news__item-title {
    margin: 0 0 15px 0;
}

.news__item-title a {
    text-decoration: none;
    transition: 0.2s;
    color: var(--color-black);
}

.news__item-title a:hover {
    color: rgba(40, 40, 40, 0.5);
}

.news__item-prev-text {
    font-size: 14px;
    line-height: 1.3rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.hreft_r {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid black;
    border-radius: 30px;
    color: black;
    text-decoration: none;
    transition: 0.5s;
}

.hreft_r:hover {
    background: black;
    color: white;
    transition: 0.5s;
}

@media(max-width:1100px) {
    .news__container {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:650px) {
    .news__container {
        grid-template-columns: repeat(1, 1fr)
    }

    .news__item{display: block;}
    .news__prev-pic{width: 100%;}
}