.tlb-trust-wrap,
.tlb-trust-wrap *{
    box-sizing:border-box;
}

.tlb-trust-wrap{
    width:100%;
    padding:10px 20px 0;
    font-family:"Be Vietnam Pro",Arial,sans-serif;
}

.tlb-trust{
    width:min(1440px,100%);
    min-height:60px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));

    align-items:center;

    border:1px solid #f2dfe5;
    border-radius:12px;

    background:#fff;
}

.tlb-trust-item{
    position:relative;

    min-width:0;
    min-height:42px;

    padding:0 20px;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:10px;
}

.tlb-trust-item:not(:last-child)::after{
    content:"";

    position:absolute;
    right:0;
    top:6px;

    width:1px;
    height:30px;

    background:#f0dfe4;
}

.tlb-trust-icon{
    width:30px;
    height:30px;

    flex:0 0 30px;

    display:grid;
    place-items:center;

    color:#ed0754;
}

.tlb-trust-icon svg{
    width:28px;
    height:28px;

    fill:none;
    stroke:currentColor;

    stroke-width:1.7;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.tlb-trust-text{
    min-width:0;

    display:flex;
    flex-direction:column;

    gap:1px;
}

.tlb-trust-text strong{
    color:#ed0754;

    font-size:9px;
    line-height:1.3;

    font-weight:700;

    white-space:nowrap;
}

.tlb-trust-text small{
    color:#44363b;

    font-size:7px;
    line-height:1.3;

    white-space:nowrap;
}

@media(max-width:900px){

    .tlb-trust{
        grid-template-columns:repeat(2,1fr);
        padding:8px;
    }

    .tlb-trust-item{
        justify-content:flex-start;
        padding:8px 12px;
    }

    .tlb-trust-item::after{
        display:none;
    }

}

@media(max-width:520px){

    .tlb-trust-wrap{
        padding-inline:12px;
    }

    .tlb-trust{
        grid-template-columns:1fr;
    }

}