.news__container {
    display: block;
    margin: 0 0 120px 0;
    position: relative;
}

.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;
}

.news__slider-next, 
.news__slider-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #131313;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news__slider-next {
    position: absolute;
    top: calc(50% - 20px);
    right: -20px;
    z-index: 10;
}

.news__slider-prev {
    position: absolute;
    top: calc(50% - 20px);
    left: -20px;
    z-index: 10;
    transform: rotate(180deg);
  }


.news__slider-next.swiper-button-disabled, 
.news__slider-prev.swiper-button-disabled {
    display: none;
}

/* чтобы все слайды имели одинаковую высоту */
.news__slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.news__slider .swiper-slide {
    height: auto;
    display: flex;
}

/* карточка занимает всю высоту слайда */
.news__item {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    height: 100%;
}

/* контент внутри карточки */
.news__wrapper {
    background-color: #f7f7f7;
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* текст растягивается */
.news__item-prev-text {
    font-size: 14px;
    line-height: 1.3rem;
    font-weight: 400;
    margin-bottom: 20px;
    flex: 1;
}

@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%;}
}