/**
 * GRO-472 remediation — inline style extraction
 * Scope: about-hero / meet-dr-steph / meet-team blocks
 * (see blocks/hp-about-hero.php, blocks/hp-about-meet-dr-steph.php, blocks/hp-about-meet-team.php)
 *
 * This file only reproduces the exact visual result that the removed
 * inline `style=""` attributes previously produced. It does not add
 * any new global/unscoped selectors.
 */

/* blocks/hp-about-hero.php — dynamic center bg image, now driven via CSS custom property set inline per-instance */
.about-hero__center {
    background-image: var(--about-hero-bg-image);
}

/* blocks/hp-about-meet-dr-steph.php — dynamic section bg image, now driven via CSS custom property set inline per-instance */
.meet-dr {
    background-image: var(--meet-dr-bg-image);
}

/* blocks/hp-about-meet-team.php — dynamic per-card bg image, now driven via CSS custom property set inline per-instance */
.meet-team__card {
    background-image: var(--meet-team-card-bg-image);
}
