.display_v5b.main {
    display: flex;
    flex-direction: row;
    gap: 0px;
    justify-content: flex-start;
}
.display_v5b .left{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-right: 50px;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.10);
    min-width: 30%;
    padding: 20px;
}

.display_v5b .left p{
    margin: 0px;
}
.display_v5b .left .top{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.display_v5b .left .top h2{
    /* H4 */
    color: var(--Primary-Black, #201E1D);
    text-align: center;
    font-family: "Gill Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 24px */
}

.display_v5b .left .top .stars{
    display: flex;
    flex-direction: row;
    gap: 0px;
}

.display_v5b .left .top .stars svg{
    width: 38px;
    height: 100%;
    aspect-ratio: 1/1;
}

.display_v5b .main .reviewStars svg{
    width: 26px;
    height: 100%;
}
.display_v5b .main .reviewStars img{
    width: 18px;
    height: 100%;
}

.display_v5b .left .bottom{
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
}
.display_v5b .left .bottom p{
    color: var(--Primary-Black, #201E1D);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    
    /* Desktop/H6 */
    font-family: "Gill Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
}

.display_v5b .right{
    display: contents;
}


/* Swiper Container Styles */
.display_v5b .swiper {
    padding: 20px; /* Add padding to prevent shadow clipping (matches 30px blur) */
    margin: -20px; /* Negative margin to maintain original size */
}

.carousel-slide{
    height: 100% !important;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.10);
}
.review-box{
    background: var(--theme-color-background);
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    height: 100%;

}
.review-box .main{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.display_v5b .reviewer-name{
    color: var(--Primary-Black, #201E1D);

    /* Desktop/Information */
    font-family: "Gill Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 14.4px */
    text-transform: uppercase;
}

.review-text p{
    color: var(--Primary-Black, #201E1D);
    font-feature-settings: 'liga' off, 'clig' off;

    /* Desktop/Body-Small */
    font-family: "Gill Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
    
}
#display_review .swiper-pagination .swiper-pagination-bullet-active{
    background-color: var(--theme-color-text) !important;
} 

#display_review .prev::after{
    content: "";
    background-image: url('/wp-content/uploads/2025/09/angle-arrow-left.svg') !important;
    width: 5px !important;
    
}

#display_review .next::after{
    content: "";
    background-image: url('/wp-content/uploads/2025/09/angle-arrow-right.svg') !important;
    width: 5px !important;
}
#display_review .nav-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 12px;
    position: relative;
    min-width: 120px;
    min-height: 48px;
}
#display_review .prev,
#display_review .next{
    width: 25px !important;
    height: 25px !important;
    border: 1px solid #000 !important;
}

#display_review .nav-buttons{
    display: flex !important;
}
.display_v5b .top > p{
    color: var(--Primary-Black, #201E1D);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    
    /* Desktop/H6 */
    font-family: "Gill Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 22.4px */
}
.display_v5b .top > p span{
    text-decoration: underline;
}
.display_v5b .bottom > p{
    /* Information */
    color: var(--theme-color-text);
    font-family: var(--theme-font-family);
    font-size: var(--theme-font-size-information);
    font-style: var(--theme-font-style-information);
    font-weight: var(--theme-font-weight-information);
    line-height: var(--theme-font-line-height-information); /* 24px */
}
@media (max-width: 1024px) {
    .review-section {
        padding: 40px 0px 40px 40px;
    }
    .display_v5b.main{
        flex-direction: column;
        gap: 32px;
    }
    .display_v5b .left{
        margin-right: 0px;
        padding: 24px;
    }
    .display_v5b .right {
        display: block;
        width: 100%;
    }
    #display_review .nav-buttons{
        display: flex !important;
    }
    #display_review .prev,
    #display_review .next{
        display: flex !important;
    }
    #display_review .swiper-pagination{
        display: none !important;
    }
    
}
@media (max-width: 768px) {
    .review-section {
        padding: 20px 20px 20px 20px;
    }
    #display_review .nav-buttons{
        display: flex !important;
    }
    #display_review .prev,
    #display_review .next{
        display: flex !important;
    }
    #display_review .swiper-pagination{
        display: none !important;
    }
}
    