/*** HELPLINES CALL CARD ****/

.support-cards .support-cards-leadin {
  margin-bottom: 2.5rem;
}

.support-cards .support-cards-leadin h4 {
  color: var(--purple-brite);
}

.support-cards .number-title {
  font-weight: 400;
  margin-bottom: 0.88rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: white;
}

.support-cards .call-title {
  font-weight: 500;
  margin-bottom: 0.88rem;
  font-size: 1rem;
}

.support-cards .support-cards-list {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 0.66rem;
  gap: 0.66rem;
}

.support-cards .call-card a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.66rem;
  min-height: 13.88rem;
}

.support-cards .call-card * > *,
.support-cards h5 {
  color: white;
}

.support-cards p {
  font-size: clamp(0.77rem, 2vw, 0.88rem);
  font-size: var(--ts-small-body);
  line-height: 1.5;
  margin-bottom: 1rem;
  font-weight: normal;
}

.support-cards .call-card-cta {
  font-weight: bold;
  display: block;
  position: relative;
}

.support-cards .call-card-cta:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='11' viewBox='0 0 11 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.2072 10.7071L10.4143 5.5L5.2072 0.292893L3.79299 1.70711L6.58588 4.5H0.632812V6.5H6.58588L3.79299 9.29289L5.2072 10.7071Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  position: absolute;
  width: 11px;
  height: 11px;
  margin-top: 0.5rem;
  margin-left: 0.7rem;
  transition: margin 120ms ease-in-out;
}

.support-cards .btn {
  border-color: white;
  display: block;
}

.support-cards .btn:hover {
  background-color: white;
  color: black;
}

.support-cards .call-card:hover .call-card-cta:after {
  margin-left: 1rem;
}

@media only screen and (min-width: 768px) {
  .support-cards .support-cards-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .support-cards .support-cards-list.three{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (min-width: 1200px) {
  .support-cards .support-cards-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .support-cards .support-cards-list.three {
    grid-template-columns: repeat(3, 1fr);
  }
}