/* ============================================
   MODERN OVERRIDES — Homepage hero card centering
   Scoped to body.home (index.php only)
   ============================================ */

body.home .hero {
  position: relative;
}

body.home .hero .hero-panel {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  z-index: 2;
 
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* hero-right must not establish containing block so hero-panel centers in full hero */
body.home .hero .hero-right {
  position: static;
}
