.offer-cta__panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 92% 15%, rgba(255, 198, 0, 0.3), transparent 24rem),
    linear-gradient(135deg, #652886 0%, #46155f 100%);
  box-shadow: 0 24px 60px rgba(56, 17, 77, 0.22);
}

.offer-cta__panel::before,
.offer-cta__panel::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.offer-cta__panel::before {
  top: -7rem;
  right: -4rem;
  width: 18rem;
  height: 18rem;
}

.offer-cta__panel::after {
  right: 7rem;
  bottom: -8rem;
  width: 13rem;
  height: 13rem;
}

.offer-cta__eyebrow {
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offer-cta__description {
  max-width: 48rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.offer-cta .btn-secondary {
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(4, 0, 11, 0.2);
}

.offer-cta .btn-secondary:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

@media (max-width: 575.98px) {
  .offer-cta__panel {
    padding: 2rem 1.25rem;
    border-radius: 1rem;
  }

  .offer-cta .btn-secondary {
    width: 100%;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
    white-space: normal;
  }
}
