/*
 * rich-text.css — Drupal CKEditor image alignment classes only.
 *
 * All editorial typography (headings, paragraphs, links, lists, blockquotes,
 * code, tables, figure, figcaption) comes from the .content-body class defined
 * in theme/style.css. Only put Drupal-specific CKEditor output classes here.
 */

.rich-text .image-style-align-left   { @apply float-left mr-6 mb-4 clear-left; }
.rich-text .image-style-align-right  { @apply float-right ml-6 mb-4 clear-right; }
.rich-text .image-style-align-center { @apply mx-auto block; }
.rich-text .image-style-side         { @apply float-right ml-6 mb-4 max-w-[50%]; }
.rich-text .align-left               { @apply float-left mr-6 mb-4; }
.rich-text .align-right              { @apply float-right ml-6 mb-4; }
.rich-text .align-center             { @apply block mx-auto; }
