/* ====================================================
   Trust Strip — 4 trust signals (figma-aligned)
   Light-pink card with filled pink icons, 4 equal cols.
   ==================================================== */

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

/* Pink card wrapper (sits inside .container, full container width) */
.mi-trust-strip__inner {
    background: #FFE8EE;
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mi-trust-strip__inner::-webkit-scrollbar {
    display: none;
}

/* ── Individual item ── */
.mi-trust-item {
    position: relative;
    flex: 0 0 auto;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    cursor: default;
}

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

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

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

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

.mi-trust-item__title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 2px;
    line-height: 1.3;
    white-space: nowrap;
}

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

/* ── Desktop: 4 equal columns ── */
@media (min-width: 768px) {
    .mi-trust-strip {
        padding: 18px 0;
    }

    .mi-trust-strip__inner {
        overflow-x: visible;
        gap: 8px;
        padding: 18px 24px;
    }

    .mi-trust-item {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
        gap: 14px;
        padding: 0 8px;
    }

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

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

    .mi-trust-item__title {
        font-size: 14px;
        white-space: normal;
    }

    .mi-trust-item__sub {
        font-size: 12px;
        white-space: normal;
    }
}
