.pr-news-wrap {
    position: relative;
    margin: 0 -24px;
    padding: 24px 0 64px;
    background-color: #f7f3f2;
    overflow: hidden;
}

.pr-news__title {
    font-family: "EuclidFlex", sans-serif;
    font-weight: 500;
    margin: 0 0 12px 24px;
}

.pr-news {
    display: flex;
    overflow-x: auto;

    /* snap */
    scroll-snap-type: x mandatory;   /* или x proximity — мягче */
    scroll-padding-left: 24px;       /* учесть внутренний паддинг */
    scroll-behavior: smooth;         /* плавная прокрутка при .scrollLeft += */
}

.pr-news::-webkit-scrollbar {    /* Chrome/Safari/новый Edge */
    display: none;
}
.pr-news__item {
    width: 55%;
    flex-shrink: 0;
    flex-grow: 0;
    padding-left: 12px;
}
.pr-news__item:first-child {
    padding-left: 24px;
}

.pr-news__item:last-child {
    padding-right: 24px;
}

.pr-news-item {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;

    /* snap */
    scroll-snap-align: start;   /* прилипать левым краем; ещё: center | end */
    scroll-snap-stop: always;   /* не «проскакивать» соседей (опционально) */
}

.pr-news-item__img {
    aspect-ratio: 1;
    padding-bottom: 25%;
}

.pr-news-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0 !important;
}

.pr-news-item__title {
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0, 1);
    color: #fff;
    padding: 0 12px 12px 12px;
}

.pr-news-item__title::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    height: 20px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0, 0) 0%, rgba(0,0,0, 1) 100%)
}

.pr-news-arrs {
    z-index: 2;
    position: absolute;
    bottom: 12px;
    right: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}
.pr-news-arrs__arr {
    display: block;
    width: 80px;
    height: 40px;
    border-radius: 40px;
    border: none;
    outline: none;
    text-indent: -9999px;
    pointer-events: all;
    cursor: pointer;
    transform-origin: center center;

    background-color: #fff;
    background-image: url(/app/public/design/arrow_red.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px 20px;
}
.pr-news-arrs__arr:active {
    background-color: rgba(0,0,0, 0.8);
}
.pr-news-arrs__left {
    transform: rotate(180deg);
}
.pr-news-arrs__right {

}
.pr-news__req {
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-size: 12px;
    opacity: 0.5;
}
.pr-news__req a {
    color: inherit;
    font-weight: bold;
}

@media all and (min-width: 540px) {

    .pr-news__title {
        margin: 0 0 12px 32px;
    }

    .pr-news {
        scroll-padding-left: 32px;       /* учесть внутренний паддинг */
    }

    .pr-news-wrap {
        margin: 0 -32px;
    }
    .pr-news__item {
        width: 40%;
    }
    .pr-news__item:first-child {
        padding-left: 32px;
    }

    .pr-news__item:last-child {
        padding-right: 32px;
    }
    .pr-news__req {
        left: 32px;
    }
}

@media all and (min-width: 768px) {
    .pr-news-wrap {
        margin: 0 0 32px 0;
        border-radius: 12px;
        padding: 24px 0;
        border: 1px solid rgba(255,0,0, 0.2);
    }
    .pr-news__item {
        width: 185px;
    }
    .pr-news-arrs {
        bottom: 50%;
        right: 0;
        width: 100%;
        padding: 12px;
        box-sizing: border-box;
        transform: translateY(50%);
    }
    .pr-news-arrs__arr {
        width: 40px;
        box-shadow: 0 0 0 1px rgba(0,0,0, 0.2);
    }
    .pr-news__req {
        position: absolute;
        top: 24px;
        right: 32px;
        bottom: auto;
        left: auto;
    }
}

@media all and (min-width: 950px) {
    .pr-news__item {
        width: 190px;
    }
}


@media all and (min-width: 1200px) {
    .pr-news-item__title {
        line-height: 1.2;
    }
}