/* Banner Carousel */
.banner-carousel {
    position: relative;
    width: 100%;
    height: 44px;
    overflow: hidden;
    transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    z-index: 49;
}

.banner-carousel.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.banner-carousel.is-hidden {
    transform: translateY(-100%);
}

.banner-carousel.is-show {
    transform: translateY(0);
}

.banner-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.banner-slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    box-sizing: border-box;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    height: 44px;
}

.banner-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
    text-align: left;
    gap: 12px;
}

.banner-headline {
    font-size: 15px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.banner-headline-lg {
    font-size: 15px;
}

.banner-cta {
    font-size: 12px;
    font-weight: 700;
    color: #FFD700;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.banner-cta:hover {
    opacity: 0.8;
}

.banner-cta-blue {
    color: #0056b3;
}

.banner-text-dark .banner-headline {
    color: #333333;
}

.banner-overlay-text {
    position: absolute;
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    left: 20px;
    bottom: 10px;
    text-transform: uppercase;
}

.banner-overlay-text.italic {
    font-style: italic;
}

.banner-overlay-text.bold {
    font-weight: 800;
}

.banner-prev,
.banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.banner-prev:hover,
.banner-next:hover {
    color: #BE930B;
}

.banner-prev {
    left: 10px;
}

.banner-next {
    right: 10px;
}

.banner-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.banner-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.banner-indicator.active {
    background: #FFD700;
}

@media (max-width: 768px) {
    .banner-carousel {
        height: 45px;
    }

    .banner-slide {
        padding: 0 10px;
    }

    .banner-content {
        width: 100%;
        justify-content: center;
    }

    .banner-headline {
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .banner-headline-lg {
        font-size: 13px;
    }

    .banner-cta {
        font-size: 10px;
        white-space: nowrap;
    }

    .banner-overlay-text {
        font-size: 18px;
        left: 10px;
    }

    .banner-prev,
    .banner-next {
        width: 24px;
        height: 24px;
    }

    .banner-prev {
        left: 0px;
    }

    .banner-next {
        right: 0px;
    }

    .banner-indicators {
        display: none;
    }
}
