#newsListContainer {
  width: 90%;
  max-width: 900px;
  margin: 100px auto 0;
}

h1 {
  font-size: 28px;
  color: var(--primaryColor);
  text-align: center;
}

.newsContents {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 50px;
}

.news {
  flex: 0 1 400px;
}







@media (max-width: 989px) {
#newsListContainer {
  /* width: 90%;
  max-width: 900px; */
  margin: 80px auto 0;
}

/* h1 {
  font-size: 28px;
  color: var(--primaryColor);
  text-align: center;
} */

.newsContents {
  margin-top: 40px;
  /* display: flex;
  justify-content: space-between;
  flex-wrap: wrap; */
  gap: 0;
}

.news {
  flex: 0 1 100%;
}
.news:last-of-type {
  margin-bottom: 0;
}
}







@media (max-width: 749px) {
  #newsListContainer {
    /* width: 90%;
    max-width: 900px; */
    margin: 40px auto 0;
  }
  
  h1 {
    font-size: 24px;
    /* color: var(--primaryColor);
    text-align: center; */
  }
  
  .newsContents {
    margin-top: 20px;
    /* display: flex;
    justify-content: space-between;
    flex-wrap: wrap; */
    gap: 0;
  }
  
  .news {
    flex: 0 1 100%;
  }
  .news:last-of-type {
    margin-bottom: 0;
  }
  }