#blog-post *{
    font-family: "Open Sans", Arial !important;
}
p {
    font-weight: 400;
    line-height: 1.5;
}

h2,h3,h4,h5,h6 {
    font-weight: 500;
}

#blog-hero{
    background-color: #161616!important;
    background-repeat: no-repeat!important;
    background-position:top center!important;
    background-size: cover!important;
    min-height: 13rem!important;
    position: relative!important;
    display: flex !important;
}
#blog-hero-text {
    display: flex !important;
    flex-direction:column;
    gap:clamp(24px, 3.261vw - 1.04px, 36px);
    padding-top:clamp(32px, 5.797vw - 12.52px, 64px);
    padding-bottom:clamp(40px, 7.246vw - 15.65px, 80px);
}

#blog-hero-h1 {
    color:#fff;
    font-size: calc(1rem + 3.03571vw);
    font-weight: 700 !important;
    margin:0;
}







#blog-hero-meta *{
    font-size:14px;
    color:#fff;
    text-decoration:none;
    opacity:.8;
}
#blog-hero-meta a:hover {
    text-decoration:underline;
}
#blog-hero-meta {
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 36px;
    row-gap: 8px;
}

.blog-hero-bgfade {
    position: absolute;
    height: 100%;
    width: 100%;
    background: #161616e6!important;
    z-index: 1;
}
#blog-article-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 100px;
    width: 100%;
}
@media(max-width:1149px) {
    #blog-article-container {
        display: grid;
        grid-template-columns: 1fr; 
        gap: 40px;
    }
    #blog-article-body {
        grid-column: 1;
        width: 100%;
        min-width: 0; 
    }
}
#blog-article-sidebar-wrapper {
    display:block;
    height:100%;
}
#blog-article-sidebar {
    position: sticky;
    top: 6rem;
}
#blog-article-container .toc-accordion {
    padding: 1.3rem 1.5rem;
    border-radius: 6px;
    background-color: #f9f9f9;
    position: relative !important;
    top: 0 !important;
    margin: 20px 0 30px 0;
    width: 100%;
    max-height: none !important;
    overflow-y: visible !important;
}
@media(min-width:1150px) {
    #blog-article-container .toc-accordion {
        max-height: calc(100vh - 130px) !important;
        overflow-y: scroll !important;
    }
}

#blog-about-the-author {
    width:100%;
    padding: 34px 32px;
    border-radius: 6px;
    background-color:#f9f9f9;
    gap:1.2rem;
    display:flex;
    flex-direction:column
}


#blog-author-card-bio {
    font-size:14px;
    line-height: 1.2941176471rem;
    margin:0;
}