.language-toggle {
    align-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(236, 236, 176, .55);
    border-radius: 999px;
    color: #ececb0;
    cursor: pointer;
    display: inline-flex;
    font-size: 1.35rem;
    font-weight: 800;
    justify-content: center;
    letter-spacing: 0;
    min-height: 3.6rem;
    min-width: 5.6rem;
    padding: .8rem 1.2rem;
    transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.language-toggle:hover {
    background: rgba(236, 236, 176, .16);
    border-color: #ececb0;
    color: #fff;
    transform: translateY(-2px);
}

body.light-mode .language-toggle {
    background: rgba(13, 10, 32, .05);
    border-color: rgba(13, 10, 32, .22);
    color: #0d0a20;
}

body.light-mode .language-toggle:hover {
    background: rgba(131, 197, 190, .18);
    border-color: #83c5be;
    color: #00383d;
}

.site-nav .language-toggle {
    border-color: rgba(17, 20, 17, .18);
    background: rgba(255, 250, 240, .56);
    color: #173d38;
    font-size: 1.25rem;
    min-height: 3.4rem;
}

.site-nav .language-toggle:hover {
    border-color: rgba(47, 111, 98, .5);
    background: #fffaf0;
    color: #173d38;
}

@media (max-width: 767px) {
    .language-toggle {
        font-size: 1.4rem;
        min-width: 7rem;
    }
}
