.wcf-grid-hover-posts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.wcf-grid-hover-posts svg {
  width: 1em;
  height: 1em;
}
.wcf-grid-hover-posts .wcf-post:hover .thumb, .wcf-grid-hover-posts .wcf-post:first-child .thumb {
  opacity: 1;
}
.wcf-grid-hover-posts .wcf-post .thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  transition: all 0.5s;
  opacity: 0;
}
.wcf-grid-hover-posts .wcf-post .thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.wcf-grid-hover-posts .wcf-post .thumb::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(18, 18, 18, 0.2509803922);
}
.wcf-grid-hover-posts .wcf-post .content {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid rgba(255, 255, 255, 0.3019607843);
  padding: 300px 30px 30px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/* Responsive */
@media (max-width: 1200px) {
  .wcf-grid-hover-posts .wcf-post {
    position: relative;
  }
  .wcf-grid-hover-posts .wcf-post .thumb {
    opacity: 1;
  }
}