.promo-fade-wrapper {
    position: relative;
    width: 100%;
    max-width: 940px;
    margin: 0px auto;
    /* min-height: 400px; */
}

.promo-fade-group {
    display: flex;
    gap: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
}

.promo-fade-group.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.promo-banner {
    flex: 1;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.promo-banner:hover {
    transform: scale(1.02);
}

.promo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-banner a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Mobile: Show 1 banner */
@media (max-width: 650px) {
    .promo-fade-wrapper {
        margin: 20px auto;
        min-height: 300px;
    }
    
    .promo-fade-group {
        gap: 0;
    }
    
    .promo-banner:nth-child(2) {
        display: none;
    }
}
