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

.language-button {
  padding: 6px 3px;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
}

.language-button.active {
  color: var(--gold);
}

.language-button:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .language-switcher {
    order: -1;
    justify-content: flex-end;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }
}
