stimulus Hi
This template has style for some <p> tags in article except for the last tag:
.layout-default-sublayout .detail-page .content-article p:not(:last-child) {
color: #4F4F4F;
font: var(--h4-font-size)/var(--heading-h4-line-height) var(--body-font-family);
margin: 0 0 2rem;
}
You can override by this css rule:
.layout-default-sublayout .detail-page .content-article p:not(:last-child) {
font: inherit !important;
}