/* ==========================================================
   MAMGOC Website V2
   07-trust.css
========================================================== */

.trust-v2{
    padding:7rem 0;
    background:var(--white);
}

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

.trust-card{
    padding:34px;
    border-radius:var(--radius-lg);
    background:var(--white);
    border:1px solid var(--gray-200);
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.trust-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
}

.trust-icon{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:#fff7d6;
    margin-bottom:1.6rem;
    font-size:1.45rem;
    border:1px solid #f7e7a3;
}

.trust-card h3{
    margin-bottom:.8rem;
    font-size:1.25rem;
}

.trust-card p{
    margin-bottom:0;
}
