/*
    the html editor allows them to paste images in ....
    need to restrict the size or large ones just overflow
*/
figure.image > img{
    width: 100%;
}
figure.image.image-style-side{
    width: 33%;
    float: left;
    margin-left: 0;
    margin-top: 0;
}
@media all and (max-width: 768px){
    figure.image.image-style-side {
        width: 50%;
    }
}
@media screen and (max-width: 450px){
    figure.image.image-style-side {
        width: 100%;
        margin-right: 0;
    }
}
