.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 2rem;
}

.language-link {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.language-link:hover {
  color: #000;
  background-color: rgba(0, 0, 0, 0.05);
}

.language-link.active {
  color: #000;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #FF6B6B;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.language-divider {
  color: #ccc;
  font-weight: 300;
}

@media (max-width: 768px) {
  .language-switcher {
    margin-left: auto;
    order: -1;
  }
}
