How to resize font in product card only not on product page

Hi everyone,

I want to resize my product title but only on cards not on the product page itself. Does anyone know how to do it?

See photo for reference.

Hello @IntechCarl :waving_hand:

Inside Shopify Admin, you can go to Edit theme code, open file base.css and add this code at the bottom

.card__heading a {
    font-size: 14px;
}

The result

This does not affect your product pages.