.lang-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lang-toggle .lang-option {
    display: inline-flex;
    line-height: 0;
    opacity: 0.45;
    border-radius: 3px;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.lang-toggle .lang-option svg {
    width: 30px;
    height: auto;
    display: block;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}
.lang-toggle .lang-option:hover {
    opacity: 0.8;
    transform: scale(1.08);
}
.lang-toggle .lang-option.active {
    opacity: 1;
    box-shadow: 0 0 0 2px var(--color-orange);
}

.sidebar-social {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.sidebar-social .lang-toggle {
    flex-basis: 100%;
    justify-content: center;
}

@media (min-width: 1025px) {
    .lang-toggle {
        gap: 6px;
    }
    .lang-toggle .lang-option svg {
        width: 24px;
    }
}
