.blogs-wrapper {
    clear: both;
    width: 100%;
    position: relative;
    margin:  30px 0;
}
.blogs-wrap {
    position: relative;
    display: flex;
    flex-direction: row;
}
.blogs-wrap article {
    width: 33%;
    margin: 0 3%;
    position: relative;
    border-bottom: 30px solid;
}
.blogs-wrap article::before {
    content: " ";
    width: 100%;
    height: 100%;
    z-index: 99;
    position: absolute;
}
.blogs-wrap article a.button {
    background: none;
    border: 2px solid;
}
.blogs-wrap .info {
    position: relative;
    z-index: 999;
    padding: 30px;
}
.blogs-wrap figure.abs-img {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    top: 0;
    left: 0;
}
.blogs-wrap figure.abs-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 9;
}

/* RESPONSIVE */
@media all and (max-width: 900px) {
    .blogs-wrap article {
        margin: 0 1%;
        border-bottom: 20px solid;
    }
    .blogs-wrap .info {
        padding: 20px;
    }
}
@media all and (max-width: 900px) {
    .blogs-wrap {
        flex-wrap: wrap;
    }
    .blogs-wrap article {
        width: 100%;
        margin: 0 0 5% 0;
        border-bottom: 20px solid;
    }
    .blogs-wrap .info {
        padding: 30px;
    }
}