/* css/ckeditor-frontend.css */
/* CKEditor Image Styles for Frontend */
.image-style-side,
.image-style-align-left {
    float: left;
    margin: 0 20px 15px 0;
    max-width: 50%;
    height: auto;
}

.image-style-align-right {
    float: right;
    margin: 0 0 15px 20px;
    max-width: 50%;
    height: auto;
}

.image-style-full {
    display: block;
    width: 100%;
    margin: 20px 0;
    height: auto;
}

.content-text::after,
.page-content::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    .image-style-side,
    .image-style-align-left,
    .image-style-align-right {
        float: none;
        max-width: 100%;
        margin: 15px 0;
        display: block;
    }
}