
/* Remove ALL spacing when disabled (including li, rows, columns, figure, img) */

.widget_media_image.no-spacing,
.widget_media_image.no-spacing li,
.widget_media_image.no-spacing .row,
.widget_media_image.no-spacing [class^="col-"],
.widget_media_image.no-spacing [class*=" col-"],
.widget_media_image.no-spacing figure,
.widget_media_image.no-spacing img {
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover;
}



/* Make widget fill parent row/column */
.content-sidebar.row {
    display: flex;
    align-items: stretch;
}

/* li fills the column height and width */
.content-sidebar.row > .widget_media_image {
    width: 100%;
    height: 100%;
    display: flex;
}

/* figure fills li */
.content-sidebar.row > .widget_media_image figure {
    width: 100%;
    height: 100%;
    margin: 0;
}

/* image fills figure */
.content-sidebar.row > .widget_media_image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

/* Default spacing (enabled) */
.widget_media_image.has-spacing {
    padding: 16px;
    margin-bottom: 24px;
}


.no-spacing {
    padding: 0px;
    margin-bottom: 0px;
}

