.zq-why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.zq-why__card {
  padding: 24px;
}

.zq-why__card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--zq-accent);
  font-size: 0.86rem;
  font-weight: 780;
}

.zq-why__card p {
  margin: 12px 0 0;
  color: var(--zq-muted);
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 1199px) {
  .zq-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .zq-why__grid {
    grid-template-columns: 1fr;
  }

  .zq-why__card span {
    margin-bottom: 26px;
  }
}
