/* ==========================================================
   BELGRAVE PRIVATE BANK
   CLIENT TESTIMONIALS
========================================================== */


.reviews{

    padding:140px 8%;

    background:
        linear-gradient(
            180deg,
            #111214,
            #080b12
        );

    color:white;

}


.reviews .section-heading{

    max-width:760px;

    margin-bottom:70px;

}


.reviews .section-tag{

    color:#d4af37;

    letter-spacing:3px;

    font-size:12px;

    font-weight:600;

}


.reviews h2{

    margin:20px 0;

    font-family:"Playfair Display",serif;

    font-size:clamp(36px,4vw,56px);

}


.reviews p{

    color:rgba(255,255,255,.75);

    line-height:1.8;

}


.review-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}


.review-card{

    padding:40px 35px;

    background:
        rgba(255,255,255,.05);

    border:

        1px solid rgba(212,175,55,.2);

    border-radius:24px;

    transition:.35s ease;

}


.review-card:hover{

    transform:translateY(-8px);

    border-color:#d4af37;

}


.review-card p{

    font-style:italic;

    margin-bottom:30px;

}


.review-card h4{

    color:white;

    margin-bottom:8px;

}


.review-card span{

    color:#d4af37;

    font-size:14px;

}


@media(max-width:900px){

    .review-grid{

        grid-template-columns:1fr;

    }

}