
/* 2025.05.29 This was inserted to override FSE control which was nullifying our figure-align component. 
   It remains to be seen if this will cause ill effects elsewhere. */
.wp-block-image .components-resizable-box__container img{
   display: inline-block;

}


.wp-block-column{
     
}
.cm-fit-image {
    float: none !important;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Ensure the resizable container doesn't constrain - FSE Editor */
.components-resizable-box__container.cm-fit-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    display: block;
    box-sizing: border-box;
}

/* Ensure figure itself takes full width */
figure.size-cm-percent-fit,
.wp-block-image.size-cm-percent-fit {
    width: 100%;
    max-width: 100%;
    height: auto;
}
 
