html { font-size: 16px !important; } 

body { font-family: "Noto Sans Korean", "Noto Serif", Helvetica, Arial, sans-serif !important; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-size: 16px; line-height: 1.5; font-weight: 400; /* 폰트 스무딩 최적화 */
 -webkit-font-smoothing: antialiased; /* macOS에서 부드럽게 렌더링 */
 -moz-osx-font-smoothing: grayscale; /* macOS Firefox에서 글자를 선명하게 */
 text-rendering: optimizeLegibility; /* 폰트 가독성 최적화 */}

/* 모든 이미지 드래그 금지 */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: none; /* 선택 및 클릭 방지 */
}

/* 텍스트 선택도 방지하고 싶다면 추가 */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}



.wf__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Mobile - 640px 이상 */
@media (min-width: 640px) {
  .wf__container { max-width: 640px; }
}

/* Tablet - 768px 이상 */
@media (min-width: 768px) {
  .wf__container { max-width: 768px; }
}

/* Laptop - 1024px 이상 */
@media (min-width: 1024px) {
  .wf__container { max-width: 1024px; }
}

/* Desktop - 1280px 이상 */
@media (min-width: 1280px) {
  .wf__container { max-width: 1280px; }
}

/* Wide Screen - 1320px 이상 */
@media (min-width: 1320px) {
  .wf__container { max-width: 1320px; }
}




.wf__text_accent {
  position: relative;
  padding-left: 15px;
  color:#6b7280;
}

.wf__text_accent::before {
  content: "*";
  position: absolute;
  left: 0;
  top: 3px;
  color: #ff0000;
  font-weight: bold;
}

@layer utilities {
  .ellipsis-1 {
    display: -webkit-box !important;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 1 !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical;
  }

  .ellipsis-2 {
    display: -webkit-box !important;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 2 !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical;
  }
}

#hd_login_msg { display: none; } 
#hd_pop > h2 { display: none; } 
.sound_only { display: none !important; } 

.footer__header { display: flex; justify-content: center; } 

/* 스마트에디터 단축키 일람 숨기기 */
.cke_sc { display: none !important; }

/* 게시판 페이지네이션 스타일 */
.wf__paging nav { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin: 1rem 0; font-size: 18px; } 
.wf__paging .pg { display: flex; align-items: center; gap: 0.5rem; } 
.wf__paging .pg_current { display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; color: #ffffff; background-color: black; border-radius: 100%; } 
.wf__paging .pg_page { display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; color: #6b7280; background-color: #ffffff; border-radius: 0.5rem; } 
.wf__paging .pg_page:hover { border-radius: 100%; background-color: #f3f4f6; } 
.wf__paging .pg_end { padding-left: 0.75rem; padding-right: 0.75rem; width: auto; } 


/* 캡챠 스타일 */
.captcha {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  max-width: 400px;
  margin: 24px auto;
}

.captcha legend {
  display: none;
}
.captcha #captcha_key {
  text-align: center;
  font-size: 16px;
}


.captcha #captcha_img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 8px;
}

.captcha .captcha_box {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  font-size: 18px;
  font-weight: 500;
  color: #1e293b;
  text-align: center;
  transition: all 0.2s ease;
}

.captcha .captcha_box:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.captcha #captcha_mp3,
.captcha #captcha_reload {
  height: 46px;
  padding: 0 20px;
  border: none;
  border-radius: 12px;
  background: #f1f5f9;
  color: #475569;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.captcha #captcha_mp3:hover,
.captcha #captcha_reload:hover {
  background: #e2e8f0;
  color: #1e293b;
}

.captcha #captcha_mp3:active,
.captcha #captcha_reload:active {
  transform: translateY(1px);
}

.captcha #captcha_info {
  font-size: 14px;
  color: #64748b;
  text-align: center;
  font-weight: 500;
}

/* PC 환경 */
@media (min-width: 768px) {
  .captcha {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px;
    max-width: none;
  }

  .captcha #captcha_img {
    width: 180px;
    height: 50px;
  }

  .captcha .captcha_box {
    width: 170px;
  }

  .captcha #captcha_mp3,
  .captcha #captcha_reload {
    width: 140px;
  }

  .captcha #captcha_info {
    width: 100%;
    margin-top: 8px;
  }
}
