h1.header {
  font-family: adobe-caslon-pro, Caslon, Lusitana;
  font-size: 45px;
  display: flex;
  justify-content: center;
}

.article-feed-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(calc(100% - 3 * 350px) / 6);
}

.article {
  background: white;
  width: 350px;
  margin: 0 calc(calc(100% - 3 * 350px) / 4) calc(calc(100% - 3 * 350px) / 2);
  border-radius: 12px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.article:hover {
  transform: translate3d(0, -2px, 0) !important;
  color: #a97d11 !important;
}

.article-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.article-content {
  display: flex;
  flex-direction: column;
  padding: 6% 7%;
}

.article-title {
  font-size: 28px;
  text-align: center;
  line-height: 30px;
}

.article-date {
  font-size: 10px;
  display: flex;
  justify-content: center;
}

.article-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 16px;
  overflow: hidden;
}

@media only screen and (min-width: 1201px) {
  .article:nth-child(3n + 1) {
    margin-left: 0;
  }

  .article:nth-child(3n + 3) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .article-feed-container {
    margin: 0 calc(calc(100% - 280px) / 2) !important;
  }

  .article {
    width: 280px;
    margin: 0 0 20%;
  }

  .article-image {
    width: 280px;
    height: 200px;
  }

  .article-content {
    min-height: 220px;
  }
}

@media only screen and (max-width: 1200px) and (min-width: 768px) {
  .article-feed-container {
    margin: 0 calc(calc(100% - 2 * 350px) / 3);
  }

  .article {
    margin: 0 calc(calc(100% - 2 * 350px) / 2) calc(calc(100% - 2 * 350px) / 2);
  }

  .article:nth-child(2n + 1) {
    margin-left: 0;
  }

  .article:nth-child(2n + 2) {
    margin-right: 0;
  }
}
