#brnb-reviews-slider {
    font-family: "Poppins", sans-serif;
}

#brnb-reviews-slider .splide__slide {
    padding: 0 10px;
}

.brnb-review-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #D9D9D9;
    border-radius: 16px;
    padding: 2rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
    background-color: #FFFFFF;
    transition: background-color 0.3s ease;
}

.brnb-review-card--featured {
    background-color: #355C8D;
    border-color: #355C8D;
}

.brnb-review-card__content {
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
    color: #333;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.brnb-review-card__content p {
    margin: 0;
}

.brnb-review-card--featured .brnb-review-card__content,
.brnb-review-card--featured .brnb-review-card__content p {
    color: #FFFFFF;
}

.brnb-review-card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.brnb-review-card__author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brnb-review-card__name {
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    color: #1a1a1a;
}

.brnb-review-card--featured .brnb-review-card__name {
    color: #FFFFFF;
}

.brnb-review-card__origin {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #555;
}

.brnb-review-card--featured .brnb-review-card__origin {
    color: rgba(255, 255, 255, 0.8);
}

.brnb-review-card__quote {
    line-height: 0;
    flex-shrink: 0;
}

.brnb-review-card__quote svg path {
    fill: #f2f2f4;
}

.brnb-review-card--featured .brnb-review-card__quote svg path {
    fill: #FFFFFF;
}

.brnb-review-card__quote svg {
    width: 64px;
    height: auto;
}

/* Pagination dots */
#brnb-reviews-slider .splide__pagination {
    margin-top: 1.5rem;
    padding: 0;
}

#brnb-reviews-slider .splide__pagination__page {
    background: #D9D9D9;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    opacity: 1;
}

#brnb-reviews-slider .splide__pagination__page.is-active {
    background: transparent;
    border: 2px solid #355C8D;
    transform: scale(1);
}

/* Responsive */
@media only screen and (max-width: 640px) {
    .brnb-review-card {
        min-height: 200px;
        padding: 1.5rem;
    }

    .brnb-review-card__quote svg {
        width: 48px;
    }
}
