# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.recent-blog-posts .post-item .post-img img {
    transition: 0.5s;
}

.recent-blog-posts .post-item .post-date {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--color-primary);
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    padding: 6px 12px;
    font-weight: 500;
}

.recent-blog-posts .post-item .post-content {
    padding: 30px;
}

.recent-blog-posts .post-item .post-title {
    font-size: 24px;
    color: var(--color-secondary);
    font-weight: 700;
    transition: 0.3s;
    margin-bottom: 15px;
}

.recent-blog-posts .post-item .meta i {
    font-size: 16px;
    color: var(--color-primary);
}

.recent-blog-posts .post-item .meta span {
    font-size: 15px;
    color: #838893;
}

.recent-blog-posts .post-item hr {
    color: #888;
    margin: 20px 0;
}

.recent-blog-posts .post-item .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    color: #838893;
}

    .recent-blog-posts .post-item .readmore i {
        line-height: 0;
        margin-left: 6px;
        font-size: 16px;
    }

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
    color: var(--color-primary);
}

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