/* Mobile header language switcher v2 — prefix mhl */
.mhl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  min-width: 0;
  height: 14px;
  line-height: 0;
}

.mhl__globe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  line-height: 0;
  font-size: 0;
}

.mhl__globe-icon {
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.mhl__langs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  height: 14px;
}

.mhl__lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 14px;
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", "HelveticaNeueCyr-Roman", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  color: #689ae3;
  transition: color 0.2s ease;
  /* trim font ascent/descent so glyphs optically match the 14px icon */
  text-box: trim-both cap alphabetic;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.mhl__lang_current {
  color: #fff;
  cursor: default;
}

.mhl__lang:not(.mhl__lang_current):hover {
  color: #fff;
}

/* Collapsed: only current language visible */
.mhl__langs-extra {
  display: grid;
  grid-template-columns: 0fr;
  overflow: hidden;
  height: 14px;
  align-items: center;
  transition: grid-template-columns 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mhl__langs-extra-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  height: 14px;
  overflow: hidden;
}

.mhl.is-open .mhl__langs-extra {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 993px) {
  .mhl {
    display: none !important;
  }
}
