.blog-list {
    padding: 50px 2%;
}

.blog-list-itemWrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.blog-list-item {
    width: 25%;
    position: relative;
    box-sizing: border-box;
    padding-bottom: 33%;
}

.blog-list-item:nth-child(3) {
    width: 50%;
}

.blog-list-itemWrap:nth-child(even) .blog-list-item:nth-child(3) {
    width: 25%;
}

.blog-list-itemWrap:nth-child(even) .blog-list-item:nth-child(1) {
    width: 50%;
}

.blog-list-item a {
    display: block;
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.blog-list-img:after,
.blog-list-img:before {
    content: '';
    display: block;
    width:100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    bottom: 0px;
    left: 0px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.26) 80%);
}

.blog-list-img:after {
    background: rgba(0, 0, 0, 0);
    transition: all .3s ease;
}

.blog-list-item:hover .blog-list-img:after {
    background: rgba(0, 0, 0, 0.15);
}

.blog-list-item-data {
    color: #FFF;
    width: 100%;
    position: absolute;
    z-index: 2;
    bottom: 10%;
    font-weight: 600;
    font-size: 32px;
    font-size: 1.6vw;
    line-height: 1.3;
    padding: 0 10%;
    box-sizing: border-box;
}

.blog-list-item-tag {
    margin-top: 5px;
}

.blog-list-item-tag span {
    font-size: 16px;
    font-size: .9vw;
    display: inline-block;
    margin-right: 30px;
    font-weight: 300;
}

.blog-list-item-tag span:last-child {
    margin-right: 0;
}

.blog-list-img {
    position: absolute;
    z-index: 0;
    height: 100%;
    width: 100%;
    border: 3px solid #FFF;
    box-sizing: border-box;
    overflow: hidden;
}

.blog-list-img figure {
    display: block;
    height: 100%;
}

.blog-list-img img {
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    -o-object-fit: cover;
    object-fit: cover;
    line-height: 0;
    transition: all 1s ease-out;
}

.blog-list-item:hover img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

@media screen and (min-width: 1900px) {

    .blog-list-item-data {
        font-size: 32px;
    }
}

@media screen and (max-width: 900px) {

    .blog-list-item-data {
        font-size: 18px;
    }

    .blog-list-item-tag span {
        font-size: 12px;
    }

    .blog-list-itemWrap {
        width: 95%;
        max-width: 550px;
        margin: 0 auto;
    }

    .blog-list-item {
        width: 100%;
        padding-bottom: 60%;
    }

    .blog-list-itemWrap:nth-child(even) .blog-list-item:nth-child(1) {
        width: 100%;
    }

    .blog-list-item:nth-child(3) {
        width: 100%;
    }

    .blog-list-itemWrap:nth-child(even) .blog-list-item:nth-child(3) {
        width: 100%;
    }

    .blog-list-item a:before {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 80%);
    }
}