/* Header language switcher and mobile menu fixes */
.main-header .menu-right-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switcher,
.mobile-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lang-switcher a,
.mobile-lang-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
}

.lang-switcher a.active,
.mobile-lang-switcher a.active,
.lang-switcher a:hover,
.mobile-lang-switcher a:hover {
  background: #ffffff;
  color: #061a3a;
}

.mobile-menu .nav-logo {
  padding-right: 70px;
  padding-bottom: 14px;
}

.mobile-menu .nav-logo img {
  width: 100%;
  max-width: 150px;
  height: auto;
}

.mobile-menu .mobile-lang-switcher {
  padding: 0 25px 14px;
}

@media (max-width: 1200px) {
  .main-header .menu-right-content .lang-switcher {
    display: none;
  }
}

/* Visually-hidden but crawlable text (SEO H1 for the homepage hero) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
