.lang-switcher-link {
    display: inline-block;
    padding: 0.3rem .9rem;
    background-color: var(--global--color--lang-switcher);
    color: var(--global--color--lang-switcher-text);
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
    font-weight: 600;
    font-size: 1.4rem;
    white-space: nowrap;
    border: 0.5px solid var(--global--color--lang-switcher-border);
}
.lang-switcher-link:focus,
.lang-switcher-link:hover {
    background-color: var(--global--color--lang-switcher-hover);
    color: var(--global--color--lang-switcher-hover-text);
    text-decoration: none;
}
.lang-switcher--selected {
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}