Hi Arie,
The background image you set for the highlighted text can’t cover all of the words on mobile as it wraps.
Try add this linedisplay: block; to your CSS:
.has-contrast-color {
background-color: var(--contrast-hover);
background-image: linear-gradient(45deg, var(--base), var(--contrast));
background-size: 100%;
-webkit-background-clip: text;
-moz-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-text-fill-color: transparent;
}