
/* =========================================================
   HOME GLOBAL INTEGRATION V4
   PRECISE FIX: approved background image coverage only.

   Diagnosis:
   Original Home master uses background-size:100% auto.
   Because approved-background.png is 3:2, narrowing the browser
   also shortens the rendered background. Its bottom edge can then
   enter the visible viewport, revealing the flat #0d0d0c body
   background as a hard dark rectangle.

   V4 keeps the exact image, position and fixed behaviour but makes
   it cover the viewport continuously.
   ========================================================= */

html{
  background:#0d0d0c;
}

body{
  background-color:#0d0d0c !important;
  background-image:url("assets/approved-background.png") !important;
  background-repeat:no-repeat !important;
  background-position:center center !important;
  background-size:cover !important;
  background-attachment:fixed !important;
}

/* No hero/layout override in V4. */
