.grid-banner {
  text-align: center;
  padding: 20px 0 0 0;
}

.news-grid {
  padding: 74px 9%;
  background: linear-gradient(180deg, #10a867 0%, rgba(16, 168, 103, 0) 100%), var(--Contrast-Green, #003a29);
}
.news-grid ul {
  display: grid;
  list-style: none;
  grid-template-columns: repeat(auto-fill, minmax(440px, 0fr));
  justify-items: center;
  grid-gap: 40px;
}
@media (max-width: 1440px) {
  .news-grid ul {
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  }
}
@media (max-width: 768px) {
  .news-grid {
    padding: 74px 24px;
  }
  .news-grid ul {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .news-grid {
    padding: 74px 0px;
  }
  .news-grid ul {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 48px;
  }
  .news-grid ul::-webkit-scrollbar {
    display: none;
  }
  .news-grid ul li {
    scroll-snap-align: center;
  }
  .news-grid ul li:first-child {
    margin-left: 330px; /* Add margin to the left for the first child */
  }
  .news-grid ul li:last-child {
    margin-right: 330px; /* Add margin to the right for the last child */
  }
}
@media (min-width: 1441px) {
  .news-grid {
    padding: 74px 15rem;
  }
}

/*# sourceMappingURL=articlesGrid.css.map */
