.gh-cta,
.gh-cta *{box-sizing:border-box}
.gh-cta{
  position:relative;
  width:100%;
  min-height:var(--gh-h-desktop,170px);
  background-image:var(--gh-bg-desktop);
  background-size:cover;
  background-position:var(--gh-pos-desktop,center center);
  background-repeat:no-repeat;
  overflow:hidden;
  font-family:var(--gh-font,Poppins,sans-serif);
  isolation:isolate;
}
.gh-cta__overlay{position:absolute;inset:0;background:var(--gh-overlay,rgba(0,0,0,.18));z-index:0;pointer-events:none}
.gh-cta__container{
  position:relative;z-index:1;
  max-width:var(--gh-container,1440px);
  width:100%;min-height:var(--gh-h-desktop,170px);
  margin:0 auto;padding:20px var(--gh-pad-desktop,32px);
  display:flex;align-items:var(--gh-valign,center);justify-content:space-between;gap:var(--gh-btn-gap,24px);
}
.gh-cta__copy{max-width:var(--gh-text-width,650px);min-width:0}
.gh-cta__title{margin:0 0 2px;color:var(--gh-title-color,#fff);font-size:var(--gh-title-desktop,28px);font-weight:var(--gh-title-weight,700);line-height:1.08;letter-spacing:-.02em}
.gh-cta__description{margin:0;color:var(--gh-desc-color,#fff);font-size:var(--gh-desc-desktop,15px);font-weight:var(--gh-desc-weight,400);line-height:1.28}
.gh-cta__button{
  flex:0 0 auto;display:inline-flex;align-items:center;justify-content:center;gap:14px;
  padding:var(--gh-btn-pady,16px) var(--gh-btn-padx,18px);
  min-width:150px;
  background:var(--gh-btn-bg,#9bde16);color:var(--gh-btn-color,#000);
  text-decoration:none!important;border-radius:var(--gh-btn-radius,0);border:0;
  font-size:var(--gh-btn-size,12px);font-weight:var(--gh-btn-weight,700);line-height:1;text-transform:uppercase;
  transition:background-color .22s ease,color .22s ease,transform .22s ease;
}
.gh-cta__button:hover,.gh-cta__button:focus{background:var(--gh-btn-bg-hover,#fff);color:var(--gh-btn-color-hover,#000);transform:translateY(-1px)}
.gh-cta__arrow{width:20px;height:20px;display:block;transition:transform .22s ease}
.gh-cta__button:hover .gh-cta__arrow{transform:translateX(3px)}

@media (max-width:1024px){
  .gh-cta{min-height:var(--gh-h-tablet,190px);background-image:var(--gh-bg-tablet);background-position:var(--gh-pos-tablet,center center)}
  .gh-cta__container{min-height:var(--gh-h-tablet,190px);padding-left:var(--gh-pad-tablet,28px);padding-right:var(--gh-pad-tablet,28px)}
  .gh-cta__title{font-size:var(--gh-title-tablet,26px)}
  .gh-cta__description{font-size:var(--gh-desc-tablet,15px)}
}
@media (max-width:767px){
  .gh-cta{min-height:var(--gh-h-mobile,330px);background-image:var(--gh-bg-mobile);background-position:var(--gh-pos-mobile,center center)}
  .gh-cta__container{min-height:var(--gh-h-mobile,330px);padding:30px var(--gh-pad-mobile,22px);flex-direction:column;justify-content:center;align-items:var(--gh-mobile-flex,flex-start);text-align:var(--gh-mobile-align,left);gap:22px}
  .gh-cta__copy{max-width:100%;width:100%}
  .gh-cta__title{font-size:var(--gh-title-mobile,28px);line-height:1.08}
  .gh-cta__description{font-size:var(--gh-desc-mobile,15px);line-height:1.35;margin-top:6px}
  .gh-cta__button{align-self:var(--gh-mobile-flex,flex-start)}
}
