.support-cta {
  padding-block: clamp(2rem, 4vw, 4rem);
}

.support-cta__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.65fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(1.35rem, 4vw, 3rem);
  border: 1px solid rgba(var(--color-primary-rgb), 0.12);
  border-radius: 1.4rem;
  background:
    radial-gradient(
      circle at 88% 20%,
      rgba(var(--color-primary-rgb), 0.12),
      transparent 18rem
    ),
    linear-gradient(
      120deg,
      rgba(255, 238, 168, 0.38),
      rgba(var(--color-primary-rgb), 0.08)
    );
}

.support-cta__content {
  display: grid;
  gap: 1rem;
}

.support-cta__content h2 {
  max-width: 15ch;
  color: #111111;
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.04;
}

.support-cta__content p {
  max-width: 46rem;
  margin: 0;
  color: rgba(17, 17, 17, 0.66);
  font-size: 1.05rem;
  line-height: 1.65;
}

.support-cta__content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 3.1rem;
  padding: 0.8rem 1.25rem;
  border-radius: 0.65rem;
  background: #111111;
  color: #ffffff;
  font-weight: 900;
}

.support-cta__media {
  justify-self: center;
}

.support-cta__media img {
  display: block;
  width: min(100%, 22rem);
  height: auto;
}

@media (max-width: 780px) {
  .support-cta__shell {
    grid-template-columns: 1fr;
    border-radius: 1rem;
    text-align: center;
  }

  .support-cta__content {
    justify-items: center;
  }

  .support-cta__content h2 {
    max-width: 100%;
  }
  .support-cta__content a {
    justify-self: center;
  }

  .support-cta__media img {
    max-height: 13rem;
    object-fit: contain;
  }
}
