Prestige theme - Collection section even smaller?

Hello. I need some help with making the collection module even smaller in heigh than it is now. I have chosen the smallest option but i still think its way to big. Does anybody know how i can adjust the height for this module in a liquid file? Or maybe some code that would help adjust this? Thanks!

Link example: https://americanwine.dk/collections/all

@LauraOO

add below css into your css file

@media screen and (min-width: 1140px)
{
.CollectionItem__Wrapper--small {
    height: 300px !important;
}
}

Thanks worked perfectly!