.ck.ck-editor {
    max-width: 1550px;
}

/* 내용이 적으면 최소 높이, 내용이 늘어나면 자동 확장 (CKEditor 5 기본 동작) */
.ck-editor__editable {
    min-height: 200px;
}

/* htmlEmbed preview iframe 스크롤 활성화 (CKEditor가 preview에 pointer-events:none을 상속시킴) */
.ck-content .raw-html-embed__preview iframe[data-html-preview] {
    pointer-events: auto !important;
}

/* htmlEmbed 소스 편집 textarea 높이 확장 (기본값 10em은 너무 작음) */
.ck.ck-editor__editable .raw-html-embed__source {
    min-height: 300px !important;
    height: auto !important;
    resize: vertical !important;
}

