/* =========================================================
   About CTA Banner – Text Left, Image BG, 90% White Overlay
   ========================================================= */

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

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

  display: flex;
  align-items: center;
}

/* background image */
.gc-about-cta__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  background: center / cover no-repeat;
  transform: scale(1.02);
}

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

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

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

.gc-about-cta__content{
  max-width: 720px;
}

.gc-about-cta__title{
  margin: 0 0 var(--space-xs);
  color: var(--gc-dark-blue);
}

.gc-about-cta__text{
  margin: 0 0 var(--space-md);
}

.gc-about-cta__btn{
  padding-left: 22px;
  padding-right: 22px;
}

.gc-about-cta__arrow{
  display:inline-block;
  transition: transform .18s ease;
}
.gc-about-cta__btn:hover .gc-about-cta__arrow{
  transform: translateX(3px);
}

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