Hello,
This is actually caused by your custom module up top. You have set fixed properties:
style="margin: 5px auto 20px auto; border: 1px solid black; padding: 5px; height: 150px;"
I would advise removing this style. Adding a class to it like: .events_top and adding css as follows:
@media (min-width:468px) {
.events_top {margin: 5px auto 20px auto; border: 1px solid black; padding: 5px; height: 150px;}}
@media (max-width:467px) {
.events_top {margin: 5px auto 20px auto; border: 1px solid black; padding: 5px; height:100%;}}
To your JEvents Custom CSS.
I have actually gone and head and done this for you.
Many thanks
Tony