.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}

.language-switcher-label {
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.language-switcher-select {
    min-width: 138px;
    border: 1px solid rgba(205, 165, 75, 0.38);
    border-radius: 8px;
    padding: 7px 30px 7px 10px;
    background: rgba(12, 13, 16, 0.92);
    color: #f3e3b2;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    outline: none;
}

.language-switcher-select:hover,
.language-switcher-select:focus {
    border-color: rgba(220, 177, 76, 0.78);
}

.auth-language-switcher-host {
    position: fixed;
    top: 18px;
    right: 22px;
    z-index: 20;
}

.language-switcher--auth {
    padding: 8px 10px;
    border: 1px solid rgba(205, 165, 75, 0.18);
    border-radius: 10px;
    background: rgba(10, 11, 14, 0.72);
    backdrop-filter: blur(8px);
}

.language-switcher--sidebar {
    justify-content: space-between;
    width: 100%;
    margin-bottom: 12px;
}

.language-switcher--sidebar .language-switcher-select {
    min-width: 118px;
    max-width: 145px;
}

@media (max-width: 760px) {
    .auth-language-switcher-host {
        position: static;
        display: flex;
        justify-content: flex-end;
        padding: 12px 14px 0;
    }

    .language-switcher-label {
        display: none;
    }
}
