/* ===== 모바일 팝업 중앙 정렬 보정 ===== */
@media (max-width: 980px) {

  .modal {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 16px;
    box-sizing: border-box;
    background: rgba(0,0,0,0.55);
    z-index: 9999;
  }

  .modal.show {
    display: flex;
  }

  .modal_body {
    position: relative;
    left: auto !important;
    right: auto !important;
    margin: 0 auto !important;
    transform: none !important;
    width: 100%;
    max-width: 720px;
    max-height: 85vh;
    overflow-y: auto;
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
  }

  .modal_body .content {
    width: 100% !important;
    box-sizing: border-box;
    word-break: keep-all;
  }

}
