.blog_container{
    display: flex;
    flex-direction: column;
}
.blog_featured_image{
    margin: 0 auto;
    max-height: 40rem;
    width: -webkit-fill-available;
    object-fit: cover;
    object-position: center center;
}
.blog_header{
    margin-top: 2rem;
    padding: 0 20px;
}
.blog_header h1{
    font-size: 24px;
    color:var(--heading-font-color);
}
.blog_body{
    padding: 0 20px;
    margin-top: 1rem;
}
.blog_body img {
    height: auto;
    max-width: 100%;
    border-radius: 16px;
    margin: 20px 0;
    overflow-clip-margin: content-box;
    overflow: clip;
}
.blog_body h2{
    font-size: 20px;
    color:var(--heading-font-color);
    padding-top: 14px;
    padding-bottom: 7px;
}
.blog_body h3{
    padding-top: 10px;
}
.blog_body  ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}
@media (min-width:769px){
    .blog_header{
        max-width: 45rem;
        width: -webkit-fill-available;
        margin: 0 auto;
        margin-top: 2rem;
    }
    .blog_body{
        max-width: 45rem;
        width: -webkit-fill-available;
        margin: 0 auto;
        margin-top: 1rem;
    }
    .blog_header h1{
        font-size: 32px;
    }
    .blog_body h2{
        font-size: 28px;
        padding-top: 28px;
        padding-bottom: 14px;
    }
}

@media (min-width:1024px) {
    .blog_header{
        max-width: 70%;
    }
    .blog_body{
        max-width: 70%;
    }
}
.blog_body a{
    display: inline-block; 
    text-decoration: none;
    color:var(--heading-font-color);
    transition: all 0.2s ease;
}
.blog_body a:hover{
    text-decoration: underline;
    transform: scale(1.01); 
    color:var(--btn-bgcolor);
}
