/* Language switcher (topbar) */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.5rem;
    color: #fff;
    font-size: 0.85rem;
}

.language-switcher-label {
    opacity: 0.85;
    white-space: nowrap;
}

.language-switcher-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.language-switcher-link {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    padding: 2px 6px;
    border-radius: 4px;
    transition: opacity 0.2s, background 0.2s;
}

    .language-switcher-link:hover {
        opacity: 1;
        background: rgba(255,255,255,0.12);
        color: #fff;
    }

    .language-switcher-link.is-active {
        opacity: 1;
        font-weight: 700;
        background: rgba(255,255,255,0.2);
        color: #fff;
    }

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