.news-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
}
.news-toolbar strong {
    display: block;
    font-size: 18px;
}
.news-toolbar p {
    margin: 6px 0 0;
    color: #667085;
    font-size: 13px;
    line-height: 1.5;
}
.news-modal-panel {
    width: min(100%, 920px);
}
.news-edit-form {
    gap: 18px;
}
.news-editor-box {
    display: grid;
    gap: 8px;
}
.news-rich-editor {
    min-height: 320px;
}
.news-editor-box .ck-editor__editable_inline {
    min-height: 320px;
    color: #111827;
    font-size: 15px;
    line-height: 1.75;
}
@media (max-width: 860px) {
    .news-toolbar {
        align-items: stretch;
        flex-direction: column;
    }
    .news-toolbar .row-action {
        width: 100%;
    }
    .news-rich-editor,
    .news-editor-box .ck-editor__editable_inline {
        min-height: 260px;
    }
}
