.featured-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.featured-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 1;
    transition: opacity .6s ease;
}

.featured-banner-bg.fade-out {
    opacity: 0;
}

.featured-banner-content {
    position: relative;
    z-index: 2;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .4s ease, transform .4s ease;
}

.fade-out {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s ease, transform .4s ease;
}

.banner-indicators {
    display: flex;
    gap: 6px;
}

.banner-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    transition: transform .3s ease, opacity .3s ease;
}

.banner-indicator.active {
    background: rgba(255,255,255,.9);
    transform: scale(1.3);
    opacity: 1;
}

.banner-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background: white;
    width: 0%;
    transition: width 4s linear;
}

#featuredBannerRoot img[id^="banner-bg"] {
    position: absolute !important;
    top: 0; left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
