/**
 * ACE Blocks - base styles (scoped).
 *
 * This is a light reset intended to minimize theme CSS influence on ACE custom
 * blocks without affecting the rest of the site.
 */

/* predictable sizing */
[class*="wp-block-ace-blocks-"],
[class*="wp-block-ace-blocks-"] * {
	box-sizing: border-box;
}

/* responsive media */
[class*="wp-block-ace-blocks-"] img,
[class*="wp-block-ace-blocks-"] video,
[class*="wp-block-ace-blocks-"] svg,
[class*="wp-block-ace-blocks-"] canvas {
	max-width: 100%;
	height: auto;
}

/* neutralize common theme margins; blocks can re-apply spacing intentionally */
[class*="wp-block-ace-blocks-"] :where(h1, h2, h3, h4, h5, h6, p, figure, blockquote) {
	margin: 0;
}

[class*="wp-block-ace-blocks-"] :where(ul, ol) {
	margin: 0;
	padding-left: 1.25em;
}

