/* Customer reviews block (home page, CMS block "home-customer-reviews") */

/* Match the theme's bootstrap .container width (1170px incl. 15px side paddings) */
.home-customer-reviews {
    box-sizing: border-box;
    max-width: 1170px;
    margin: 60px auto 40px;
    padding: 0 15px;
}

.home-customer-reviews .cbp-reviews__title {
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 30px;
}

/* Masonry columns as a no-JS fallback; the Owl Carousel slider takes over on init */
.home-customer-reviews .cbp-reviews__grid {
    column-count: 3;
    column-gap: 24px;
}

.home-customer-reviews .cbp-reviews__grid.owl-loaded {
    column-count: auto;
    column-gap: normal;
}

/* Give the clipping box some breathing room so card borders/shadows are not cut off */
.home-customer-reviews .cbp-reviews__grid .owl-stage-outer {
    padding: 6px;
    margin: -6px;
}

/* Equal-height cards inside the slider */
.home-customer-reviews .cbp-reviews__grid .owl-stage {
    display: flex;
}

.home-customer-reviews .cbp-reviews__grid .owl-item {
    display: flex;
}

.home-customer-reviews .cbp-reviews__grid .owl-item .cbp-review-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
}

.home-customer-reviews .cbp-reviews__grid .owl-item .cbp-review-card__text {
    flex-grow: 1;
}

.home-customer-reviews .cbp-reviews__grid .owl-dots {
    margin-top: 16px;
    text-align: center;
}

.home-customer-reviews .cbp-review-card {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    break-inside: avoid;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    padding: 24px;
    margin: 0 0 24px;
}

.home-customer-reviews .cbp-review-card__stars {
    display: block;
    color: #ff0000;
    font-size: 22px;
    letter-spacing: 4px;
    margin-bottom: 14px;
}

.home-customer-reviews .cbp-review-card__text {
    margin: 0 0 20px;
    color: #333;
}

.home-customer-reviews .cbp-review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-customer-reviews .cbp-review-card__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f2f2f2;
    color: #555;
    font-size: 14px;
    font-weight: 600;
}

.home-customer-reviews .cbp-review-card__name {
    display: block;
    font-weight: 600;
}

.home-customer-reviews .cbp-review-card__date {
    display: block;
    color: #777;
    font-size: 13px;
}

@media (max-width: 1023px) {
    .home-customer-reviews .cbp-reviews__grid {
        column-count: 2;
    }
}

@media (max-width: 767px) {
    .home-customer-reviews {
        margin: 40px auto 20px;
    }

    .home-customer-reviews .cbp-reviews__title {
        font-size: 26px;
    }

    .home-customer-reviews .cbp-reviews__grid {
        column-count: 1;
    }
}
