/* ========================================
Single Post Heading
======================================== */
.single-post .post_content h2 {
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: 0.03em;
    margin: 5rem 0 2.5rem;
    padding-bottom: 8px;
    border-bottom: 1px solid #7fb1a4;
}

/* ========================================
Post CTA Section
======================================== */

.postArticleCta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin: 5rem 0;
    padding: 2rem 3rem;
    background: #006449;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
}

.postArticleCta__lead {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.04em;
}

.postArticleCta__text {
    display: block;
    margin-top: .8rem;
    font-size: .85rem;
    line-height: 1.8;
    opacity: .9;
}

.postArticleCta__arrow {
    display: grid;
    place-items: center;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    background: #fff;
    color: #006449;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
}

.postArticleCta:hover {
    color: #fff;
    opacity: .9;
}

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

    .postArticleCta {
        padding: 2rem;
        border-radius: 8px;
    }

    .postArticleCta__lead {
        font-size: 1rem;
    }

    .postArticleCta__arrow {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
        font-size: 1.6rem;
    }

}

/* ========================================
Blog Archive Layout
======================================== */

/* Blog Archive Content Width */
@media screen and (min-width: 960px) {

    .blog #content,
    .archive #content {

        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;

    }

}