/* ====================================================
   Trust Strip — 4 trust signals
   Desktop: 4 equal columns | ≤991px: 2 columns
   ==================================================== */

.mi-trust-strip {
    padding: 18px 0;
    margin: 18px 0 8px;
}

/* Pink card wrapper */
.mi-trust-strip__inner {
    background: #FFE8EE;
    border-radius: 14px;
    padding: 18px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

/* ── Individual item ── */
.mi-trust-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 16px;
    text-decoration: none;
    color: inherit;
    cursor: default;
}

/* Vertical separator between items in the same row */
.mi-trust-item + .mi-trust-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: rgba(255, 115, 150, 0.28);
}

/* Filled pink icon circle */
.mi-trust-item__icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: #FFD0DB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mi-trust-item__icon svg {
    width: 24px;
    height: 24px;
    color: #FF7396;
    fill: currentColor;
    stroke: none;
}

.mi-trust-item__text {
    flex: 1;
    min-width: 0;
}

.mi-trust-item__title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 2px;
    line-height: 1.3;
}

.mi-trust-item__sub {
    font-size: 12px;
    color: #777;
    margin: 0;
    line-height: 1.3;
}

/* ── ≤991px: 2 columns ── */
@media (max-width: 991px) {
    .mi-trust-strip__inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 14px 16px;
        gap: 12px 0;
    }

    /* Remove separator from item 3 (starts new row) */
    .mi-trust-item:nth-child(3)::before {
        display: none;
    }

    /* Add horizontal line between the two rows */
    .mi-trust-item:nth-child(3),
    .mi-trust-item:nth-child(4) {
        border-top: 1px solid rgba(255, 115, 150, 0.2);
    }

    .mi-trust-item__title {
        font-size: 13px;
    }
}

/* ── ≤480px: tighter padding ── */
@media (max-width: 480px) {
    .mi-trust-strip__inner {
        padding:5px;
        gap: 8px 0;
    }

    .mi-trust-item {
        padding: 6px 10px;
        gap: 10px;
    }

    .mi-trust-item__icon {
        width: 38px;
        height: 38px;
    }

    .mi-trust-item__icon svg {
        width: 20px;
        height: 20px;
    }
}
