/* ==========================================================================
   CKEditor 5 (editor-only) — image/media spacing
   Applies in the editing UI only.
   ========================================================================== */

.ck-content :where(.align-left)  { margin: 0 1rem 1rem 0; }
.ck-content :where(.align-right) { margin: 0 0 1rem 1rem; }
.ck-content :where(.align-center){ margin: 1rem auto; text-align: center; }

/* Safety: clear floats inside the editor */
.ck-content::after {
  content: "";
  display: block;
  clear: both;
}

