/***********************
* WYSIWYG
***********************/
.WYSIWYG {}
.WYSIWYG>p {padding: 5px 0;}
.WYSIWYG img {padding: .5rem; border-radius: 1rem; object-fit:cover; max-width: 600px; max-height: 500px;box-shadow: 1px 0px 6px -2px rgba(34, 60, 80, 0.2);width: 100%;}
.WYSIWYG>ol:not([class]), .WYSIWYG>ul:not([class]) {padding-left: 0;  padding-right: 2.5em; display:table;}
.WYSIWYG>ul:not([class]) li, .WYSIWYG ol:not([class])>li {transform: translateX(2.5em);animation: fixlists 1s;}
@keyframes fixlists {
    0% {text-indent: -0.001em;}
    100% {text-indent: 0;}
}
