.gaJoinCard{
  border-radius: 6px;
  overflow: hidden;
}

/* subtle warm background like the mock */
.gaJoinCard__inner{
  padding: 20px;
  background: linear-gradient(180deg, rgba(244,178,58,.18), rgba(244,178,58,.06));
}

.gaJoinCard__title{
  margin: 0 0 8px 0;
}

.gaJoinCard__sub{
  margin: 0 0 14px 0;
  max-width: 46ch;
}

/* checklist */
.gaJoinCard__list{
  margin: 0 0 16px 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.gaJoinCard__item{
  position: relative;
  padding-left: 26px;
  line-height: 1.35;
}

/* check icon */
.gaJoinCard__item:before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  opacity: .9;
}

/* buttons */
.gaJoinCard__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 6px;
}

.gaJoinCard__fineprint{
  margin-top: 10px;
  opacity: .85;
}

/* mobile niceties */
@media (max-width: 480px){
  .gaJoinCard__actions .ipsButton{
    width: 100%;
    justify-content: center;
  }
}

