.bidrl-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bidrl-row {
    overflow: hidden;
    width: 100%;
}

.bidrl-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation-name: bidrl-scroll;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.bidrl-row--reverse .bidrl-track {
    animation-direction: reverse;
}

.bidrl-row:hover .bidrl-track {
    animation-play-state: paused;
}

.bidrl-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-sizing: border-box;
    height: 78px;
    min-width: 200px;
    padding: 0 32px;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    background: #FFFFFF;
}

.bidrl-logo {
    height: 26px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
}

@keyframes bidrl-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .bidrl-track {
        animation: none;
    }
}
