/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.icon-cards-row .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.icon-cards-row .heading-pill-container {
  margin: 0 0 3.2rem;
}
.icon-cards-row .text {
  max-width: 53.4rem;
  margin: 2.4rem auto 0;
}
.icon-cards-row .cards {
  margin: 4.8rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
  gap: 3.2rem;
}
.icon-cards-row .cards .card {
  padding: 4rem 2.4rem;
  background-color: #fff;
  border-radius: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.icon-cards-row .cards .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  text-align: center;
}
.icon-cards-row .cards .card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6.4rem;
  height: 6.4rem;
  background-color: #F3F4F2;
  border-radius: 1.6rem;
  margin: 0 auto;
}
.icon-cards-row .cards .card-icon img {
  width: 5.6rem;
  height: 5.6rem;
  object-fit: contain;
}
.icon-cards-row .cards .card-link {
  font-size: 2rem;
  font-family: "Barlow", sans-serif;
}
.icon-cards-row .cards .card-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .icon-cards-row .heading-pill-container {
    margin: 0 0 2.4rem;
  }
  .icon-cards-row .text {
    margin: 1.6rem auto 0;
  }
  .icon-cards-row .cards {
    margin: 3.2rem 0 0;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  }
  .icon-cards-row .cards .card {
    padding: 1.6rem;
    gap: 0.8rem;
    align-items: flex-start;
  }
  .icon-cards-row .cards .card-content {
    gap: 0.8rem;
    align-items: flex-start;
    text-align: left;
  }
  .icon-cards-row .cards .card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.8rem;
    margin: 0;
  }
  .icon-cards-row .cards .card-icon img {
    width: 3.2rem;
    height: 3.2rem;
  }
}