.home-blog {
  padding: 3rem 0;
}

.mt {
  padding-top: 2rem;
}

.articles {
  padding: 2rem 0;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-wrap: wrap;
  gap: 2rem;
}

.articles .post {
  width: calc(100% / 3 - 2rem);
}

.articles .post img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
}

.articles .post .content .date {
  color: var(--gradient-start);
  margin: 0.25rem 0;
  font-weight: 200;
  font-style: italic;
  font-size: small;
}

.articles .post .content h2 {
  font-size: 1.1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.35rem;
}

.articles .post .content .description {
  font-size: 0.9rem;
  line-height: 1.4rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.articles .post .content .btns {
  margin-top: 1rem;
}

.articles .post .content .btns a {
  color: var(--vibrant-orange);
}

@media only screen and (max-width: 997px) {
  .articles {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .articles .post {
    width: calc(100% / 2 - 1rem / 2);
  }
}

@media only screen and (max-width: 560px) {
  .home-blog {
    padding-top: 2rem;
  }

  .articles .post {
    width: 100%;
  }
}
