/* --- SECTION ILS NOUS FONT CONFIANCE --- */
.trust {
    background: transparent;
}

.trust-marquee {
    overflow: hidden;
    margin-top: 2.5rem;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.trust-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: trust-scroll 30s linear infinite;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.6rem 1.25rem 0.6rem 0.6rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.trust-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.trust-item-icon svg {
    width: 18px;
    height: 18px;
}

.trust-item-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.trust-item-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}

.trust-item-type {
    font-size: 0.72rem;
    color: var(--text-light);
    line-height: 1.2;
}

a.trust-item-link {
    text-decoration: none;
}

a.trust-item-link .trust-item-name {
    color: var(--text);
}

a.trust-item-link .trust-item-type {
    color: var(--text-light);
}

@keyframes trust-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
