/* ==========================================================
   PHIUM TRUST BADGES
========================================================== */

.phium-trust-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
    margin:40px 0;
}

.phium-trust-item{
    background:#fff;
    border:1px solid #ece4dc;
    border-radius:16px;
    padding:25px;
    text-align:center;
    transition:.3s;
}

.phium-trust-item:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.phium-trust-icon{
    font-size:34px;
    color:#c28b68;
    margin-bottom:15px;
}

.phium-trust-title{
    font-weight:600;
    color:#2b1c15;
    margin-bottom:8px;
}

.phium-trust-text{
    color:#666;
    font-size:14px;
}