/**
 * 8FUN Child Theme — main.css
 * 전역 스타일 + nseo-5 플러그인 시각 노이즈 차단
 */

/* =====================================================
   GLOBAL — word-break
===================================================== */
* {
  box-sizing: border-box;
}

body {
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* =====================================================
   nseo-5 플러그인이 </footer> 뒤에 출력하는
   크롤러용 마이크로데이터 리스트 시각적 숨김
   (display:none 금지 — 네이버 크롤러 schema.org 데이터 유지)
===================================================== */
.nseo-microdata-list-3,
.nseo-microdata-list-4,
ol[itemtype="https://schema.org/ItemList"],
ol[itemtype="http://schema.org/ItemList"] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  pointer-events: none !important;
}
