/* Review Widget Slider Styles */

.review-slider-container {
    width: 100%;
    max-width: 640px;
    margin: 28px auto 0;
    overflow: hidden;
    position: relative;
    padding-bottom: 30px;
    /* Space for pagination */
}

/* Override review-wrap margin and shadow/spacing for Swiper slides */
.review-slider-container .review-wrap {
    margin: 0 auto;
}

/* Swiper Pagination Styling */
.review-slider-container .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

.review-slider-container .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #8A7F48;
    opacity: 0.3;
    margin: 0 4px;
    cursor: pointer;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.review-slider-container .swiper-pagination-bullet-active {
    opacity: 1;
    background: #8A7F48;
}

/* Light styling for pagination on dark backgrounds if the parent section is alt/dark */
.sec.dark .review-slider-container .swiper-pagination-bullet {
    background: #CDE4ED;
}

/* REVIEW */
.review-wrap {
    background: #8A7F48;
    border-radius: 3px;
    padding: 32px;
    margin: 0 auto
}

.review-stars {
    color: #CDE4ED;
    font-size: 16px;
    margin-bottom: 14px;
    line-height: normal;
}

.review-quote {
    font-size: 13px;
    color: #fff;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 16px
}

.review-name {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    line-height: 1.5;

}

.review-tag {
    background: #CDE4ED;
    color: #8A7F48;
    font-size: 8px;
    padding: 2px 8px;
    border-radius: 2px;
    font-weight: 600;
    line-height: 1.5;
}