.article-related-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  margin-top: 2.4rem;
}
@media screen and (max-width: 989px) {
  .article-related-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 749px) {
  .article-related-products__grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}
