/* .latest-news-post-list {
  display: none;
} */
.latest-news-post-list .heading {
  margin-bottom: 100px;
}

.latest-news-post-list .heading-description p {
  font-size: 18px;
  color: var(--black3);
  margin-top: 10px;
}

.post-card {
  background-color: var(--white4);
  border-radius: 10px;
}

.latest-news-post-list .post-card .card-body {
  width: 100%;
  padding: 0;
  height: 100%;
}

.card-body {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}

.latest-news-post-list .card-body img {
  width: 100%;
  height: 274px;
  object-fit: cover;
}

.latest-news-post-list h4 {
  font-family: "Inter";
  color: var(--gray2);
  font-weight: 600;
  font-size: 24px;
}

.latest-news-post-list .blog-category {
  font-family: "Inter";
  background-color: var(--red);
  color: var(--white);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  padding: 1px 8px;
  border-radius: 5px;
  width: max-content;
}

.latest-news-post-list .post-card .card-heading {
  padding: 35px 41px;
  gap: 10px 0;
}

.latest-news-post-list .post-list .deck .row {
  gap: 20px 0;
}

.latest-news-post-list .post-list .deck {
  margin-bottom: 90px;
}

.latest-news-post-list .post-pagination {
  margin-bottom: 80px;
}

.latest-news-post-list .post-pagination .page-nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
}

.latest-news-post-list .post-pagination .page-nav-container .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter";
  font-size: 24px;
  font-weight: 600 !important;
  color: var(--black);
  background-color: var(--white2);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  cursor: pointer;
}

.latest-news-post-list .post-pagination .page-nav-container .page-numbers:hover {
  background-image: linear-gradient(rgb(0 0 0/40%) 0 0);
}

.latest-news-post-list .post-pagination .page-nav-container .page-numbers.current {
  background-color: var(--pink);
}

.latest-news-post-list .post-pagination .prev.page-numbers svg {
  rotate: 180deg;
}

.ast-container .post-thumbnail img {
  height: 747px;
  object-fit: cover;
  object-position: center;
}

.card-heading h4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}

@media screen and (max-width: 1024px) {
  .latest-news-post-list .heading {
    margin-bottom: 80px;
  }

  .latest-news-post-list .post-pagination {
    margin-bottom: 65px;
  }

  .latest-news-post-list {
    margin-top: 50px;
  }

  .latest-news-post-list .post-list .deck .row {
    gap: 30px 0;
  }
}

@media screen and (max-width: 767px) {

  .latest-news-post-list .heading,
  .latest-news-post-list .post-pagination {
    margin-bottom: 50px;
  }

  .ast-container .post-thumbnail img {
    height: 300px;
  }
}