/* Переключатель языка RU/EN */

.lang {
    position: relative;
    z-index: 1112;
    display: flex;
    align-items: center;
    margin-left: 12px;
    flex-shrink: 0;
}

.lang_fixed {
    position: relative;
}

.lang__link_select {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: background 0.2s;
}

.lang__link_select:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lang__img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: block;
    object-fit: cover;
    flex: 0 0 auto;
}

.lang__img_select {
    width: 26px;
    height: 26px;
}

.lang__link_sub {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
    white-space: nowrap;
    font-size: 13px;
    color: #333;
}

.lang__link_sub:hover {
    background: #f0f0f0;
}


/* Плоский переключатель на английских страницах: два флага в ряд, без выпадающего списка */
.lang > .lang__link_sub {
    padding: 6px;
    border-radius: 4px;
    opacity: 0.55;
    transition: opacity 0.2s, background 0.2s;
}

.lang > .lang__link_sub:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.15);
}

.lang > .lang__link_select[aria-current] {
    cursor: default;
}

/* Mobile */
@media screen and (max-width: 992px) {
    .lang {
        margin-left: 8px;
        margin-right: 8px;
    }
    .lang__img {
        width: 22px;
        height: 22px;
    }
    .lang__img_select {
        width: 24px;
        height: 24px;
    }
}
