.full-cta {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.full-cta-wrapper {
  max-width: 800px;
  position: relative;
  z-index: 2;
}
.full-cta-text {
  text-align: center;
}
.full-cta-button {
  margin-top: 2rem;
  text-align: center;
}
.full-cta.light {
  background: var(--orange);
}
.full-cta.light::after {
  content: "";
  height: 120%;
  width: 60%;
  max-width: 30%;
  background: radial-gradient(#ffb74d, rgba(255, 183, 77, 0) 70%);
  position: absolute;
  top: -10%;
  left: -12.5%;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  opacity: 1;
}
.full-cta.light::before {
  content: "";
  height: 120%;
  width: 60%;
  max-width: 30%;
  background: radial-gradient(#ffb74d, rgba(255, 183, 77, 0) 70%);
  position: absolute;
  top: -10%;
  right: -12.5%;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  opacity: 1;
}
.full-cta.light a:not(.button) {
  color: var(--black);
}
.full-cta.dark {
  background: var(--navy-gradient);
  color: white;
}
.full-cta.dark a:not(.button) {
  color: white;
}
