.testimonials{
    padding:96px 32px;
    background:#F8F8F6;
}

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:24px;
    margin-top:52px;
}

.testimonial-card{
    background:#fff;
    border:1px solid #D6D8DC;
    border-radius:18px;
    padding:30px;
    box-shadow:0 6px 30px rgba(11,19,43,.05);
    transition:.3s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(11,19,43,.12);
}

.testimonial-quote{
    font-size:42px;
    font-weight:700;
    color:#0B132B;
    line-height:1;
}

.testimonial-text{
    margin-top:12px;
    color:#4B5563;
    line-height:1.7;
}

.testimonial-author{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:24px;
}

.testimonial-avatar{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#EAF1F8;
    color:#3F6FA8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-family:var(--font-mono);
}

.testimonial-name{
    font-weight:600;
    color:#0B132B;
}

.testimonial-role{
    font-size:14px;
    color:#6B7280;
}
@media (min-width:768px) and (max-width:1024px){

    .testimonials-grid{

        grid-template-columns:repeat(3,minmax(0,1fr));

    }

}