/* Hide duplicate in-content featured images on archives.
 *
 * The template already renders a featured image above the excerpt.
 * Some post bodies start with the same `.post-featured-img` block,
 * which causes a duplicate image on listing pages.
 *
 * Scope this to archive listings only:
 * - Category News: body.category-news
 * - Month archive: body.archive.date
 */

body.category-news #post-area .article-content-wrap .post-featured-img,
body.archive.date #post-area .article-content-wrap .post-featured-img {
	display: none;
}

/* Ensure News page header (page-id-2034) matches original height */
body.page-id-2034 #page-header-wrap,
body.page-id-2034 #page-header-bg {
	height: 200px;

}

@media (max-width: 768px) {
	body.page-id-2034 #page-header-wrap,
	body.page-id-2034 #page-header-bg {
		height: 100px;
	}
}