.hbc-slider-logo {
    --hbc-sl-border: #d7dce8;
    --hbc-sl-bg: #f3f4f8;
    --hbc-sl-dot: #b8bdca;
    --hbc-sl-dot-active: #3a88e7;
    width: 100%;
    padding: 12px 6px 6px;
    background: transparent;
}

.hbc-sl-viewport {
    overflow: hidden;
}

.hbc-sl-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.hbc-sl-item {
    box-sizing: border-box;
    padding: 0 8px;
}

.hbc-sl-card {
    height: 100px;
    width: 150px;
    border: 1px solid var(--hbc-sl-border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.hbc-sl-card img {
    max-width: 100%;
    max-height: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.hbc-sl-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hbc-sl-dots {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.hbc-sl-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hbc-sl-dot);
    border: 0;
    padding: 0;
    cursor: pointer;
}

.hbc-sl-dot.is-active {
    background: var(--hbc-sl-dot-active);
}

@media (max-width: 900px) {
    .hbc-sl-card {
        height: 78px;
    }

    .hbc-sl-card img {
        max-height: 56px;
    }
}

@media (max-width: 640px) {
    .hbc-sl-item {
        padding: 0 5px;
    }

    .hbc-sl-card {
        height: 70px;
    }

    .hbc-sl-card img {
        max-height: 48px;
    }
}
