/* Centers this plugin's generated/attached featured image on the front end.
   Scoped to plugin-touched singular posts only (see Plugin::enqueue_frontend()),
   and only targets the most common theme markup patterns for a featured
   image, so it stays a best-effort enhancement rather than a global override. */
.aihpp-generated-post .wp-post-image,
.aihpp-generated-post .post-thumbnail img,
.aihpp-generated-post .entry-thumbnail img,
.aihpp-generated-post .featured-image img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	float: none;
}
