/* Отзывы */
.reviews {
    padding-bottom: 40px;
    width: 100%;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 40px;
    place-items: center;
    place-self: center;
    max-width: 1200px;
}

.review__item {
    background-color: white;
    border: 2px solid rgb(235, 235, 235);
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.review__person img {
    margin-top: 20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.review__item h4 {
    font-weight: normal;
    color: black;
}

.review__item p {
    font-style: italic;
    flex-grow: 1;
    text-align: center;
    padding: 0px 20px;
}

.stars {
    align-self: flex-end;
    align-self: center;
    padding-bottom: 20px;
}

/*=================================МОБИЛЬНЫЙ АДАПТИВ==========================================*/

@media (max-width: 1024px) {
    .reviews {
        margin-bottom: 0;
    }

    .reviews__grid {
        display: none;
    }

    .review__item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 400px;
        gap: 0px;
    }

    .review__person img {
        width: 75px;
        height: 75px;
        padding-top: 0;
    }
    
    .review__item h4 {
        margin-top: 10px;
    }
}