/* ═══════════════════════════════════════════════════════════
   trust-strip.css — Subtle Scrolling Text
   ═══════════════════════════════════════════════════════════ */

.trust-strip {
    background: transparent;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    width: 100%;
}

.trust-strip-container {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.trust-marquee-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

/* Fade masks for smooth entry/exit at edges */
.trust-fade-mask {
    display: none;
}

.trust-fade-mask.left-mask {
    display: none;
}

.trust-fade-mask.right-mask {
    display: none;
}

/* The actual scrolling track */
.trust-track {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 16px;
}

/* Subtle Text Items */
.trust-country {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Bullet separator attached to country elements to wrap safely together */
.trust-country:nth-child(n+3)::before {
    content: "•";
    color: rgba(255, 255, 255, 0.35) !important;
    font-weight: 700;
    margin-right: 8px;
}

/* Animation */
@keyframes trust-scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Needs to be perfectly matched with duplicated content */
    }
}

/* Ensure flags are rendered at a visible size */
.trust-flag {
    font-size: 24px !important;
    line-height: 1 !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

/* If WordPress converts emoji to image tags */
.trust-strip img.emoji,
.trust-track img.emoji,
.trust-item img.emoji,
.trust-flag img.emoji {
    width: 24px !important;
    height: 24px !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin: 0 4px 0 0 !important;
}
