/* 오버레이 */
.cm-modal {
    position: fixed;  /* 상위 transform 영향 방지 */
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    z-index: 10000;   /* 헤더/스와이퍼보다 항상 위 */
}

/* 열림 상태 */
.cm-modal.is-open {
    display: flex;
}

/* 패널 */
.cm-modal__panel {
    position: relative;
    background: #fff;
    width: min(640px, 92vw);
    max-height: 84vh;
    overflow: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    padding: 24px 20px;
}

/* 닫기 버튼 */
.cm-modal__close {
    position: absolute;
    top: 10px; right: 12px;
    font-size: 24px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.cm-modal__title {
    margin: 0 28px 16px 0;
    font-size: 20px;
    font-weight: 700;
}

.cm-modal__body {
    font-size: 14px;
    line-height: 1.6;
}
