Why is my product card grid so narrow on mobile?

Hi, is anyone able to help me why my products look like this on the mobile version? I would like the photo to be bigger and the text to fit in 1-2 lines, not like this… The product card is extremely narrow.

https://chromemaster.eu/

123

Did you add custom code to modify this section? The default section of the theme will not appear like that.

Hmmmm, it looks like it is a padding issue. You can place this at the bottom of your base.css file:

@media screen and (min-width: 650px) {
  .card.card--standard.card--media {
    padding-top: 0px !important;
    padding-left: 0px !important;
}

.full-unstyled-link {
    font-size: 15px !important;
}
}