/* ── 메인 히어로 텍스트 마그네틱 가속 & 자석 포인터 제어 ── */
.magnetic-char {
  display: inline-block !important;
  position: relative !important;
  will-change: transform !important;
  transform-style: preserve-3d !important;
  cursor: inherit !important; /* 부모인 body에 걸린 자석 커서 🧲 상속 받음 */
  pointer-events: none !important; /* 마우스가 겹쳐도 브라우저가 글자를 무시하고 body의 자석 커서를 직접 표시하게 하여 투명화/깜빡임 방지 */
}

.magnetic-text {
  cursor: inherit !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  pointer-events: none !important;
}
