/* Footer Locale & Site Switcher Bar */

.footer-locale-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding: 1.25rem 0;
}

.footer-locale-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Language Switcher */
.footer-locale-switcher {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.footer-locale-link,
.footer-locale-current {
  font-size: 0.8125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.625rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}

.footer-locale-link {
  color: rgba(255, 255, 255, 0.4);
}

.footer-locale-link:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
}

.footer-locale-current {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 500;
}

/* Cross-site Navigation */
.footer-site-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-site-label {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

.footer-site-link {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.625rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  line-height: 1;
}

.footer-site-link:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-site-link i {
  font-size: 0.6875rem;
  opacity: 0.7;
}

@media (max-width: 640px) {
  .footer-locale-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
