.cta {
  background: var(--base-dark);
  position: relative;
  min-height: 514px;
  padding: 5rem 0 6rem;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}
.cta:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(to bottom, #191919 0%, #272c2f 48%, rgba(40, 40, 40, 0) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  gap: 1rem;
  color: var(--text-light);
}
.cta-content-heading {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin: 0 0 1rem;
}
.cta-content-text img {
  width: 20px;
  aspect-ratio: 1;
}
.cta-content-text {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media all and (min-width: 768px) {
  .cta {
    background-position: right center;
    min-height: 0;
  }
  .cta:before {
    width: 80%;
    height: 100%;
    background: linear-gradient(to right, #191919 0%, #272c2f 48%, rgba(40, 40, 40, 0) 100%);
  }
  .cta-content {
    max-width: 600px;
  }
  .cta-content-text {
    max-width: 475px;
  }
}
@media all and (min-width: 1024px) {
  .cta {
    padding: 6rem 0;
  }
  .cta-content-heading {
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin: 0 0 1.5rem;
  }
}/*# sourceMappingURL=global-cta.css.map */