/* 머리글 언어 토글. 웹툰 코너 밖 페이지에도 붙어야 해서 별도 파일로 둔다.
   nav 밖에 있으므로 휴대폰에서 메뉴를 접어도 보인다. */
.site-header .lang-switch {
  align-self: center;
  margin-left: 18px;
  padding: 5px 10px;
  border: 1px solid var(--line, #d8d4c8);
  border-radius: 999px;
  color: inherit;
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-header .lang-switch:hover {
  background: #17251d;
  color: #f3f0e7;
}

.home-page .site-header .lang-switch {
  border-color: #6a7a6f;
}

.home-page .site-header .lang-switch:hover {
  background: #f3f0e7;
  color: #17251d;
}

@media (max-width: 760px) {
  .site-header .menu-toggle {
    order: 1;
  }

  .site-header .lang-switch {
    margin-left: auto;
  }
}
