/* Shared trusted-partners logo strip */
.tp-strip {
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding: 28px 0;
}

.tp-strip-label {
    font-family: "Manrope", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #64748b;
    margin: 0 0 18px;
    text-align: center;
}

.tp-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 28px;
}

.tp-logos picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 132px;
    height: 44px;
    overflow: hidden;
}

.tp-logo {
    display: block;
    width: auto;
    max-width: 132px;
    height: 36px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.48;
    transition: filter 0.22s, opacity 0.22s;
}

.tp-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

@media (max-width: 575.98px) {
    .tp-strip {
        padding: 22px 0;
    }

    .tp-logos {
        gap: 10px 16px;
    }

    .tp-logos picture {
        width: 110px;
        height: 40px;
    }

    .tp-logo {
        max-width: 110px;
        height: 32px;
    }
}
