/* Language switch (ES | EN) on the public class forms — mobile first.
   White text: all four forms sit on a dark background. */
.lang-switch {
  color: #ffffff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem 0 1rem;
  font-size: 0.95rem;
}

.lang-switch .lang-switch-link {
  display: inline-block;
  min-width: 44px;
  min-height: 44px;
  line-height: 44px;
  text-align: center;
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
}

.lang-switch .lang-switch-active {
  font-weight: 700;
  text-decoration: underline;
  opacity: 1;
}

.lang-switch .lang-switch-sep {
  opacity: 0.4;
}

@media (min-width: 768px) {
  .lang-switch {
    padding: 1rem 2rem 0 2rem;
  }
}
