.game-highlight:not(:has(.foreground img)){
    height: 85vh !important;
}
.game-highlight{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    
    width: 100%;
    .foreground{
        display: flex;
        justify-content: center;
        position: relative;
        align-self: flex-end;
        overflow: hidden;
        
        width: 100%;
        z-index: 1;
        
        img{
            align-self: flex-end;
            width: 100%;
            max-width: 70rem;
            max-height: 100%;
            user-select: none;
            pointer-events: none;
        }
        .desktop{
            display: block;
        }
        .mobile{
            display: none;
        }
    }
    .background{
        display: flex;
        justify-content: center;
        position: absolute;
        overflow: hidden;
        height: 100%;
        width: 100%;
        img{
            min-height: 100%;
            min-width: 100%;
            object-fit: cover;
            user-select: none;
            pointer-events: none;
        }
    }
    
}

@media screen and (max-width: 770px ){
    .game-highlight{
        .foreground{
            .desktop{
                display: none;
            }
            .mobile{
                display: block;
            }
        }
    }
}