How to prevent word break/hyphenation from titles (IMPULSE)

How to prevent word break/hyphenation from titles on my store, we use IMPULSE theme, in mobile view happens all the time,

Thank you

In your impulse theme, this happens because mobile headings are set to automatically break words and sometimes add hyphens.
I suggest you go to your theme setting or css and turn of hyphenation and word breaking for headings. The key is to disable “text hyphenation” and make sure tittles are set to keep words intact instead of splitting them.
If you don’t want to use code, check if your theme editor has typography settings for the hyphenation or words break and switch it off. I hope this helps.

If talking about product tiles on product cards, then there is this code:

To override it, you can add the following code to Theme Settings-> Custom CSS in “Theme edit”:

.grid-product .grid-product__title {
  hyphens: initial;
  word-break: initial;
}

Before/After: