.referral-prize-banner {
  margin: 0 0 64px;
  padding: clamp(30px, 5vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, .9fr);
  gap: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 0%, rgba(217,255,98,.25), transparent 22rem),
    rgba(255,255,255,.66);
  box-shadow: var(--shadow);
}

.referral-prize-banner h2 {
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 4.8vw, 4.2rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.referral-prize-banner > div > p:not(.card-kicker) {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.62;
}

.referral-prize-banner > div > a {
  color: var(--accent);
  font-weight: 760;
  text-underline-offset: 4px;
}

.referral-prize-banner dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
}

.referral-prize-banner dl div {
  min-height: 126px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-strong);
}

.referral-prize-banner dl div:last-child {
  border-right: 0;
}

.referral-prize-banner dt {
  color: var(--muted);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.referral-prize-banner dd {
  margin: 0;
  color: var(--accent);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 860;
  line-height: .9;
  letter-spacing: -.065em;
}

.referral-prize-note {
  grid-column: 1 / -1;
  margin: -18px 0 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}

.referral-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .referral-prize-banner {
    grid-template-columns: 1fr;
  }

  .referral-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .referral-prize-banner {
    padding: 28px 22px;
  }

  .referral-prize-banner dl {
    grid-template-columns: 1fr;
  }

  .referral-prize-banner dl div {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .referral-prize-banner dl div:last-child {
    border-bottom: 0;
  }

  .referral-steps {
    grid-template-columns: 1fr;
  }
}
