/* ========================== */
/* CKEditor 5 Frontend Styles */
/* ========================== */

/* General figure/image */
.prose figure.image {
    display: block;
    margin: 2rem auto;
}

.prose figure.image img {
    height: auto;
    border-radius: 1rem;
    max-width: 100%; /* respeta inline style de CKEditor si existe */
}

/* Image alignment */
.prose .image-style-align-left {
    float: left;
    margin-right: 1.5rem;
    max-width: 50%;
}

.prose .image-style-align-right {
    float: right;
    margin-left: 1.5rem;
    max-width: 50%;
}

.prose .image-style-align-center {
    float: none;
    margin-left: auto;
    margin-right: auto;
}

/* Respect resized images */
.prose figure.image_resized {
    max-width: 100%;
}

/* Headings */
.prose h1 { font-size: 2.25rem; line-height: 2.5rem; font-weight:700; }
.prose h2 { font-size: 1.875rem; font-weight:700; }
.prose h3 { font-size: 1.5rem; font-weight:700; }

/* Lists */
.prose ul { list-style-type: disc; padding-left: 1.5rem; }
.prose ol { list-style-type: decimal; padding-left: 1.5rem; }
.prose li { margin-top: 0.5rem; }

Clear floats
.prose::after { content:""; display:table; clear:both; }
