/* ==========================================================================
   Clients Marquee — Infinite horizontal scroll
   ========================================================================== */

.ohwow-marquee {
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Title */
.ohwow-marquee__title {
    font-family: var(--ohwow-font-body, 'Inter', sans-serif);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888;
    text-align: center;
    margin: 0 0 40px;
}

/* Track: holds two copies side by side */
.ohwow-marquee__track {
    display: flex;
    width: max-content;
    animation: ohwow-marquee-scroll var(--marquee-speed, 20s) linear infinite;
}

.ohwow-marquee__track:hover {
    animation-play-state: paused;
}

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

/* List: one set of items */
.ohwow-marquee__list {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
    flex-shrink: 0;
}

/* Individual item */
.ohwow-marquee__item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    cursor: default;
}

/* Badge (initials) */
.ohwow-marquee__badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #a3a3a3;
    color: #fff;
    font-family: var(--ohwow-font-body, 'Inter', sans-serif);
    font-size: 0.8125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Company name */
.ohwow-marquee__name {
    font-family: var(--ohwow-font-body, 'Inter', sans-serif);
    font-size: 1.125rem;
    font-weight: 400;
    color: #a3a3a3;
    white-space: nowrap;
    transition: color 0.3s ease;
}

/* Hover: badge turns lime, name darkens */
.ohwow-marquee__item:hover .ohwow-marquee__badge {
    background: #BCED09;
    color: #000;
}

.ohwow-marquee__item:hover .ohwow-marquee__name {
    color: #000;
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 767px) {
    .ohwow-marquee {
        padding: 40px 0;
    }

    .ohwow-marquee__list {
        gap: 40px;
    }

    .ohwow-marquee__badge {
        width: 38px;
        height: 38px;
        font-size: 0.75rem;
    }

    .ohwow-marquee__name {
        font-size: 1rem;
    }
}
