/* pro editor (no CDN) */
.editor-shell{border:1px solid var(--line); background:rgba(255,255,255,.03); border-radius:16px; overflow:hidden}
.editor-toolbar{
  display:flex; flex-wrap:wrap; gap:8px;
  padding:10px; border-bottom:1px solid var(--line);
  background:rgba(0,0,0,.15)
}
.editor-toolbar button{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  padding:8px 10px;
  border-radius:12px;
  cursor:pointer;
  font-weight:700;
  font-size:13px;
}
.editor-toolbar button:hover{background:rgba(255,255,255,.07)}
.editor-area{
  min-height:320px;
  padding:14px;
  outline:none;
  line-height:1.9;
}
.editor-area.is-drag{box-shadow:0 0 0 2px rgba(63,179,127,.35) inset}
.editor-area blockquote{
  margin:12px 0;
  padding:10px 14px;
  border-right:4px solid rgba(63,179,127,.55);
  background:rgba(63,179,127,.08);
  border-radius:12px;
}
.editor-area pre{
  direction:ltr;
  text-align:left;
  padding:12px;
  background:rgba(0,0,0,.25);
  border:1px solid var(--line);
  border-radius:12px;
  overflow:auto;
}
.img-figure{margin:12px 0; border:1px solid var(--line); border-radius:14px; overflow:hidden; background:rgba(0,0,0,.12)}
.img-figure img{width:100%; height:auto; display:block}
.img-cap{padding:10px 12px; color:var(--muted); font-size:13px}
