
.entry-footer {
    display: none;
}

/* Next post */
.nav-links > div {
   flex-grow: 1;
}

.nav-links > div a {
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
    background: #111;
    color: #fff;
    font-size: 1em;
    font-weight: 700;
    position: relative;
}

.nav-links .post-title {
    position: absolute;
    z-index: 2;
    justify-content: center;
    bottom: 1.2em;
    left: 1.2em;
    text-align: left;
    line-height: 1.2;
    width: 70%;
}

.nav-links .nav-previous,
.nav-links .nav-next {
    height: 300px;
    overflow: hidden;
    width: 100%;
}

.nav-links .grow-thumb img {
    opacity: .7;
}


/* ===================================== Responsive  ===================================== */

/*  Tablet Portrait  */
@media screen and (min-width: 768px) {

    /* Next post */
    .nav-links {
        display: flex;
        align-items: flex-start;
        flex-wrap: nowrap;
        margin-top: 4em;
    }

    .nav-links .nav-previous,
    .nav-links .nav-next {
        width: 50%;
    }

}


/*  Desktop  */
@media screen and (min-width: 1024px) {

    /* Next post */
    .nav-links .nav-previous,
    .nav-links .nav-next {
        height: 500px;
    }

    .nav-links > div a {
        font-size: 2em;
    }

    .nav-links .post-title {
        font-size: 2.4rem;
    }

    /* Post (single) */
    .entry-content-post {
        max-width: 920px;
        padding: 2em 0;
        margin: 0 auto;
    }


}