Ways to style internal link header references?

What I’m trying to do

By Default: [[Note#Header]] Is displayed as Note > Header

Instead, I want to use CSS to display [[Note#Header]] as Note:Header

Things I have tried

I’ve tried many different css scripts, but none of them are working, for instance:

a.internal-link::after {
content: ‘:’;
}
a.internal-link[href*=“#”]::before {
content: attr(href);
color: inherit;
}