.ongoing-cotainer {
  height: auto;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 1rem;
  justify-content: center;
  margin: 4rem auto;
  padding: 1rem;
}
.post-items {
  height: 500px;
  width: 350px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .post-items {
    width: auto;
  }
  .ongoing-cotainer {
    grid-template-columns: auto auto auto;
  }
}
@media (max-width: 800px) {
  .ongoing-cotainer {
    grid-template-columns: auto auto;
  }
}
@media (max-width: 500px) {
  .ongoing-cotainer {
    grid-template-columns: auto;
  }
}
.thumnail-container {
  position: relative;
  z-index: 0;
}
.thumnail-container img {
  object-fit: contain;
}
.thumnail-container:hover {
  cursor: pointer;
  transform: translateY(-3px);
}
.thumnail-container::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.post-contain {
  position: absolute;
  margin: 260px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ongoing-post-title h4 a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}
.post-des p {
  text-align: center;
}
.post-des p a {
  text-decoration: none;
  color: #13d48e;
  font-size: 15px;
  font-weight: 700;
  line-height: 26px;
}
.m-icones {
  font-size: 15px;
  font-weight: 700;
}
