/* Language switcher — desktop */
.header-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  margin-left: 12px;
  white-space: nowrap;
}

.header-lang__item {
  color: #666;
  text-decoration: none;
  padding: 2px 4px;
  border-radius: 2px;
  transition: color 0.2s;
}

.header-lang__item:hover {
  color: #10b073;
}

.header-lang__item.is-active {
  color: #10b073;
  font-weight: bold;
  pointer-events: none;
  cursor: default;
}

.header-lang__sep {
  color: #ccc;
  font-size: 10px;
}

/* Language switcher — mobile (inside hamburger panel) */
.header-lang--sp {
  margin-top: 16px;
  justify-content: center;
  font-size: 14px;
  padding: 12px 0;
  border-top: 1px solid #eee;
}

.header-lang--sp .header-lang__item {
  padding: 4px 8px;
  font-size: 14px;
}
