/* Language switcher in header */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 500;
}
.lang-switcher a,
.lang-switcher span {
  padding: 4px 6px;
  color: #0b163f;
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.lang-switcher a:hover {
  color: #323276;
  background: rgba(50, 50, 118, 0.08);
}
.lang-switcher .lang-current {
  color: #323276;
  font-weight: 600;
}
.lang-switcher .lang-sep {
  color: #c0c1ca;
  padding: 0 1px;
  font-weight: 400;
}
