
.bm-container {
    width: 100%;
    margin: 0 auto;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.bm-viewport {
    width: 100%;
    overflow: hidden;
}

.bm-track {
    display: flex;
    align-items: center;
    width: max-content;
    flex-wrap: nowrap;
    will-change: transform;
    animation: bm-scroll var(--bm-duration, 26s) linear infinite;
}

.bm-container:hover .bm-track {
    animation-play-state: paused;
}

.bm-group {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.bm-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    margin-right: 18px;
    border: 1px solid rgba(233, 233, 231, 0.55);
    background-color: #fff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.bm-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.bm-item a {
    display: block;
    line-height: 0;
}

.bm-image {
    width: 250px;
    height: 110px;
    display: block;
    object-fit: contain;
}

@keyframes bm-scroll {
    from { transform: translate3d(0,0,0); }
    to { transform: translate3d(-50%,0,0); }
}

@media (max-width: 1200px) {
    .bm-image { width: 210px; height: 94px; }
}

@media (max-width: 992px) {
    .bm-item { margin-right: 14px; }
    .bm-image { width: 180px; height: 82px; }
}

@media (max-width: 768px) {
    .bm-container { padding: 10px 0; }
    .bm-item { padding: 8px 10px; margin-right: 12px; }
    .bm-image { width: 150px; height: 72px; }
}

@media (max-width: 576px) {
    .bm-item { margin-right: 10px; }
    .bm-image { width: 126px; height: 60px; }
}
