#eurocup_panel{
    max-width: 950px;
    margin: auto;
    margin-bottom: 2rem;
}
#eurocup_panel .content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

#eurocup_panel .content>div{
    width: 48%;
    height: 250px;
    overflow-y: hidden;
}

#eurocup_panel .content .image img{
    width: 100%;
    max-height: 250px
}

#eurocup_panel .mobile{
    display: none;
}
@media (max-width: 540px) {
    #eurocup_panel .content>div{
        width: 100%;
        height: auto;
        max-height: initial;
        margin: .5rem 0;
    }
    #eurocup_panel .mobile{
        display: block;
    }
    #eurocup_panel .desk{
        display: none;
    }
}