.post_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 16px;
  list-style: none;
  margin:0;
  padding:0;
}

.post_grid_item {
  width: calc((100% - 32px) / 3);
}

.post_grid_item a {
  text-decoration: none;
  color: inherit;
}

.post_grid_item img {
  height: 280px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center center;
  width: 100% ;
  max-width: 100%;
  background: white;
}

@media (max-width: 1024px) {
  .post_grid_item {
    width: calc((100% - 16px) / 2);
  }
}

@media (max-width: 768px) {
  .post_grid_item {
    width: 100%;
  }
}

.post_grid_item .post_image {
  height: 280px;
  position: relative;
}

.post_grid_item .post_time {
  position: absolute;
  right: 22px;
  bottom: 24px;
  color: var(--color-white);
  text-align: center;
  line-height: 34px;
  text-transform: uppercase;
  padding: 3px 24px;
  border-radius: 8px;
  background: radial-gradient(154.13% 72.34% at 47.78% 28.16%, #233DFF 11.91%, rgba(35, 61, 255, 0.79) 100%);
}

.post_details_wrapper {
  padding: 0 20px;
  margin-top: -20px;
  position: relative;
}

.post_grid_item .post_details {
  border-radius: 8px;
  background: #fff;
  border: 1px solid #ECECEC;
  padding: 20px;
  text-align: center;
  display: block;
}

.post_grid_item .post_details_title {
  font-size: 20px;
  font-weight: 600;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin: 20px 0px;
}
.post_grid_item .post_details_desc {
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 16px;
}

.post_grid_item .post_details_desc_wrapper {
  height: 60px;
}

.post_grid_item .post_details_footer {
  padding-top: 16px;
  border-top: 1px solid #DBDBDB;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post_section{
    margin-top:40px;
}