.stories-news {
    padding: 20px 0 42px;
    background: #f4efe6;
}

.stories-news__head {
    margin-bottom: 18px;
}

.stories-news__head h2 {
    margin: 0 0 6px;
    color: #30333a;
    font-size: 32px;
    font-weight: 900;
}

.stories-news__head p {
    margin: 0;
    color: #777;
    font-size: 16px;
}

.stories-news__list {
    display: flex;
    gap: 18px;
     overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 4px 16px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.stories-news__list::-webkit-scrollbar {
    display: none;
}

.stories-news__item {
    width: 230px;
    min-width: 230px;
    flex: 0 0 230px;
    height: 140px;
    position: relative;
    padding: 0;
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    background: #ddd;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 14px 35px rgba(80, 54, 28, 0.14);
}

.stories-news__circle {
    width: 100%;
    height: 100%;
    display: block;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background: transparent;
}

.stories-news__item:hover{
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
}

.stories-news__circle img {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    border-radius: 0;
    object-fit: cover;
}

.stories-news__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.05),
        rgba(0,0,0,0.62)
    );
}

.stories-news__name {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.news-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.news-modal.is-active {
    display: flex;
}

.news-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.72);
    backdrop-filter: blur(6px);
}

.news-modal__content {
    position: relative;
    z-index: 2;
    width: min(1100px, 96vw);
    height: min(760px, 92vh);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    overflow: hidden;
    border-radius: 34px;
    background: #fff;
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.45);
}

.news-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.news-modal__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.news-modal__body {
    padding: 54px 42px;
    overflow-y: auto;
}

.news-modal__date {
    display: block;
    margin-bottom: 14px;
    color: #b97823;
    font-size: 15px;
    font-weight: 900;
}

.news-modal__title {
    margin: 0 0 20px;
    color: #30333a;
    font-size: 38px;
    line-height: 1.1;
}

.news-modal__text {
    margin: 0;
    color: #60646c;
    font-size: 19px;
    line-height: 1.65;
}

.news-modal__button {
    display: inline-flex;
    margin-top: 28px;
    padding: 15px 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, #d28b31, #b97722);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 768px) {
    .stories-news__item {
        width: 170px;
        flex-basis: 170px;
        height: 110px;
        border-radius: 20px;
    }

    .news-modal {
        padding: 12px;
    }

    .news-modal__content {
        width: 100%;
        height: 94vh;
        grid-template-columns: 1fr;
        grid-template-rows: 46% 54%;
        border-radius: 24px;
    }

    .news-modal__body {
        padding: 26px 22px;
    }

    .news-modal__title {
        font-size: 28px;
    }

    .news-modal__text {
        font-size: 16px;
        line-height: 1.55;
    }
}