/* =========================================================
   Join Hero Section
   File: /assets/css/join-us/join_hero.css
   - EXACT pattern ng Resources
   - Background cover image + white overlay (80%)
   ========================================================= */

.gc-join-hero{
  position: relative;
  isolation: isolate;
  overflow: hidden;

  background-image: var(--gc-join-hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* 🔑 Required para makita ang background image */
  min-height: 320px;
}

/* White overlay at 80% */
.gc-join-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255,255,255,.90);
  z-index: 0;
}

.gc-join-hero .container{
  position: relative;
  z-index: 1;
}

/* Content block (LEFT SIDE) – SAME AS RESOURCES */
.gc-join-hero__content{
  max-width: 760px;
  padding: var(--space-xl) 0;
}

/* Title + text (inherits global typography) */
.gc-join-hero__title{
  color: var(--gc-dark-blue);
  margin: 0 0 var(--space-xs);
}

.gc-join-hero__text{
  margin: 0;
  max-width: 720px;
  color: var(--gc-muted);
}

/* Responsive spacing tweaks */
@media (max-width: 900px){
  .gc-join-hero{
    min-height: 260px;
  }

  .gc-join-hero__content{
    max-width: 100%;
    padding: var(--space-lg) 0;
  }
}
