
.reviews-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.reviews-main {
    width: 100%;
    max-width: 1300px;
}

.reviews-list {
    display: flex;
    justify-content: space-between;
    gap: 1vw;
    padding: 2vw 0;
}

.review-card {
    text-align: left;
    max-width: 30%;
    background-color: var(--white);
    padding: 2vw;
    border-radius: 1vw;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.review-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1vw;
}

.review-avatar {
    width: 4vw;
    height: 4vw;
    border-radius: 50%;
    object-fit: cover;
}

.review-user{
    display: flex;
    flex-direction: column;
    gap: .2vw;
}

.review-user strong {
    font-size: 1vw;
    color: var(--second);
}

.review-user p,
.review-user time {
    font-size: 1vw;
    color: var(--gray);
}

.review-rating {
    color: #ebaa20;
    font-size: 0.9vw;
}

.review-text {
    font-size: 1vw;
    color: var(--gray);
    line-height: 1.5;
}

.review-read-more {
    font-weight: 600;
    font-size: 1vw;
    color: var(--blue);
    text-decoration: none;
}

@media (max-width: 900px) {
    .reviews-list {
        flex-direction: column;
        gap: 4vw;
        align-items: center;
    }

    .review-card {
        max-width: 90vw;
        padding: 4vw;
        border-radius: 3vw;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

    .review-header {
        gap: 4vw;
    }

    .review-avatar {
        width: 12vw;
        height: 12vw;
    }

    .review-user strong {
        font-size: 4vw;
    }

    .review-user p,
    .review-user time,
    .review-text,
    .review-read-more,
    .review-rating {
        font-size: 3.5vw;
    }

    .review-text {
        line-height: 1.4;
    }

    .review-read-more {
        margin-top: 1vw;
    }
}