/* ============================================================
   파일: /khf/assets/css/style.css
   목적:
     - Footer 하단 고정
     - 전역 폰트 통일(Tailwind font-sans까지 덮기)
   ============================================================ */

html, body {
  height: 100%;
  margin: 0;
  padding: 0;

  /* ✅ 전역 폰트 강제 */
  font-family: "Noto Sans KR", system-ui, -apple-system, "Segoe UI", Roboto,
               "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif !important;
}

body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#pageContent{
  flex: 1;
  display: block;
}

/* ✅ 실제 footer.php 구조에 맞춤 */
.khf-footer{ margin-top: auto; }
.khf-site-footer{ margin-top:56px; }
@media (max-width:640px){ .khf-site-footer{ margin-top:32px; } }


/* ✅ Tailwind font-sans가 이겨버리는 케이스를 강제로 통일 */
.font-sans{
  font-family: "Noto Sans KR", system-ui, -apple-system, "Segoe UI", Roboto,
               "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif !important;
}

/* ✅ Quill(있을 때만)도 사이트 폰트로 통일 */
.ql-container, .ql-editor{
  font-family: inherit !important;
}
