/* Hero — None (hero_style: none). ACF choice label is "None (No Title, No
   Hero)" (acf-json/group_hero.json) — GeneratePress's own title AND
   featured image are both suppressed for this style (see
   shew_maybe_disable_default_gp_title() / shew_maybe_disable_default_gp_
   featured_image() in inc/hero.php), so .entry-content is the first thing
   that actually renders on the page. Scoped to body.hero-style-none so
   'default' — which has its own independent Margin/Typography token set on
   H1.entry-title — is never affected by this file. */

/* GP (core or Premium's Page Header module) still renders its own featured
   image ahead of this style — unhooking it in PHP doesn't reach Premium's
   render path, so hide it here too (same pattern as hero-default.css /
   hero-v1.css). */
#SD.hero-style-none .page-header-image
{
	display: none;
}

#SD.hero-style-none .entry-content
{
	margin-top: var(--hero-none-margin-top, 0);
}

/* Per-page override — "Remove Top Margin" toggle (group_hero.json,
   hero_none_zero_margin_top). Wins over the sitewide token above by source
   order, no !important needed. */
#SD.hero-style-none.hero-none-zero-margin .entry-content
{
	margin-top: 0;
}
