How do I make it so the text is responsive on the collections page?

On my homepage (second image), I managed to change the text is responsive for when I go on my mobile but on my collections page, I can’t seem to figure it out. Could you please help me make it so that the text is contained within the grid?

Site: shop-punico.com/collections
Password: squishy

Thanks!

@tapi-oca

Please add the following code at the bottom of your assets/theme.css file.

@media only screen and (max-width: 749px){
.template-list-collections h3, .template-list-collections .h3 { font-size: calc(((var(--font-h3-mobile)) / (var(--font-size-base))) * 1em) !important }
.template-list-collections .h1, .template-list-collections h1 { font-size: calc(((var(--font-h1-mobile))/ (var(--font-size-base))) * 1em) !important; }
}

Hope this works.

Thanks!

Works perfectly! Thank you