/* 공통 알림 모달 */
.cm-alert {
    position: fixed;
    inset: 0; /* top:0; right:0; bottom:0; left:0 */
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.45);
    z-index: 10010;   /* footer보다 무조건 커야 함 */
}
.cm-alert.is-open {
    display: flex;
}

.cm-alert__panel {
    --alert-width: min(520px, 92vw);
    width: var(--alert-width);
    max-height: 70vh;
    overflow: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 48px rgba(0,0,0,.3);
    padding: 36px 40px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cm-alert__body {
    font-size: 14px;
    line-height: 1.7;
    text-align: center;   /* ✅ 가운데 정렬 */
}
/* 본문 기본 */
.cm-alert__footer {
    font-size: 14px;
    line-height: 1.7;
    text-align: center;   /* ✅ 가운데 정렬 */
}
