.wp-block-image {
    &.is-style-full-width {
        width: 100%;
        height: auto;

        &.wp-lightbox-container {
            overflow: hidden;

            img {
                min-width: 100% !important;
                height: 373px !important;
                object-fit: cover !important;
                transition: all 0.25s ease-in-out;
            }

            &:hover {
                img {
                    transform: scale(1.1);
                }
            }
        }
    }
}