/**
 * Per-page hero background position overrides.
 *
 * Avada TB header heroes use CSS variables (--awb-background-image, etc.)
 * on .fusion-tb-header > .fusion-fullwidth. Optional .bb-hero-bg still supported.
 * Blog post heroes use object-position on .bb-blog-single__hero img.
 */

body.bb-hero-bg-pos-top .fusion-tb-header > .fusion-fullwidth.fullwidth-box,
body.bb-hero-bg-pos-top .fusion-tb-page-title-bar > .fusion-fullwidth.fullwidth-box,
body.bb-hero-bg-pos-top .bb-hero-bg {
	--awb-background-position: center top !important;
	background-position: center top !important;
}

body.bb-hero-bg-pos-top .bb-blog-single__hero img {
	object-position: center top;
}

body.bb-hero-bg-pos-bottom .fusion-tb-header > .fusion-fullwidth.fullwidth-box,
body.bb-hero-bg-pos-bottom .fusion-tb-page-title-bar > .fusion-fullwidth.fullwidth-box,
body.bb-hero-bg-pos-bottom .bb-hero-bg {
	--awb-background-position: center bottom !important;
	background-position: center bottom !important;
}

body.bb-hero-bg-pos-bottom .bb-blog-single__hero img {
	object-position: center bottom;
}
