/* Working-copy proposal: make language switching easy to find in the mobile menu. */
.mobile-language-switch {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  min-height: 60px;
  padding-top: 0.45rem;
  color: var(--ink-faint);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.mobile-language-switch__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

.mobile-language-switch__link.active {
  color: var(--accent);
  font-weight: 700;
}

.mobile-language-switch__link.active::after {
  content: "";
  position: absolute;
  right: 0.7rem;
  bottom: 0.35rem;
  left: 0.7rem;
  height: 1px;
  background: currentColor;
}
