Journal font size

I’m trying to modify the font size on Journal theme.

Changing the font size in .gh-article-title by code injection, for the title of the first article in the front page it works.

But, when trying to change the font size for the title of the second article in the front page, .gh-card-title, it affects the font size in the first article, i.e., the size of the first article title becomes the size configured in the .gh-card-title.

Any idea?

This works:

<style>
.gh-article-title {
  font-size: 8.4rem !important;
}
.gh-card-title {
font-size: 2.4rem;
}
</style>

Change font-size value to your preferred sizes.

Thanks a lot. It worked.