/**
 * Pogalua - Selector de idioma superior
 * Selector inline dinámico: ES · EN · IT
 */

.poga-top-language-bar {
  width: 100%;
  height: 26px;
  min-height: 26px;
  max-height: 26px;
  position: relative;
  z-index: 999;
  background: #fff;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.poga-top-language-bar__inner {
  max-width: 1320px;
  height: 26px;
  min-height: 26px;
  max-height: 26px;
  margin: 0 auto;
  padding: 0 56px 0 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.poga-lang-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.poga-lang-inline__item {
  color: #143852;
  text-decoration: none;
  opacity: 0.5;
  font-weight: 500;
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.poga-lang-inline__item:hover {
  color: #9505e3;
  opacity: 1;
}

.poga-lang-inline__item.is-current {
  color: #9505e3;
  opacity: 1;
  font-weight: 700;
}

.poga-lang-inline__separator {
  color: rgba(20, 56, 82, 0.28);
  font-size: 12px;
  line-height: 1;
  transform: translateY(-1px);
}

/* Móvil */
@media (max-width: 768px) {
  .poga-top-language-bar {
    height: 24px;
    min-height: 24px;
    max-height: 24px;
  }

  .poga-top-language-bar__inner {
    height: 24px;
    min-height: 24px;
    max-height: 24px;
    padding: 0 18px;
  }

  .poga-lang-inline {
    font-size: 11px;
    gap: 5px;
  }
}