/* Ils nous font confiance — bandeau logos défilants */
.trust-logos-section {
    --trust-gap: 4.25rem;
    --trust-speed: 90s;
    --trust-distance: 50%;
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 2.5vw, 1.75rem);
    background: #F9F5F3;
    overflow: hidden;
}
.trust-logos-section--white {
    background: #ffffff;
}
.trust-logos-header {
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
    padding: 0 1rem;
}
.trust-logos-header .lead {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}
.trust-logos-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.trust-logos-track {
    display: flex;
    width: max-content;
    gap: var(--trust-gap);
    animation: trust-logos-scroll var(--trust-speed) linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}
.trust-logos-list {
    display: flex;
    gap: var(--trust-gap);
    list-style: none;
    margin: 0;
    padding: 0.35rem 0 0.5rem;
    flex: 0 0 auto;
    width: max-content;
}
.trust-logos-item {
    flex: 0 0 auto;
}
.trust-logos-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    text-decoration: none;
    color: inherit;
    pointer-events: none;
}
a.trust-logos-card:focus-visible {
    text-decoration: none;
    color: inherit;
}
.trust-logos-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 80px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
}
.trust-logos-mark img {
    display: block;
    width: auto;
    height: 100%;
    max-width: 240px;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
}
@keyframes trust-logos-scroll {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(calc(-1 * var(--trust-distance)), 0, 0); }
}
@media (max-width: 767.98px) {
    .trust-logos-section {
        --trust-gap: 2.25rem;
        --trust-speed: 75s;
        padding: 2.1rem 0 1.1rem;
    }
    .trust-logos-card {
        width: auto;
    }
    .trust-logos-mark {
        height: 62px;
        padding: 0;
    }
    .trust-logos-mark img {
        max-width: 184px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .trust-logos-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 960px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    .trust-logos-list--clone {
        display: none;
    }
    .trust-logos-list {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
}
