/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-post {
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
}

.blog .blog-post .post-img {
    overflow: hidden;
    margin: -20px -20px 15px -20px;
}

.blog .blog-post .post-img img {
    transition: 0.3s;
    width: 100%;
}

.blog .blog-post h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog .blog-post h2 a {
    color: #fff;
    transition: 0.3s;
}

.blog .blog-post h2 a:hover {
    color: #18d26e;
}

.blog .blog-post .meta {
    margin-bottom: 15px;
    color: #888;
    font-size: 14px;
}

.blog .blog-post:hover .post-img img {
    transform: scale(1.1);
}