.recent-work-block .post-loop-wrap {
    display: grid;
    grid: auto / repeat(2, 1fr);
    gap: 80px;
    margin: 0;
}
.recent-work-block .post-loop-wrap article:nth-of-type(2n){
    margin-top: 80px;
}
.recent-work-block .post-loop-wrap article:nth-of-type(3n) {
    margin-top: -80px;
}
.recent-work-block .post-loop-wrap article:nth-of-type(4n) {
    margin-top: 0;
}

.recent-work-block .post-loop-wrap article img{
    display: block;
}
.recent-work-block .post-loop-wrap article .post-content-wrap {
    background: #fff;
    padding: 30px;
    color: #2f4858;
}
.recent-work-block .post-loop-wrap article .post-content-wrap h3 {
    color: #2f4858;
    margin-bottom: 5px;
}
.recent-work-block .post-loop-wrap article .post-content-wrap .post-excerpt {
    color: #647D8D;
}


.read-more-container {
    position: relative;
}
.read-more {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    top:  0;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: linear-gradient(110deg, rgba(1,1,1,.2) 55%, rgba(1,1,1,.3) 55%);
    transition: all .3s ease-in-out;
    color: #fff;
}
.read-more a {
    display: block;
}
.post-loop-wrap article:hover .read-more {
    opacity: 1;
}
.read-more span {
    bottom: -10px;
    position: relative;
    transition: all .3s ease-in-out;
    color: #fff;
    font-size: 1.2em;
}
.post-loop-wrap article:hover .read-more span {
    transform: translateY( 0 );
    bottom: 0;
}