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

.zq-moment {
  overflow: hidden;
}

.zq-moment__media {
  aspect-ratio: 4 / 5;
  border-radius: 0;
}

.zq-moment__body {
  padding: 20px;
}

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

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

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