.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-switcher__trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #FFFFFF;
  padding: 8px;
  font-family: inherit;
}
.lang-switcher__icon { width: 20px; height: 20px; stroke: currentColor; }
.lang-switcher__current {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: inherit;
}

/* Solid header (sticky white): switch to dark text/icon */
.header--solid .lang-switcher__trigger,
.header--solid .lang-switcher__current { color: #00538C; }
.header--solid .lang-switcher__icon { stroke: #00538C; }
.lang-switcher__menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  list-style: none;
  padding: 8px 0;
  margin: 8px 0 0;
  min-width: 100px;
  display: none;
  z-index: 100;
}
.lang-switcher.is-open .lang-switcher__menu { display: block; }
.lang-switcher__link {
  display: block;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-family: 'Heebo', sans-serif;
}
.lang-switcher__link:hover {
  background: #f4f4f4;
  color: #2AAAEC;
}
@media (max-width: 768px) {
  .lang-switcher__menu { right: -10px; min-width: 90px; }
  .lang-switcher__current { font-size: 13px; }
}

/* Mobile menu lang section: hidden by default, shown only on <=768px */
.mobile-nav__divider,
.mobile-nav__lang-row {
  display: none;
}

@media (max-width: 768px) {
  .mobile-nav__divider {
    display: block;
    list-style: none;
    height: 1px;
    background: #e0e0e0;
    margin: 16px 20px;
  }
  /* Horizontal centered row at the bottom of the drawer */
  .mobile-nav__lang-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    list-style: none;
    padding: 16px 20px;
    margin-top: auto;
  }
  .mobile-nav__lang-link {
    display: inline-block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
  }
  .mobile-nav__lang-link.is-current {
    color: #2AAAEC;
    font-weight: 600;
  }
}
