#blogPost {
    padding: 50px 0 0;
}

#blogPostContent {
    max-width: 1400px;
    padding: 0 20px 60px;
    margin: 0 auto;
}

.blogPostTitle {
    font-family: Newsreader, sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    margin-bottom: 36px;
    color: var(--blue);
    text-align: center;
)
}

.blogPostCopy {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 16px;
}

.blogPostCopy:has(strong) {
    font-family: Newsreader, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 31.852px;
    margin: 32px 0 16px;
}

.blogPostUl {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 16px;
}

.blogPostUl li {
    margin: 10px 0;
}

.blogPostUl.noStyle {
    list-style: none;
}

#blogPostFooter {
    padding: 50px;
    background-color: rgb(42, 40, 41);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 100px;
}

.blogPostFooterNav {
    font-family: "Brandon-grotesque", sans-serif;
    font-size: 36.8px;
    font-weight: 500;
    line-height: 100%;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 25px;
}

.blogPostFooterNav:hover {
    color: var(--white);
}

.blogPostFooterNavIcon {
    max-height: 32px;
    height: 100%;
    width: auto;
}

.blogPostFooterNavIcon.left {
    transform: rotate(180deg);
}

@media screen and (max-width: 1000px) {
    #blogPost {
        padding: 50px 0 0;
    }

    #blogPostContent {
        max-width: 1400px;
        padding: 0 20px 60px;
        margin: 0 auto;
    }

    .blogPostTitle {
        font-size: 32px;
        font-weight: 700;
        line-height: 40.678px;
    )
    }

    .blogPostCopy {
    }

    .blogPostCopy strong {
    }

    .blogPostUl {
        font-size: 20px;
        font-weight: 400;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .blogPostUl li {

    }

    .blogPostUl.noStyle {

    }

    #blogPostFooter {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .blogPostFooterNav {
        font-size: 24px;
    }

    .blogPostFooterNav:hover {
        color: var(--white);
    }

    .blogPostFooterNavIcon {
        max-height: 32px;
        height: 100%;
        width: auto;
    }

    .blogPostFooterNavIcon.left {
        transform: rotate(180deg);
    }
}