/* CKEditor 5 커스텀 스타일 */
#editor_wrap .ck-editor__editable {
    min-height: 300px;
    max-height: 600px;
}

#editor_wrap .ck.ck-editor {
    width: 100%;
}

/* 에디터 내부 이미지 크기 제한 */
#editor_wrap .ck-content img {
    max-width: 100%;
    height: auto;
}

/* 에디터 포커스 스타일 */
#editor_wrap .ck.ck-editor__editable:not(.ck-editor__nested-editable).ck-focused {
    border-color: #337ab7;
    box-shadow: 0 0 3px rgba(51, 122, 183, 0.3);
}
