/* Text-editor widgets that rendered bare text are now core/paragraph blocks: the
   <div> was swapped for the <p> itself, so no element was added to the DOM. A <p>
   brings a default 1em block margin that the <div> did not have, and the design
   system sets no margin on these classes, so it is zeroed here to keep the box
   model identical. */
.elementor-151 p.elementor-widget {
	margin-block-start: 0;
	margin-block-end: 0;
}

/* Image widgets are now core/image: the <figure> replaces the widget <div>, so no
   element was added. A <figure> carries a default block margin and inline padding
   that the <div> did not, so both are zeroed to keep the box model identical. */
.elementor-151 figure.elementor-widget {
	margin: 0;
	padding: 0;
}
