.control textarea[disabled] + .ck.ck-editor {
  cursor: not-allowed;
}

/* This is mandatory to avoid float content outside the .ck-content area, see #1390 */
.ck-content::after {
  content: "";
  display: block;
  clear: both;
}

/* We have a bug here (see #1390) with align mode
Best solution we have was to remove align float here: */
/* figure.image {
  float: left !important;
  display: block !important;
} */

.ck-content figure.image {
  margin-top: 1em;
  margin-bottom: 1em;
}

/* Fix conflict between Bulma and CKEditor CSS purpose #1390 */
.ck-content figure.image img {
  width: unset;
  margin: auto; /* We forced 'block' image in CK config, so images are centered in editor => we need to reproduce this here #1390 */
}

.ck-content figure.image.image-style-align-left {
  float: left !important;
  margin-right: 1em;
}

.ck-content figure.image.image-style-align-right {
  float: right !important;
  margin-left: 1em;
}

.content p:not(:last-child) {
  margin-bottom: 0 !important;
  margin-top: 0rem !important;
}

.ck-content .raw-html-embed {
  display: flex;
  justify-content: center;
}
