.products-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-benefit-card{
  background: #fff;
  border-radius: 28px;
  padding: 28px 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  height: 100%;
}

.product-benefit-card__icon{
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  background: rgba(154,182,59,.14);
  color: var(--verde-lima-clasico);
  font-size: 24px;
  margin-bottom: 18px;
}

.product-benefit-card h3{
  font-family: "League Spartan", sans-serif;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 12px;
}

.product-benefit-card p{
  margin-bottom: 0;
  line-height: 1.7;
}

.product-card{
  background: #fff;
  border-radius: 28px;
  padding: 30px 26px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.product-card__tag{
  display: inline-block;
  background: rgba(154,182,59,.14);
  color: var(--verde-hoja);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.product-card__title{
  font-family: "League Spartan", sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3vw, 34px);
  margin-bottom: 14px;
}

.product-card__text{
  line-height: 1.75;
  margin-bottom: 16px;
}

.product-list{
  margin: 0;
  padding-left: 18px;
}

.product-list li{
  margin-bottom: 10px;
  line-height: 1.65;
}

@media (max-width: 992px){
  .products-grid{
    grid-template-columns: 1fr;
  }

  .product-benefit-card h3{
    font-size: 24px;
  }

}