.reviews-header {
    text-align: center
}



.ww-testimonial-wrap-container{
    & >.e-con-inner{
        overflow: hidden;
    }
}

.reviews-container{

	.swiper-pagination{
position: relative;
        margin-top: 30px !important;
        bottom: 0;
	}
	
    @media (min-width: 576px) {
        /*grid-template-columns: repeat(2, 1fr);*/
    }

    @media (min-width: 1024px) {
        /*grid-template-columns: repeat(4, 1fr);*/
    }
}


.review-card {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid var(--w-site-seconday-color, #e5e7eb);
    padding: 2rem 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-left: 1px;


    .review-title {
        color: #333;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .review-description{
        margin-bottom: 2rem;
    }

    .review-user{
        display: flex;
        align-items: center;
        gap: 12px;

        font-size: 18px;
        font-weight: 500;
        color: #333;

        .reviewer-name{
            margin-bottom: 0;
        }

        .reviewer-location{
            font-size: 14px;
            font-weight: 400;
            color: #666;
            margin-bottom: 0;

        }

        img{
            max-width: 64px;
            aspect-ratio: 1;
            width: 100%;
            border-radius: 50%;
            object-fit: cover;
        }
    }
}

.review-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 1.5rem;
}

.star {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    svg{
        width: 20px;
        height: 20px;
    }
}

.star-filled {
    color: #ffb900;
}

.star-empty {
    color: #e5e7eb;
}


/* Tablet Styles */
@media (min-width: 768px) {    

}

/* Desktop Styles */
@media (min-width: 1024px) {

}