.reviews-section{
    padding:120px 0;
    background:#050505;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.review-card{
    background:#111111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:32px;
    transition:.3s ease;
}

.review-card:hover{
    transform:translateY(-6px);
    border-color:#d4a85f;
}

.review-author{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:24px;
}

.review-avatar{
    width:54px;
    height:54px;
    border-radius:50%;
    background:#d4a85f;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:18px;
}

.review-author h4{
    margin:0;
}

.review-author span{
    color:#d4a85f;
}

.review-card p{
    color:#bdbdbd;
    line-height:1.8;
}

.reviews-button{
    text-align:center;
    margin-top:50px;
}

@media(max-width:991px){

    .reviews-grid{
        grid-template-columns:1fr;
    }

}