#banner-wrap {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin: 20px auto;
}

#banner-title {
    display: block;
    font-size: 24px;
    color: white;
    margin-left: 10px;
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 5px;
}

#bannerContainerWrapper {
    display: flex;
    justify-content: center;
    margin-top: 70px;
}

#competition-types {
    font-size: 36px;
    color: white;
    width: fit-content;
    margin-bottom: 10px;
    padding: 30px 20px;
    text-align: center;
}

.banner {
    height: 293px;
    width: 456px;
    cursor: pointer;
    position: relative;
    display: flex;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    justify-content: end;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

.banner:hover {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

.banner-wrap {

    flex-direction: row;
    position: relative;
    display: flex;
    margin-left: 30px;
    margin-right: 15px;

}

#banner1 {

    background-image: url('../../assets/images/champLDesk.png');
}

#banner2 {

    background-image: url('../../assets/images/europaLDesk.png');
}

#banner3 {

    background-image: url('../../assets/images/euroDesk.png');
}

#banner4 {

    background-image: url('../../assets/images/worldDesk.png');
}




/* Mobile */
@media (max-width: 480px) {

    #banner-title {
        display: block;
        text-align: center;
        font-size: 16px;
        margin-left: 10px;
        max-width: 100%;
        width: 100%;
    }

    #bannerContainerWrapper {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    #competition-types {
        font-size: 25px;
        color: white;
        width: fit-content;
        margin: 20px auto;
        padding: 5px 20px;
        text-align: center;
    }

    .banner {
        display: flex;
        margin-bottom: 3px;
        height: 188px;
        width: 343px;
        justify-content: flex-start;
        /* left alignment */
        flex-direction: column;
        align-items: center;
        justify-content: end;
        align-items: flex-end;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #banner-wrap {
        display: flex;
        justify-content: center;
        gap: 15px;
        /* Space between banners */
        flex-wrap: wrap;
        /* Allows wrapping on small screens */
        margin: 3%;
        /* Optional centering */
    }


    #banner1 {

        background-image: url('../../assets/images/champLMob.png') !important;
    }

    #banner2 {

        background-image: url('../../assets/images/europLmob.png') !important;
    }

    #banner3 {

        background-image: url('../../assets/images/euroMob.png') !important;
    }

    #banner4 {

        background-image: url('../../assets/images/worldMobile.png') !important;
    }
}