/* We added the container class here because there are 4 boxes in forst row */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  /* padding-bottom:2rem; */
  overflow: hidden;
}

/* Home Articles */
#home-articles .articles-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.backcolor a {
  font-size: 16px;
}

@media (max-width: 1200px) {
  #home-articles .articles-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .backcolor a {
    font-size: 16px;
  }
}

@media (max-width: 770px) {
  /* Stack Grid Items */

  #home-articles .articles-container {
    grid-template-columns: 1fr;
  }
}
