/* Reviews slider widget styles */
.reviews-slider {
    position: relative;
}

.reviews-slider .splide__track {
    overflow: hidden;
}

.reviews-slider .splide__list {
    align-items: stretch;
}

.reviews-slider .splide__slide {
    height: auto;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--light-gray);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    color: rgb(245, 166, 35);
}

.review-card blockquote {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 1.25rem;
    padding: 0;
    margin-left: 0;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--blue);
    font-family: var(--heading-font);
    font-size: 1.1rem;
    flex-shrink: 0;
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-author strong {
    display: block;
    font-size: 0.9rem;
}

.review-author span {
    font-size: 0.8rem;
    color: var(--mid-gray);
}

.reviews-cta {
    text-align: center;
    margin-top: 2.5rem;
}

@media (max-width: 1024px) {
    .reviews-slider .splide__slide {
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .reviews-slider .splide__slide {
        max-width: 100%;
    }
}