/* =============================================================================
   Hancock Veterans — Global App Styles
   Applied to all vetapp pages via hva_global_assets() in app-assets.php.
   Loaded at priority 1000, after the asset strip, so !important overrides
   inline <style> blocks that individual templates output.
   ============================================================================= */

/* ── Background image ────────────────────────────────────────────────────── */
/* Replaces the solid #f0f2f7 set in each template with the hero image.
   The rgba overlay recreates the same visual weight as the original
   opacity: 0.35 on .hve-list::before (1 - 0.35 = 0.65 cover opacity).      */
body {
    background:
        linear-gradient(rgba(240, 242, 247, 0.65), rgba(240, 242, 247, 0.65)),
        url('https://hancockveterans.com/wp-content/uploads/2025/01/iStock-1407859364-scaled.jpg')
        center / cover fixed !important;
}
