.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 10px;
    padding: 3px;
    border-radius: 999px;
    background: rgba(11, 76, 194, 0.08);
    border: 1px solid rgba(11, 76, 194, 0.18);
}

.lang-switch__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #0B4CC2;
    background: transparent;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-switch__item:hover,
.lang-switch__item:focus-visible {
    background: rgba(11, 76, 194, 0.14);
    color: #082E72;
    outline: none;
}

.lang-switch__item--active {
    background: #0B4CC2;
    color: #FFFFFF;
    box-shadow: 0 6px 16px rgba(11, 76, 194, 0.26);
}

@media (max-width: 1024px) {
    .lang-switch {
        margin-right: 6px;
    }
}

@media (max-width: 768px) {
    .lang-switch {
        margin-right: 4px;
    }

    .lang-switch__item {
        min-width: 32px;
        height: 26px;
        font-size: 11px;
    }
}
/* Language switcher — shared across all locales */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    background: #F0F4FA;
    border-radius: 999px;
    border: 1px solid #E4EAF5;
    flex-shrink: 0;
}

.lang-switch__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 28px;
    padding: 0 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #667085;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.lang-switch__item:hover {
    color: #0B4CC2;
    background: rgba(11, 76, 194, 0.06);
}

.lang-switch__item--active {
    color: #fff;
    background: #0B4CC2;
    box-shadow: 0 2px 8px rgba(11, 76, 194, 0.28);
    pointer-events: none;
}

@media (max-width: 768px) {
    .lang-switch {
        display: none;
    }
}
