.google-reviews-widget {
    margin-bottom: 40px;
}

.google-reviews-container {
    position: relative;

}
.google-reviews-container  .swiper {
    padding: 0 40px;
    padding-bottom: 40px;
}


.google-reviews-widget {
    margin-bottom: 40px;
}


.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 10px;
}



.review-card figure {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card blockquote {
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review-stars {
    margin-bottom: 15px;
    text-align: center;
}

.review-stars .star {
    font-size: 1.5rem;
    margin: 0 2px;
    display: inline-block;
    line-height: 1;
}

.review-stars .star-filled {
    color: #ffc107;
}

.review-stars .star-empty {
    color: #e0e0e0;
}

.review-text {
    flex: 1;
    font-style: italic;
    line-height: 1.6;
    color: #333333;
    font-size: 1rem;
    text-align: center;
    margin: 20px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.review-author {
    font-weight: bold;
    color: #666666;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 15px;
    padding-top: 15px;
}

.swiper-button-prev,
.swiper-button-next {
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet {
    background-color: #333;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background-color: #ffc107;
    opacity: 1;
}

@media (max-width: 768px) {
    .review-card {
        height: 280px;
        padding: 20px;
        margin: 5px;
    }
    
    .review-text {
        font-size: 0.9rem;
        -webkit-line-clamp: 5;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }
    
    .review-stars .star {
        font-size: 1.3rem;
    }
}