/* Language switcher in header */
.mylang_flag_block {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 12px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5px;
}

.mylang_flag_block a,
.mylang_flag_block span {
    display: inline-block;
    padding: 4px 7px;
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    opacity: 0.6;
    transition: opacity 0.15s ease, background-color 0.15s ease;
}

.mylang_flag_block a:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.12);
}

.mylang_flag_block .is-active {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.15);
    cursor: default;
}
