.post-loop-wrap {
    display: grid;
    grid: auto / repeat(5, 1fr);
    gap: 30px;
    margin: 0;
}
.post-loop-wrap article {
  font-size: 30px;
  text-align: center;
  grid-column: span 2;
}
.post-loop-wrap article:nth-child(2n) {
    grid-column: span 3;
}
.post-loop-wrap article:nth-child(4n) {
    grid-column: span 2;
}
.post-loop-wrap article:nth-child(4n-1) {
    grid-column: span 3;
}

.post-loop-wrap article a {
    display: block;
    height: 100%;
}
.post-loop-wrap article img {
    display: block;
    height: 100%;
    object-fit: cover;
}
.post-content-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    top:  0;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: rgba(1,1,1,.25);
    transition: all .3s ease-in-out;
}
.post-loop-wrap article .post-content-wrap:hover {
    opacity: 1;
}
.post-title {
    bottom: -10px;
    position: relative;
    transition: all .3s ease-in-out;
}
.post-title h3 {
    color: #fff;
    font-size: 1.4em;
}
.post-loop-wrap article .post-content-wrap:hover .post-title {
    transform: translateY( 0 );
    bottom: 0;
}
.post-loop-wrap .inside-article {
    position: relative;
    height: 100%;
}


.facetwp-facet.facetwp-facet-load_more  {
    margin-bottom: 0;
    margin-top: 50px;
    text-align: center;
}