/*
Theme Name: Salient Child
Description: Child theme for Salient. Homepage LCP: keep the ATF heading visible before Nectar JS.
Author: SiteCare
Template: salient
Version: 1.0.0
*/

/*
 * Hero H1 is hidden until deferred init.js / Fitty run:
 * .wpb_column.has-animation { opacity: 0; }
 * .nectar-split-heading[data-has-fit-text="true"]:not(.fitty-fit) { opacity: 0 !important; }
 * That delays LCP. Scope to the homepage top-level heading only.
 */
body.home .top-level .wpb_column.has-animation:has(.nectar-split-heading) {
	opacity: 1;
}

body.home .top-level .nectar-split-heading[data-has-fit-text="true"]:not(.fitty-fit) {
	opacity: 1 !important;
}
