/*====== Language Switcher ======*/

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lang-flag {
    width: 20px;
    height: 14px;
    flex: 0 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .12);
}

.lang-code {
    font-weight: 600;
    letter-spacing: .02em;
}

.lang-menu {
    min-width: 11rem;
}

.lang-menu .lang-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Bootstrap 4 paints .dropdown-item.active blue with white text; keep it on-palette. */
.lang-menu .lang-item.active,
.lang-menu .lang-item.active:focus,
.lang-menu .lang-item.active:hover {
    background-color: rgba(0, 0, 0, .05);
    color: inherit;
    font-weight: 600;
}

.lang-check {
    margin-left: auto;
    font-size: .75em;
    opacity: .7;
}
