.home-posts {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.home-post {
    flex: 0;
    flex-basis: 100%;
    margin-bottom: 30px;
}

.home-post .post-image img {
    width: 100%;
    height: 52.3333% /* Retain 1200 x 628 ratio */
}

.home-post .post-title {
    margin: 10px 0 5px 0px;
}

.home-post .post-author {
    font-size: .9rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.home-post .post-excerpt {
    font-size: 1rem;
}

.home-post .more-link {
    white-space: nowrap;
}

.home-subscribe {
    background-color: #3f456a;
    border-radius: 5px;
    padding: 20px;
}

.home-subscribe .post-title {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.home-subscribe .button {
    width: 100%;
}

@media (min-width: 768px) {

    .home-post {
        flex: 0;
        flex-basis: calc(100% / 2 - 15px);
        margin-bottom: 30px;
    }

}

@media (min-width: 992px) {

    .home-post {
        flex: 0;
        flex-basis: calc(100% / 3 - 30px);
        margin-bottom: 30px;
    }    

}