.post-cards {
  margin: 15px 0 80px;
  display: grid;
  grid-template-columns: 32% 32% 32%;
  gap: 70px 2%;
}

.pt-cardlist {
  /* width: 25%; */
  /* padding: 10px; */
  margin: 15px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}
.pt-img {
  margin: 10px;
  overflow: hidden;
}
.pt-img > img {
  max-width: 100%;
  transition: all 0.8s ease;
  cursor: pointer;
}
img:hover {
  scale: 1.1;
  transition: all 0.8s ease;
}
.pt-content {
  margin: 10px;
}
.pt-card-title {
  color: rgb(44, 46, 49);
  font-size: 24px;
  padding: 10px 0;
  line-height: 32px;
  font-weight: 700;
}
.pt-card-desc {
  color: rgb(105, 114, 122);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 30px;
}
.pt-link > a {
  text-decoration: none;
  color: var(--blue);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .post-cards {
    grid-template-columns: 49% 49%;
    gap: 40px 2%;
  }
  .allposts-box {
    padding: 50px 20px 25px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .post-cards {
    grid-template-columns: 100%;
    gap: 60px 0%;
  }
  .allposts-box {
    padding: 50px 10px 25px 10px;
  }
}
