/******************
Blog Post
******************/

#blogIntro {
    background-color: #ece8e5;
    padding: 60px 20px;
}

#blogIntroInnter {
}

#blogIntroImage {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

#blogIntroTitle {
    font-size: 36px;
    font-weight: 800;
}

/******************
Blog Post
******************/
#blogPost {
    padding: 60px 20px 40px;
    max-width: 600px;
    margin: auto;
}

#blogPost h1 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 15px;
}

#blogPost h2 {
    font-size: 30px;
    font-weight: 300;
    margin-top: 30px;
}

#blogPost p {
    padding-bottom: 16px;
    margin-top: 10px;
}

#blogPost p,
#blogPost li {
    line-height: 1.7;
    font-size: 18px;
}

#blogPost a:not(.button) {
    color: var(--orange);
}

#blogPost .button {
    margin: 20px auto;
}

#blogPost blockquote {
    margin: 20px 0 30px;
    border-left: 5px solid var(--orange);
    padding-left: 20px;
}

#blogPost img {
    max-width: 100%;
    height: auto;
}

/******************
Blog Sticky
******************/

#blogSticky {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #AF6248;
    z-index: 3;
}

#blogStickyInner {
    display: flex;
    justify-content: space-around;
    padding: 15px 10px;
    align-items: center;
}

#blogStickyTitle {
    color: white;
    font-size: 17px;
    font-weight: 800;
}

/* Fix footer overlay issue */
#footerExtra {
    margin-bottom: 77px;
}

@media (max-width: 800px) {
    #blogStickyInner {
        display: grid;
        row-gap: 15px;
    }

    #footerExtra {
        margin-bottom: 116px;
    }

}

/********
Blog Hero
 */

#blogHero {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-size: cover;
    position: relative;
    background-position: center;
    text-align: center;
}

#blogHero::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
}

#blogHeroTitle {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 33px;
    font-weight: 900;
    margin-bottom: 10px;
}

#blogHeroSubtitle {
    position: relative;
    z-index: 1;
    font-size: 21px;
    color: white;
    font-weight: 900;
}

@media (max-width: 800px) {
    #blogHero {
        padding: 40px;
    }

    #blogHeroTitle {
        font-size: 27px;
    }

    #blogHeroSubtitle {
        font-size: 16px;
    }
}

/*************
Blog Content
 */


.blogContent {
    padding: 60px 20px;
}

.blogContent > .container > :last-child {
    margin-bottom: 0;
}

.blogTitle {
    font-size: 29px;
    margin-bottom: 30px;
    font-weight: 900;
    color: #282a29;
}

.blogTitle.mb0 {
    margin-bottom: 0;
}

.blogTitle.lh0 {
    line-height: 1;
}

.blogTitle.center {
    text-align: center;
}

.blogSubtitle {
    font-size: 21px;
    margin-bottom: 10px;
    color: #b3805e;
    font-weight: 900;
}

.blogSubtitle.mb0 {
    margin-bottom: 0;
}

.blogSubtitle.center {
    text-align: center;
}

.blogBody {
    color: #282a29;
    font-size: 21px;
    margin-bottom: 30px;
    line-height: 1.4;
}

.blogBody.mb0 {
    margin-bottom: 0;
}

.blogBody.center {
    text-align: center;
}

.blogBody a {
    text-decoration: underline;
}

.blogGrid {
    max-width: 650px;
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 10px;
    row-gap: 5px;
    line-height: 1.5;
    color: #282a29;
    font-size: 21px
}

.blogGrid.fit {
    max-width: fit-content;
}

.blogGrid.vcenter {
    align-items: center;
}

.blogItem {
    padding: 60px 0;
    border-top: 2px solid #d5d0c1;
}

.blogItem.last {
    border-bottom: 2px solid #d5d0c1;
    margin-bottom: 60px;
}

.blogItem > :last-child {
    margin-bottom: 0;
}

.blogButton {
    background-color: #d5d0c1;
    color: #282a29;
}

.blogRow {
    padding: 30px 0;
    border-top: 2px solid #d5d0c1;
    display: grid;
    grid-template-columns: 200px auto;
    column-gap: 50px;
}

