/* Always-visible language selector, independent of the responsive navigation. */
.site-header {
  grid-template-columns: 1fr auto auto 46px !important;
  column-gap: clamp(16px, 2vw, 30px);
}
.header-language-switch {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-width: 40px;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #c7ccd5;
  background: rgba(7,9,13,.62);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.header-language-switch:hover,
.header-language-switch:focus-visible {
  color: #fff;
  border-color: rgba(71,127,255,.68);
  background: rgba(71,127,255,.13);
  transform: translateY(-1px);
  outline: none;
}
@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto 46px !important;
    column-gap: 10px;
  }
  .header-language-switch {
    min-width: 38px;
    min-height: 38px;
    padding-inline: 9px;
  }
}
@media (max-width: 520px) {
  .site-header { column-gap: 7px; }
  .header-language-switch {
    min-width: 34px;
    min-height: 34px;
    padding-inline: 7px;
    font-size: 11px;
  }
}
