.language-switcher {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 4px;
    border: 1px solid #dce2e6;
    border-radius: 999px;
    background: rgb(255 255 255 / 92%);
    padding: 3px;
}

.language-switcher a {
    min-width: 32px;
    border-radius: 999px;
    color: #5f6977;
    padding: 5px 7px;
    font-size: .75rem;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-decoration: none;
}

.language-switcher a:hover {
    color: #0b6b5b;
}

.language-switcher a[aria-current="page"] {
    background: #0b6b5b;
    color: #fff;
}

@media (max-width: 980px) {
    .site-nav {
        flex-wrap: wrap;
        gap: 10px;
    }

    .language-switcher {
        order: 2;
    }
}

@media (max-width: 520px) {
    .site-brand small {
        display: none;
    }

    .language-switcher a {
        min-width: 29px;
        padding-inline: 5px;
    }
}