.blogRow.last {
    border-bottom: 2px solid #d5d0c1;
    margin-bottom: 60px;
}

.blogQuote {
    font-family: "Playfair Display";
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #282a29;
}

.blogQuote.mb10 {
    margin-bottom: 10px;
}

.blogQuote.center {
    text-align: center;
}

.blogQuote.pl25 {
    padding-left: 25px;
}

.blogQuote.mb0 {
    margin-bottom: 0;
}

.blogDivider {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 15px;
}

.blogDivider span {
    background-color: #d6d0c1;
    width: 100%;
    height: 2px;
}

.blogDivider div {
    width: max-content;
    white-space: nowrap;
}

.blogColumns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    margin-bottom: 30px;
}

.blogColumn {
    border: 3px solid white;
    padding: 30px 30px 20px;
    border-radius: 30px;
}

@media (max-width: 800px) {
    .blogContent {
        padding: 30px 20px;
    }

    .blogTitle {
        font-size: 24px;
    }

    .blogBody {
        font-size: 16px;
    }

    .blogGrid {
        font-size: 16px;
        row-gap: 14px;
        column-gap: 15px;
    }

    .blogRow {
        grid-template-columns: 1fr;
    }

    .blogQuote {
        font-size: 20px;
    }

    .blogQuote br {
        display: none;
    }

    .blogColumns {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .blogColumn {
        padding: 30px;
    }
}

/***
Colors
 */

#blogHero.image1 {
    background-image: url(/assets/img/blog-post/wave-bye-bye-to-toddler-bedtime-battles.jpg);
}

#blogHero.image2 {
    background-image: url(/assets/img/blog-post/how-to-teach-coping-skills-to-your-toddler.jpg);
}

#blogHero.image3 {
    background-image: url(/assets/img/blog-post/so-you-lost-your-cool-big-time-now-what.jpg);
}

#blogHero.image4 {
    background-image: url(/assets/img/blog-post/how-to-prep-your-toddler-for-a-new-baby-sibling.jpg);
}

#blogHero.image5 {
    background-image: url(/assets/img/blog-post/safety-first.jpg);
}

#blogHero.image6 {
    background-image: url(/assets/img/blog-post/trade-time-out-for-time-in.jpg);
}

#blogHero.image7 {
    background-image: url(/assets/img/blog-post/pumpkins.jpg);
    padding: 65px 20px;
}

#blogHero.image8 {
    background-image: url(/assets/img/blog-post/hearts.jpg);
    padding: 65px 20px;
}

#blogHero.image9 {
    background-image: url(/assets/img/blog-post/the-cozy-corner.jpg);
    padding: 160px 20px;
}

.color1 {
    color: #70665e;
}

.color2 {
    color: #b3805e;
}

.color3 {
    color: #aa9874;
}

.color4 {
    color: #a39690;
}

.color5 {
    color: #8c7460;
}

.color6 {
    color: #937d70;
}

.color7 {
    color: #9b9489;
}

.color8 {
    color: #a88a74;
}

.color9 {
    color: #cba698;
}

.color10 {
    color: #a0776a;
}

.blogContent.bg1 {
    background-color: #f6f5f4;
}

.blogContent.bg2 {
    background-color: #f8f1ec;
}

.blogContent.bg3 {
    background-color: #f7f6f4;
}

.blogContent.bg4 {
    background-color: #ece7e4;
}

.blogContent.bg5 {
    background-color: #efeeed;
}

.highlight.bg1::before {
    background-color: #e1d2cf;
}

.highlight.bg2::before {
    background-color: #ede9e8;
}

.highlight.bg3::before {
    background-color: #ebdeda;
}

.highlight.bg4::before {
    background-color: #ffffff;
}

.highlight.bg5::before {
    background-color: #e5e0d9;
}

.highlight.bg6::before {
    background-color: #e5d6cf;
}

.blogButton.type1 {
    background-color: #e5d7ca;
}

.blogButton.type2 {
    background-color: #c4aa9e;
}

@media (max-width: 800px) {
    #blogHero.image9 {
        padding: 80px 20px;
    }
}