/* =========================================================
   About Banner Hero – Text Only Left
   File: /assets/css/about-us/about_hero.css
   ========================================================= */

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

  padding: clamp(56px, 7vw, 120px) 0;
  min-height: clamp(420px, 55vh, 680px);

  display: flex;
  align-items: center;
}

/* background image */
.gc-about-hero__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  background: center / cover no-repeat;
}

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

/* content above overlay */
.gc-about-hero .container{
  position: relative;
  z-index: 2;
}

.gc-about-hero__inner{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.gc-about-hero__content{
  max-width: 760px;
}

.gc-about-hero__title{
  margin: 0 0 var(--space-xs);
  color: var(--gc-dark-blue);
  line-height: 1.1;
}

.gc-about-hero__text{
  margin: 0;
  color: var(--gc-muted);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 640px){
  .gc-about-hero{
    min-height: auto;
    padding: clamp(40px, 8vw, 72px) 0;
  }
  .gc-about-hero__content{
    max-width: 100%;
  }
}
