Italicize the word that you want to be red. For example if you wanted “UNAPOLOGETIC” to be red:
"UNFILTERED. UNCENSORED.
UNAPOLOGETIC." <= Italicized.
Then add this CSS in the Custom CSS area of that section:
(Note: This works because when you italicize a word it gets wrapped in an em tag like this UNAPOLOGETIC.)
.banner__text em {
color: red;
font-style: normal;
}