.article-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0 2rem;
}

.article-item {
  text-align: center;
  font-size: 1.2rem;
}

.article-item__link {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: blue;
  text-decoration: underline;
}

.article-item__image {
  width: 20rem;
  height: 16rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 1023px) {
  .article-list {
    justify-content: center;
    padding: 0;
  }
  .article-item__image {
    max-width: 100%;
  }
}
