/* Container padding offsets to align edges perfectly */
.reviews-slider-wrapper {
    overflow: unset; /* Prevents horizontal scroll from negative margins */
    padding: 20px 0; /* Room for box-shadows */
}
.reviews-slider-wrapper .slick-list.draggable {
    overflow: unset;
}
/* Slick Track equal height fix */
.reviews-slider .slick-track {
    display: flex !important;
    align-items: center;
}
.reviews-slider .slick-slide {
    height: auto;
    outline: none;
}

/* Base spacing fallback (Elementor controls will override this) */
.reviews-slider {
    margin: 0 -15px; 
}
.review-slide {
    padding: 0 15px; 
    height: 100%;
}

/* Card Styling matched to screenshot */
.review-card {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 35px 30px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-stars {
    color: #f59e0b;
    margin-bottom: 20px;
    display: flex;
    gap: 3px;
}

.review-stars svg {
    width: 18px;
    height: 18px;
}

.review-content {
    color: #444444;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Automatically pushes the label down to the bottom */
}

.review-content p {
    margin: 0;
}

/* Inline Label Styling matched to screenshot */
.review-label {
    font-family: 'Spline Sans', sans-serif;
    font-size: 14px;
    color: #666; /* Pipe separator color */
    margin-top: auto; /* Fallback to ensure bottom placement */
}

.review-label strong {
    color: #8b2b2b; /* Maroon */
    font-weight: 600;
    margin-right: 3px;
}

.review-label em {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal; /* Screenshot shows non-italicized standard text */
    color: #333333;
    margin-left: 3px;
}

@media (max-width: 1024px) {
    .reviews-slider .slick-dots li button {
        font-size: 0;
        background: rgba(0, 0, 0, 0.2);
        border: 0;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        padding: 0;
    }
    .reviews-slider li.slick-active button {
        background: rgba(136, 42, 42, 1);
    }
    .reviews-slider .slick-dots li::marker {
        content: "";
    }
    .reviews-slider ul.slick-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 70px;
        gap: 10px;
    }
}