/* Section 06 — Who it is for */

.tfc-apt-card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:34px;
}

.tfc-apt-feature-card{
  padding:24px;
  border-radius:26px;
  background:#fff;
  border:1px solid var(--tfc-border);
  box-shadow:var(--tfc-shadow-soft);
}

.tfc-apt-feature-card p{
  margin:12px 0 0;
  color:#667085;
  line-height:1.55;
  font-weight:700;
}

@media (max-width: 980px){
  .tfc-apt-card-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 640px){
  .tfc-apt-card-grid{
    grid-template-columns:1fr;
  }
}
