.awb-brand-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.awb-brand-carousel:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1280px;
    height: 1px;
    background: rgba(28,28,28,0.1);
    z-index: 1;
}

.awb-brand-track {
    display: flex;
    align-items: center;
    gap: 64px;
    animation: awb-brand-scroll 30s linear infinite;
    width: max-content;
}

.awb-brand-slide {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.awb-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.awb-brand-logo img {
    opacity: 0.5;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
    max-width: 140px;
}

.awb-brand-logo a:hover img {
    opacity: 0.8;
}

.awb-brand-name {
    font-family: var(--awb-heading-font, 'Playfair Display'), serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--awb-text, #1C1C1C);
    white-space: nowrap;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.awb-brand-logo a:hover .awb-brand-name {
    opacity: 0.8;
}

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

@media screen and (max-width: 768px) {
    .awb-brand-track {
        gap: 40px;
    }

    .awb-brand-logo img {
        max-width: 100px;
    }
}

@media screen and (max-width: 480px) {
    .awb-brand-track {
        gap: 28px;
    }

    .awb-brand-logo img {
        max-width: 80px;
    }
}
