The social network icons located in the header are not hidden and convey weight.
In addition, clicking on them you go to the same browser window.
I tried to change this: /user/themes/editorial/templates/partials/social.html.twig
<ul class="icons">
{% for item in theme_config.social %}
{% if item.icon != "mastodon" %}
<li><a href="{{ item.url }}" class="icon brands fa-{{ item.icon }}" title="{{ item.name }}" rel="nofollow" target="_blank"><span class="label">{{ item.name }}</span></a></li>
{% else %}
<li><a href="{{ item.url }}" rel="me" class="icon brands fa-{{ item.icon }}" title="{{ item.name }}"><span class="label">{{ item.name }}</span></a></li>
{% endif %}
{% endfor %}
</ul>
I may not have done it very gracefully or beautifully, but it works.