.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 30px;
  padding: 3px;
  border: 1px solid #3d3550;
  border-radius: 999px;
  background: rgba(8, 7, 16, 0.46);
}

.language-switch button {
  min-width: 34px;
  height: 28px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #9d94b4;
  font: 600 9px ui-monospace, monospace;
  letter-spacing: 0.1em;
  transition: background-color 180ms ease, color 180ms ease;
}

.language-switch button:hover,
.language-switch button:focus-visible {
  color: #fff;
  outline: none;
}

.language-switch button.active {
  background: #753bbd;
  color: #fff;
}

.language-switch button:focus-visible {
  box-shadow: 0 0 0 2px #080710, 0 0 0 4px #ff9800;
}

body.language-changing main,
body.language-changing footer {
  opacity: 0.72;
}

main,
footer {
  transition: opacity 120ms ease;
}

@media (max-width: 1120px) {
  .header nav {
    gap: 22px;
  }

  .language-switch {
    margin-left: 20px;
  }

  .pill-small {
    margin-left: 18px;
  }
}

@media (max-width: 1000px) {
  .language-switch {
    margin: 0 12px 0 auto;
  }
}

@media (max-width: 420px) {
  .logo span {
    display: none;
  }

  .language-switch {
    margin-right: 8px;
  }

  .language-switch button {
    min-width: 30px;
    height: 27px;
    padding: 0 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  main,
  footer,
  .language-switch button {
    transition: none;
  }
}
