.language-switcher {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: 0;
    padding: .5rem;
    list-style: none;
    border: .1rem solid rgba(12, 12, 12, .18);
    border-radius: 10rem;
    background: #fff;
    box-shadow: 0 .8rem 2rem rgba(12, 12, 12, .08);
}

.language-switcher li {
    display: flex;
}

.language-switcher a,
.language-switcher span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4.2rem;
    height: 3.6rem;
    padding: 0 1.1rem;
    border-radius: 10rem;
    color: #0c0c0c;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .25s ease, background-color .25s ease;
}

.language-switcher a:hover,
.language-switcher .is-active span {
    color: #fff;
    background: #476153;
}

.menu__language-switcher {
    width: max-content;
    margin-top: 2.4rem;
    border-color: rgba(12, 12, 12, .12);
    background: #fff;
}

.menu__language-switcher a,
.menu__language-switcher span {
    color: #0c0c0c;
}

.menu__language-switcher a:hover,
.menu__language-switcher .is-active span {
    color: #fff;
    background: #476153;
}

.footer__nav > li > a {
    white-space: nowrap;
}

.blog-section__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
}

@media (max-width: 1199px) {
    .header__group .language-switcher {
        display: none;
    }
}
