How to limit the product title to 1 line on mobile?

Hello,

does somebody know How to limit the product title to 1 line on mobile?

Thank you!

url: aliudclothing.com

@KimGottwald

do you want to hide the remaining name which is on the second line?

No, I want to make the Font smaller, so everything fits into the first line.

Thank you.

@KimGottwald

use below css code in your theme.scss.css file refer to the screenshot below

@media screen and (max-width: 600px){
	.product-single__meta h1.product-single__title {
	font-size: 24px !important;
	}
}