/* ===========================================
   BLOG HERO SECTION
   Seamless integration with shared background
   =========================================== */

#blog-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10rem;
  padding-bottom: 6rem;
  /* Completely transparent - shared background shows through */
  background: transparent;
  color: white;
  overflow: hidden;
}

/* Content layering - above grid, below nothing */
#blog-hero>.container {
  position: relative;
  z-index: 10;
}

/* Title styling */
#blog-hero h1 {
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
}

/* Description styling */
#blog-hero p {
  color: rgba(199, 210, 254, 0.85);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

/* Button shadow enhancement */
#blog-hero .btn--cta-demo {
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.35);
}

@media (max-width: 768px) {
  #blog-hero {
    min-height: 60vh;
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  #blog-hero h1 {
    font-size: 2.75rem;
  }
}