/* Hero Insights Banner Styles - Modernized */
.hero-banner {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center center;
  background-size: cover;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 6px 32px rgba(34,64,142,0.12); /* Consider using a variable for shadow color if defined */
  overflow: hidden;
  margin-bottom: 48px;
  max-width: 100vw;
}
.hero-banner .hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(120deg, var(--hr-primary, #0d47a1) 0%, rgba(247,200,115,0.32) 100%);
  z-index: 1;
}
.hero-banner .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 6vw 56px 6vw;
  max-width: 1200px;
}
.hero-banner h1 {
  font-family: var(--hr-font, 'Playfair Display', serif);
  font-size: 3.4rem;
  color: var(--hr-on-primary, #fff);
  margin: 0;
  text-shadow: 0 2px 18px rgba(0,0,0,0.22);
  letter-spacing: 1.2px;
  font-weight: 800;
}
.hero-banner .hero-desc {
  font-size: 1.35rem;
  color: var(--hr-on-primary, #fff);
  margin-top: 18px;
  margin-bottom: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.10);
  font-family: var(--hr-font, 'Inter', sans-serif);
  font-weight: 400;
}
@media (max-width: 900px) {
  .hero-banner {
    min-height: 180px;
    border-radius: 0 0 24px 24px;
    margin-bottom: 28px;
  }
  .hero-banner .hero-content {
    padding: 36px 4vw 28px 4vw;
    max-width: 98vw;
  }
  .hero-banner h1 {
    font-size: 2.2rem;
  }
  .hero-banner .hero-desc {
    font-size: 1.05rem;
    margin-top: 10px;
  }
}
@media (max-width: 600px) {
  .hero-banner {
    min-height: 100px;
    border-radius: 0 0 12px 12px;
    margin-bottom: 16px;
  }
  .hero-banner .hero-content {
    padding: 18px 2vw 12px 2vw;
  }
  .hero-banner h1 {
    font-size: 1.2rem;
  }
  .hero-banner .hero-desc {
    font-size: 0.92rem;
  }
}
