/*==================================
          TESTIMONIALS
==================================*/

.reviews-section{

    padding:140px 50px;

    background:#f8faf9;

}

.reviews-header{

    max-width:850px;

    margin:auto;

    text-align:center;

    margin-bottom:70px;

}

.reviews-header h2{

    font-size:3rem;

    color:#163c29;

    margin:18px 0;

}

.reviews-header p{

    color:#666;

    line-height:1.8;

}

/*==============================
            GRID
==============================*/

.reviews-grid{

    max-width:1400px;

    margin:auto;

    display:grid;

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

    gap:35px;

}

/*==============================
            CARD
==============================*/

.review-card{

    background:white;

    padding:40px;

    border-radius:28px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

    border:1px solid rgba(0,0,0,.05);

}

.review-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

/*==============================
            STARS
==============================*/

.stars{

    color:#F7B500;

    font-size:20px;

    margin-bottom:22px;

}

/*==============================
            TEXT
==============================*/

.review-card p{

    color:#555;

    line-height:1.9;

    min-height:120px;

    font-style:italic;

}

/*==============================
            FOOTER
==============================*/

.review-footer{

    margin-top:30px;

    padding-top:20px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-top:1px solid #ececec;

}

.verified{

    display:flex;

    align-items:center;

    gap:8px;

    color:#59c978;

    font-weight:600;

    font-size:14px;

}

.review-footer strong{

    color:#163c29;

}