/* ══════════════════════════════════════════════════════════════
   테마 토글 — 온 사이트 한 벌
   2026-08-30 조은님 지시: 「아이콘만 두고 글자는 모두 제거. 전체 동일하게」

   여기 한 곳만 고치면 모든 화면이 같이 바뀐다.
   그전에는 이 규칙이 12벌 복사돼 있어 한쪽만 고쳐지곤 했다.
   ══════════════════════════════════════════════════════════════ */

.theme-tg{
  display:inline-flex; align-items:center; justify-content:center;
  width:30px; height:30px; padding:0; border-radius:999px;
  border:1.5px solid var(--line); background:transparent; color:var(--ink);
  cursor:pointer; transition:.2s; flex:0 0 auto; line-height:1;
}
.theme-tg:hover{ border-color:var(--brand); color:var(--brand) }
.theme-tg .ic{ font-size:15px; line-height:1 }

/* 안전망 — 어느 화면에 글자가 남아 있어도 보이지 않는다.
   「두 곳에 있어 한쪽만 고쳐지는」 사고를 이 한 줄이 막는다. */
.theme-tg .lbl{ display:none !important }

[data-theme="dark"] .theme-tg{ color:var(--ink); border-color:var(--line) }
[data-theme="dark"] .theme-tg:hover{ color:var(--brand); border-color:var(--brand) }

@media (max-width:600px){
  .theme-tg{ width:28px; height:28px }
  .theme-tg .ic{ font-size:14px }
}
