/**
 * Shared TinyMCE / frontend content CSS for TPI WYSIWYG fields.
 * Loaded in the editor iframe (body.tpi-mce-content) and on the frontend (.tpi-mce-content).
 * Mirrors WordPress wp-content.css alignment + Hello Elementor classic-editor paragraph spacing.
 */

html .tpi-mce-content {
	clear: both;
}

html .tpi-mce-content::after {
	content: "";
	display: table;
	clear: both;
}

html .tpi-mce-content p {
	margin: 0;
	margin-block-end: 0.75rem;
	padding: 0;
}

html .tpi-mce-content p:empty {
	min-height: 1em;
}

html .tpi-mce-content h1,
html .tpi-mce-content h2,
html .tpi-mce-content h3,
html .tpi-mce-content h4,
html .tpi-mce-content h5,
html .tpi-mce-content h6 {
	margin: 0.67em 0;
	padding: 0;
}

html .tpi-mce-content h1:empty,
html .tpi-mce-content h2:empty,
html .tpi-mce-content h3:empty,
html .tpi-mce-content h4:empty,
html .tpi-mce-content h5:empty,
html .tpi-mce-content h6:empty {
	min-height: 1em;
}

html .tpi-mce-content img {
	height: auto;
	max-width: 100%;
}

/* TinyMCE Align center / left / right / none — must match editor toolbar */
html .tpi-mce-content .aligncenter,
html .tpi-mce-content img.aligncenter,
html .tpi-mce-content .wp-caption.aligncenter,
html .tpi-mce-content figure.aligncenter {
	display: block;
	float: none;
	margin-left: auto;
	margin-right: auto;
}

/* ACF/TinyMCE often wraps the image in a span; keep center alignment */
html .tpi-mce-content p:has(img.aligncenter) {
	text-align: center;
}

html .tpi-mce-content span:has(> img.aligncenter) {
	display: block;
	text-align: center;
}

html .tpi-mce-content .alignleft,
html .tpi-mce-content img.alignleft,
html .tpi-mce-content .wp-caption.alignleft,
html .tpi-mce-content figure.alignleft {
	float: left;
	margin: 0.5em 1em 0.5em 0;
}

html .tpi-mce-content .alignright,
html .tpi-mce-content img.alignright,
html .tpi-mce-content .wp-caption.alignright,
html .tpi-mce-content figure.alignright {
	float: right;
	margin: 0.5em 0 0.5em 1em;
}

html .tpi-mce-content .alignnone,
html .tpi-mce-content img.alignnone {
	float: none;
	margin: 0.5em 0;
}

html .tpi-mce-content .wp-caption {
	max-width: 100%;
}

html .tpi-mce-content .wp-caption-text,
html .tpi-mce-content figcaption {
	font-size: 0.875em;
	margin-top: 0.5em;
	text-align: center;
}
