/* Обгортка */
.prokvit-news {
    padding: 40px 0;
    position: relative;
    background-color: #eeeae5;
}

/* Заголовок */
.prokvit-news-title {
    font-family: "Arsenal", Helvetica, sans-serif;
    font-weight: 400;
    color: #363636;
    font-size: 40px;
    line-height: 59px;
    text-align: center;
    margin: 0;
}

/* Опис */
.prokvit-news-description {
    font-family: "Arsenal", Helvetica, sans-serif;
    font-weight: 400;
    color: #363636;
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 10px;
    margin-top: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Мобільні стрілки (inline із заголовком) */
.prokvit-news-header button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Десктопні стрілки */
.prokvit-news-arrows {
    gap: 16px;
}

.prokvit-news-arrows button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Swiper */
.prokvit-news-swiper {
    overflow: hidden;
    position: relative;
    margin-top: 60px;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 0;
    width: auto;
}

/* Картка новини */
.news-box {
    text-align: left;4
   /* background: #fff;*/
    border-radius: 4px;
    margin-bottom: 20px;

}
.news-box:hover
{
    -webkit-box-shadow: 0 2px 4px rgba(40, 41, 61, .04), 0 8px 16px rgba(96, 97, 112, .16);
    box-shadow: 0 2px 4px rgba(40, 41, 61, .04), 0 8px 16px rgba(96, 97, 112, .16);
}
.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.news-gradient {
    position: absolute;
    left: 0;

    top: 0;
    background: linear-gradient(180deg, rgba(119, 104, 101, 0.5) 0%, rgba(184, 157, 146, 0) 100%);
    z-index: 1;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.news-image-title {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    font-family: "Arsenal", Helvetica, sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 30px;

    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
    z-index: 1;
}

/* Контент новини */
.news-content {
    padding: 12px 10px;
}

.news-title {
    font-family: "Arsenal", Helvetica, sans-serif;
    font-weight: 400;
    color: #363636;
    font-size: 20px;
    margin-bottom: 6px;
}

.news-title a {
    color: inherit;
    text-decoration: none;
}

.news-description {
    font-family: "Arsenal", Helvetica, sans-serif;
    font-weight: 400;
    color: #828282;
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
    margin-bottom: 6px;
}

/* Мобільна адаптація */
@media (min-width: 768px) {
    .news-box {
        min-height: 340px;
    }
}
@media (max-width: 767.98px) {

    .prokvit-news-description {
        display: none;
    }

    .prokvit-news-title {
        font-size: 24px;
        line-height: 59px;
        white-space: normal;
    }

    .news-title {
        font-size: 14px;
    }

    .news-description {
        font-size: 13px;
    }

    .prokvit-news-swiper {
        margin-top: 20px;
    }

    .news-image-title {
        font-size: 14px;
        bottom: 6px;
        left: 8px;
        right: 8px;
    }
}
