.bbwws-wrapper {
    background: #2e5c79;
    background-repeat: repeat-x;
    padding: 24px 16px;
    border-radius: 0px;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.bbwws-title {
    margin: 0 0 16px;
    color: #e6f4ff;
    font-size: 1.4rem;
    font-weight: 600;
}

.bbwws-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.bbwws-track {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: bbwws-scroll 40s linear infinite;
    will-change: transform;
}

.bbwws-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: rgba(5, 20, 28, 0.2);
    border-radius: 4px;
    min-width: 140px;
    box-sizing: border-box;
}

.bbwws-logo img {
    display: block;
    max-height: 40px;
    width: auto;
    max-width: 160px;
    border-radius: 5px;
}

.bbwws-wrapper:hover .bbwws-track {
    animation-play-state: paused;
}

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

@media (max-width: 600px) {
    .bbwws-title {
        font-size: 1.2rem;
    }

    .bbwws-logo {
        min-width: 120px;
        padding: 6px 10px;
    }
}
