/* ═══════════════════════════════════════════════
   Global Visa Way — Home Partner Strip
═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   Home helpers: partner strip + typewriter cursor
═══════════════════════════════════════════════ */
/* GlobalVisa Way patch — selective ZBA Apex home helpers */

.partner-strip {
    background: var(--card-bg);
    border-top: 1px solid var(--gold-a12);
    border-bottom: 1px solid var(--gold-a12);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.partner-strip::before,
.partner-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.partner-strip::before {
    left: 0;
    background: linear-gradient(90deg, var(--card-bg), transparent);
}

.partner-strip::after {
    right: 0;
    background: linear-gradient(-90deg, var(--card-bg), transparent);
}

.strip-track {
    display: flex;
    align-items: center;
    gap: 52px;
    width: max-content;
    animation: stripScroll 30s linear infinite;
}

@keyframes stripScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-faint);
    letter-spacing: 0.05em;
    transition: color 0.25s;
    padding: 4px 0;
    cursor: default;
    font-family: var(--en);
}

.strip-item:hover {
    color: var(--gold);
}

.strip-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: var(--gold-a08);
    border: 1px solid var(--gold-a18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: background 0.25s, border-color 0.25s;
}

.strip-item:hover .strip-icon {
    background: var(--gold-a15);
    border-color: var(--gold-a35);
}

.strip-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-a25);
    flex-shrink: 0;
}

.tw-cursor {
    display: inline-block;
    color: var(--gold);
    font-weight: 300;
    animation: tw-blink 0.75s step-end infinite;
    margin-left: 2px;
}

@keyframes tw-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}
