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

.home-testimonials{
    padding:100px 0;
    background:#f8f9fb;
}

/* Grid */

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

/* Card */

.testimonial-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:22px;

    padding:40px;

    box-shadow:0 14px 35px rgba(0,0,0,.06);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

/* Quote */

.quote-icon{
    margin-bottom:20px;

    font-size:4rem;
    line-height:1;

    color:#7B1113;
}

/* Text */

.testimonial-card p{
    margin-bottom:30px;

    color:#666;
    line-height:1.9;
}

/* Author */

.testimonial-author{
    display:flex;
    align-items:center;
    gap:16px;
}

.testimonial-author img{
    width:70px;
    height:70px;

    border-radius:50%;
    object-fit:cover;
}

.testimonial-author h4{
    margin:0;
    font-size:1.1rem;
    color:#111;
}

.testimonial-author span{
    display:block;
    margin-top:4px;

    color:#888;
    font-size:.9rem;
}

