/* ─────────────────────────────────────────────
   Block: Luottamuspalkki  (fp_trust_strip)
   ───────────────────────────────────────────── */

.fp-trust-strip {
    background: #f8f8f8;
    border-bottom: 1px solid #d5dce1;
    overflow: hidden;
}

.fp-trust-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    flex-wrap: nowrap;
}

.fp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #666;
    white-space: nowrap;
    flex-shrink: 0;
}

.fp-trust-item svg {
    width: 18px;
    height: 18px;
    color: #b51f1f;
    flex-shrink: 0;
}

/* ── Marquee (active when content overflows) ── */
@keyframes fp-trust-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(var(--marquee-shift, -50%)); }
}

.fp-trust-strip.is-marquee .fp-trust-inner {
    max-width: none;
    margin: 0;
    width: max-content;
    padding: 14px 0;
    justify-content: flex-start;
    animation: fp-trust-marquee 26s linear infinite;
}

.fp-trust-strip.is-marquee:hover .fp-trust-inner {
    animation-play-state: paused;
}
