/* 모달 레이어 */
.kb-img-modal{
  display:none;position:fixed;inset:0;z-index:99999;
  background:rgba(0,0,0,.8);justify-content:center;align-items:center;padding:20px
}
.kb-img-modal.is-open{display:flex}
.kb-img-modal__img{
  max-width:95vw;max-height:90vh;
  box-shadow:0 10px 30px rgba(0,0,0,.5);border-radius:10px
}
.kb-img-modal__close{
  position:absolute;top:16px;right:20px;font-size:28px;color:#fff;cursor:pointer;line-height:1
}

/* 모바일에서 본문 이미지 강제 꽉 차게 */
@media (max-width:768px){
  .kboard-content img,
  .kboard-document img,
  .kboard-view img,
  .board-view img,
  .kboard img,
  .entry-content .kboard img,
  .entry-content .kboard-content img,
  .entry-content .kboard-document img,
  .single .entry-content img,
  article img{
    width:100% !important;max-width:100% !important;height:auto !important
  }
  /* 인라인 width/height 덮어쓰기 */
  .kboard-content img[style*="width"],
  .kboard-document img[style*="width"],
  .kboard-view img[style*="width"],
  .board-view img[style*="width"],
  .kboard img[style*="width"],
  article img[style*="width"]{
    width:100% !important;
  }
  .kboard-content img[height],
  .kboard-document img[height],
  .kboard-view img[height],
  .board-view img[height],
  .kboard img[height],
  article img[height],
  .kboard-content img[style*="height"],
  .kboard-document img[style*="height"],
  .kboard-view img[style*="height"],
  .board-view img[style*="height"],
  .kboard img[style*="height"],
  article img[style*="height"]{
    height:auto !important;
  }
}