/* bw_reviews — zelfstandige stijl, geen afhankelijkheid van thema-classes */

.bw-reviews-section {
    padding: 20px 0 40px;
}

.bw-reviews-carousel {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    padding: 32px 44px 26px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    text-align: center;
    color: #1a1a1a;
    position: relative;
}

.bw-reviews-carousel * {
    box-sizing: border-box;
}

.bw-reviews-heading {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 18px;
    color: #1a1a1a;
}

.bw-reviews-slides {
    position: relative;
    min-height: 140px;
    transition: height .35s ease;
}

.bw-reviews-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 4px 2px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s ease, visibility 0s linear .45s;
}

.bw-reviews-slide--active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transition: opacity .45s ease, visibility 0s linear 0s;
}

.bw-reviews-stars {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.bw-reviews-star {
    color: #e0e0e0;
}

.bw-reviews-star--filled {
    color: #fbbc04;
}

.bw-reviews-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.bw-reviews-text {
    font-size: 15px;
    line-height: 1.55;
    color: #3c4043;
    font-style: italic;
    margin: 0 0 14px;
    word-wrap: break-word;
}

.bw-reviews-author {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
}

.bw-reviews-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 18px;
}

.bw-reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: #d0d0d0;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    transition: background .15s, transform .15s;
}

.bw-reviews-dot--active {
    background: #ff6600;
    transform: scale(1.2);
}

.bw-reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    cursor: pointer;
    padding: 0;
    font-size: 18px;
    color: #5f6368;
    z-index: 2;
    line-height: 1;
    transition: background .15s, border-color .15s;
}

.bw-reviews-arrow:hover {
    background: #f5f5f5;
    border-color: #c0c0c0;
}

.bw-reviews-arrow--prev {
    left: 6px;
}

.bw-reviews-arrow--next {
    right: 6px;
}

@media (max-width: 600px) {
    .bw-reviews-carousel {
        margin: 0 12px;
        padding: 26px 34px 20px;
    }

    .bw-reviews-arrow--prev {
        left: 2px;
    }

    .bw-reviews-arrow--next {
        right: 2px;
    }
}
