.pillGrid{
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 26px;
}

.pillCard{
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;

  background: linear-gradient(90deg, rgba(118,193,74,.93), rgba(118,193,74,.86));
  border: 1px solid rgba(118,193,74,.52);
  color: rgba(255,255,255,.96);

  box-shadow: 0 10px 26px rgba(15,47,31,.10);
  transition: transform .18s ease, box-shadow .22s ease, filter .18s ease;
}

.pillCard:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(15,47,31,.14);
}

.pillCard__icon{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.06),
    0 10px 18px rgba(15,47,31,.12);
  flex: 0 0 34px;
  color: rgba(255,255,255,.92);
}

.pillCard__icon svg{
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
  opacity: .98;
}

.pillCard__title{
  margin: 0 0 2px;
  font-size: .98rem;
  font-weight: 850;
  line-height: 1.2;
  color: rgba(255,255,255,.98);
}

.pillCard__text{
  margin: 0;
  font-size: .86rem;
  line-height: 1.35;
  color: rgba(255,255,255,.88);
}

.pillCard--tint{
  background: rgba(118,193,74,.12);
  border-color: rgba(118,193,74,.24);
  color: var(--brand-900);
  box-shadow: 0 10px 22px rgba(15,47,31,.08);
}
.pillCard--tint .pillCard__icon{
  background: rgba(118,193,74,.18);
  border-color: rgba(118,193,74,.22);
  box-shadow: inset 0 0 0 2px rgba(118,193,74,.18);
  color: var(--brand-900);
}
.pillCard--tint .pillCard__title{ color: var(--brand-900); }
.pillCard--tint .pillCard__text{ color: var(--muted); }

@media (max-width: 768px) {
  .pillGrid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pillCard {
    border-radius: 28px;
    padding: 14px 16px;
    align-items: flex-start;
  }

  .pillCard__icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    margin-top: 2px;
  }

  .pillCard__icon svg {
    width: 18px;
    height: 18px;
  }

  .pillCard__title {
    font-size: .95rem;
    line-height: 1.2;
  }

  .pillCard__text {
    font-size: .84rem;
    line-height: 1.45;
  }
}