/**
 * Safe image sizing for WordPress posts / news.
 * Does NOT strip theme CSS — only constrains content images.
 */

.single-post .entry-content img,
.single-post .post-content img,
.single-post .wp-block-image img,
.single-post article img,
.blog .entry-content img,
.archive .entry-content img,
.post-type-post .entry-content img,
.post-type-post .post-content img,
.post-type-post .wp-block-image img,
.post-type-post .wp-block-image figure img {
	max-width: 100%;
	height: auto;
}

.entry-content .wp-block-image figcaption,
.post-content .wp-block-image figcaption {
	max-width: 100%;
}
