@charset "UTF-8";
/* Referral — Figma 13192:7399.
   Figma stacks a tinted gradient over a solid white fill; reproduced as two
   layered backgrounds so the tint keeps its alpha. */
.referral_banner {
  background: #ffffff;
  padding: 80px 0;
}
.referral_banner * {
  color: inherit;
}
.referral_banner__panel {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 48px;
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(159, 225, 203, 0.38) 0%, rgba(111, 176, 221, 0.26) 50%, rgba(175, 169, 236, 0.48) 100%), linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
}
.referral_banner__copy {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.referral_banner__title {
  margin: 0;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  color: #1a1a22;
}
.referral_banner__desc {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #23232e;
}
.referral_banner__cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 48px;
  padding: 0 16px;
  border-radius: 10px;
  background: #614efa;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.referral_banner__cta:hover {
  background: #4a3bbe;
  color: #ffffff;
}
@media screen and (max-width: 900px) {
  .referral_banner {
    padding: 56px 0;
  }
  .referral_banner__panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
  }
}
@media screen and (max-width: 767px) {
  .referral_banner__panel {
    padding: 24px;
    border-radius: 20px;
  }
  .referral_banner__cta {
    width: 100%;
  }
}
