/* ===== hero.css — banner hero ===== */

.hero-banner {
  padding: 48px 0 5px;
  text-align: center;
}
.hero-banner .container {
  max-width: 1280px;
}
.hero-banner-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
}
.hero-banner-bg {
  position: absolute;
  inset: 0;
  background: url("../images/people.png") center / cover no-repeat;
  filter: blur(2px) brightness(0.3);
  transform: scale(1.04);
  z-index: 0;
}
.hero-banner-content {
  position: relative;
  z-index: 1;
  padding: 180px 56px 170px;
}
.hero-banner .hero-title {
  color: #fff;
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 0 auto 2rem;
  max-width: none;
}
.hero-banner .hero-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  max-width: 700px;
  margin: 0 auto 0.5rem;
  font-weight: 400;
}
.hero-cta {
  display: inline-block;
  margin-top: 32px;
  padding: 16px 40px;
  background: #2a6cb8;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 999px;
  transition:
    background 0.15s,
    transform 0.15s;
}
.hero-cta:hover {
  background: #1f5a9a;
  transform: translateY(-1px);
}

@media (max-width: 800px) {
  .hero-banner {
    padding: 32px 0 48px;
  }
  /* Full-bleed banner image: drop the container gutter and card radius */
  .hero-banner .container {
    padding: 0;
  }
  .hero-banner-card {
    border-radius: 0;
  }
  .hero-banner-content {
    padding: 56px 24px 48px;
  }
  .hero-banner .hero-title {
    font-size: 45px;
  }
  .hero-banner .hero-sub {
    font-size: 16px;
  }
}
