/* =============================================================
   pxl-partners-horner — Client Logos Strip
   ============================================================= */

.bha-partners {
    padding: 48px 0 52px;
    background: #fff;
}

/* ── Label ── */
.bha-partners__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 13px;
    color: #7a7a95;
    margin-bottom: 36px;
    text-align: center;
}

.bha-partners__label-line {
    display: block;
    width: 48px;
    height: 2px;
    background: #486ee2;
    border-radius: 1px;
    flex-shrink: 0;
}

/* ── Logo row ── */
.bha-partners__track-wrap {
    overflow: hidden;
}

.bha-partners__track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

/* ── Individual item ── */
.bha-partners__item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}

.bha-partners__item:hover {
    opacity: 1;
}

.bha-partners__logo {
    max-height: 44px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
    filter: grayscale(30%);
    transition: filter 0.2s ease;
}

.bha-partners__item:hover .bha-partners__logo {
    filter: grayscale(0%);
}

/* Fallback text when no logo image is set */
.bha-partners__name {
    font-size: 14px;
    font-weight: 700;
    color: #5a5a78;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .bha-partners__track {
        gap: 28px 32px;
    }
    .bha-partners__logo {
        max-height: 36px;
    }
}
