.reviews-site {
    margin-top: 2.34vw;
}

.reviews-site .btns-switch {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.83vw;
}

.reviews-site .btns-switch .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.7083333333vw;
    height: 2.7083333333vw;
    border-radius: 100%;
    background-color: transparent;
    border: 1px solid #42A5F5;
    transition: border 300ms ease, background-color 300ms ease;
}

.reviews-site .btns-switch .btn:hover {
    background-color: #2074d4;
    border: 1px solid white;
    cursor: pointer;
}

.reviews-site .btns-switch .btn svg {
    width: 0.83vw;
}

.reviews-site .btns-switch .btn svg path {
    stroke: #42A5F5;
    transition: stroke 300ms ease;
}

.reviews-site .btns-switch .btn:hover svg path {
    stroke: white;
}

.reviews-container {
    margin-top: 0.625vw;
    display: flex;
    overflow: hidden;
    gap: 1.25vw;
    align-items: start;
}

.review-item {
    min-width: calc((100% / 3) - (1.25vw / 2) - 4px);
    width: calc((100% / 3) - (1.25vw / 2) - 4px);
    background-color: #FFFFFF;

    border-radius: 5px;

    padding: 2vw;

    border: 1px solid #EDF0F2;

    box-shadow:
        0px 10px 30px rgba(0,0,0,0.03);

    display: flex;
    flex-direction: column;
    gap: 1vw;
    transition: transform 300ms ease;
}

/* top-section */




.review-top {
    display: flex;
    align-items: center;

    gap: 1vw;
}

.review-avatar {
    width: 3vw;
    height: 3vw;

    border-radius: 100%;

    background-color: #2563EB;

    color: #FFFFFF;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Inter Tight", serif;
    font-size: 1vw;
    font-weight: 700;
}

.review-name {
    color: #111827;

    font-family: "Inter Tight", serif;
    font-size: 1vw;
    font-weight: 700;
}

.review-date, .review-model {
    margin-top: 0.2vw;

    color: #6B7280;

    font-family: "Inter Tight", serif;
    font-size: 0.75vw;
}

.review-model span {
    font-weight: 600;
}

.review-stars {
    margin-top: 1vw;

    color: #F59E0B;

    font-size: 1.2vw;

    letter-spacing: 0.15vw;
}

.review-text {
    margin-top: 1vw;

    color: #374151;

    font-family: "Inter Tight", serif;
    font-size: 0.83vw;

    line-height: 1.4;
}

.review-images {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8vw;
}

.review-image {
    width: calc(50% - 0.4vw);
    height: 10vw;

    border-radius: 14px;

    overflow: hidden;

    border: 1px solid #E5E7EB;

    transition: 300ms ease;
}

.review-image:hover {
    transform: translateY(-3px);
}

.review-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

/* MOBILE */

@media (max-width: 768px) {

    .reviews-site {
        padding: 12vw 0vw;
    }

    .reviews-site .btns-switch {
        display: none;
    }

    .reviews-container {
        overflow-x: scroll;
        gap: 5vw;
    }

    .review-item {
        min-width: 100%;
        width: 100%;
        padding: 5vw;

        border-radius: 18px;
    }

    .review-top {
        gap: 3vw;
    }

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

        font-size: 4vw;
    }

    .review-name {
        font-size: 4vw;
    }

    .review-date, .review-model {
        margin-top: 1vw;

        font-size: 3vw;
    }

    .review-stars {
        margin-top: 3vw;

        font-size: 5vw;

        letter-spacing: 0.6vw;
    }

    .review-text {
        margin-top: 4vw;

        font-size: 3.7vw;

        line-height: 1.8;
    }

    .review-images {
        gap: 3vw;
    }

    .review-image {
        width: 100%;
        height: auto;

        border-radius: 12px;
    }
}