#cta-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#cta-banner .content-wrapper {
  color: var(--color-white);
  max-width: 40rem;
}

#cta-banner .container {
  position: relative;
}

#cta-banner .buttons {
  margin: 0;
}

#cta-banner .container:has(img):before {
  content: "";
  background: var(--color-navy);
  opacity: 0.6;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

#cta-banner .content-wrapper,
#cta-banner .buttons {
  position: relative;
  z-index: 9;
}

#cta-banner .button:hover {
  color: var(--color-white);
}

@media (width > 800px) {
  #cta-banner .grid-2 {
    grid-template-columns: auto auto;
    align-items: center;
  }
  #cta-banner .buttons {
    justify-content: flex-end;
  }
}
