Is there a way to render superscripts in live preview mode the way they do in reading mode?

I have the SupSub (GitHub - wjgoarxiv/obsidian-supsub: ::SupSub enables wrapping selected text with `<sup>` or `<sub>` tags::) plugin installed, and in reading mode, the superscripts render the way I want them to, with clickable links. Is there a way to change superscripts (either footnotes, or, preferably, a different styling of superscripts, like this plugin) to render in live preview the way they do in reading mode?

I’m still curious if this is possible, but I have another, related question: is it possible to make internal links a different colour (in reading mode) when under a specific condition (i.e. wrapped in:

<sup> </sup>

I managed to in live preview mode, where the internal links don’t render, and I find it much easier to distinguish superscripts from the rest of the text, now. The code I used to do this is:


/* Change color of  text to blue */
sup {
color: #4A685B;
decoration: underline;
}