/*==========================================
            REVIEWS
==========================================*/

.reviews{
    padding:140px 0;
    background:#ffffff;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:70px;
}

.review-card{
    background:#fff;
    padding:35px;
    border-radius:28px;
    border:1px solid rgba(0,0,0,.05);
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.35s;
}

.review-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.review-card.featured{
    background:linear-gradient(135deg,#fff8eb,#ffffff);
    border:2px solid #f8b400;
}

.review-top{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:20px;
}

.review-top img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.review-top h4{
    font-size:20px;
    margin-bottom:4px;
}

.review-top span{
    color:#777;
    font-size:14px;
}

.stars{
    color:#f8b400;
    font-size:18px;
    margin-bottom:18px;
}

.review-card p{
    color:#666;
    line-height:1.9;
    font-size:16px;
}

@media(max-width:992px){

    .reviews-grid{
        grid-template-columns:1fr;
    }

}