.text-center {
    text-align: center;
}

.s-footer {
    padding-top: 40px;
    padding-bottom: 40px;
}

.text-small {
    font-size: 10px;
}

p.comment-data {
    margin: 0px;
    font-size: 15px;
}

button.btn.btn-primary.custom-button {
    padding: 16px;
    margin: 0px;
    font-size: 12px;
    border-radius: 50px;
    line-height: 0px;
    letter-spacing: 0.2em;
}

.header_text_container {
    background-color: #2B3058;
    padding: 3em 0;
    margin-top: 7%;

}

.header_text_container h1 {
    margin: 0;
    color: white;
    padding: 1em 2em;
    font-size: 2em;
    text-align: center;
}

.stick_header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
}


.article_wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, 30%);
    gap: 20px;
    justify-content: space-between;

}

.blog_section {
    margin: 0 72px;
}

.article_wrapper article {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #2B3058;

}

.article_wrapper article img {
    width: 100%;
    height: 250px;

}

.article_wrapper article .body {
    padding: 0 1.5em;
    color: #9598AC;

}

.article_wrapper article h1, .article_wrapper article h3 {
    margin: 0;
    line-height: 1.5em;
    overflow: hidden;
    font-size: 1.2em;
    font-family: inherit;
    /* color: white;
    white-space: nowrap;
    text-overflow: ellipsis; */
    color: white;



}

.learn_more {
    color: white;
}

.next_and_prev_container {
    margin-top: 5%;
    padding: 2em;
    display: flex;
    justify-content: center;
    align-items: center;

}

.next_and_prev_container a {
    margin: 20px;
    background-color: #2B3058;
    padding: .5em 1em;
    color: white;
    min-width: 100px;
    text-align: center;
    border-radius: 5px;
    font-size: .8em;

}


.number_n_p {
    display: flex;
}

.number_n_p span {
    margin: 0 20px;
    cursor: pointer;
    padding: .5em 1em;
    background-color: #2B3058;
    color: white;
}

.cta {
    height: 30vh;
    background-color: white;
}

.table_of_content {
    background-color: #F8F8F7;
    width: 20%;
    padding: 1em;
    max-height: 500px;
    overflow: auto;
    position: sticky;
    top: 20%;
}

.table_of_content h3 {
    font-size: 1.5em;
    margin: 0;
}



.table_of_content ul li a {
    text-decoration: none;
    color: black;
}

.table_of_content ul li a:hover {
    text-decoration: underline;
    transition: 1s;
}

.column {
    width: 100%;
    margin: 0;
    padding: 0;

}

.toc_heading_wrapper {
    display: flex;
    align-items: center;
}

.toc_heading_wrapper .down {
    display: none;
}


.middle_section {
    width: 90%;
    margin: 8% auto 0;
}

.author_profile_wrapper {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
    align-items: center;
    margin: auto;
    width: 70%;
}

.author_profile_wrapper h3 {
    margin: 0;
}

.author_image_div {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}


.author_image_div img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.author_profile_wrapper.at_h2 {
    width: max-content;
    grid-template-columns: 50px 1fr;
    justify-content: center;
}

.author_profile_wrapper.at_h2 .author_image_div {
    width: 45px;
    height: 45px;
    border: 5px solid #2B3058;
}


.author_profile_wrapper.at_h2 h3 {
    font-size: 1em;
}


.cta_section h2 {
    color: white;
    font-weight: bold;
}

.cta_section button {
    background-color: #2B3058;
    border: 1px solid #2B3058;
    color: white;
    font-size: 1em;
}

.recommended_posts {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 5%;
}



.row.pd .s-content__entry {
    padding-bottom: 0 !important;
}

.content_hero_image{
    width: 50%;
    height: 25%;
    margin: 0 auto;
}

.content_hero_image img{
    width: 100%;
    height: 100%;
}

.s-content__entry-content h2, .s-content__entry-content h3, .s-content__entry-content h4, .s-content__entry-content h5, .s-content__entry-content h6{
    margin: 0 !important;
}

figure{
    margin: 0;
    padding: 0;
}

figcaption{
    text-align: start;
    margin: 0 !important;
}

.s-content__entry-header{
    margin-top: 40px;
}

.share_component h4{
    margin: 0 0 10px 0;
}

.share_component{
    display: flex;
    align-items: center;
}

.at_h2{
    margin-bottom: 2%;
}

.cta_section{
    position: relative;
    padding: 0;
    height: 350px;
    overflow: hidden;
    color: white;
    text-align: center;
}

.cta_section img{
    width: 100%;
    height: auto;
}

.cta_section .content_wrapper{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .8);
    padding: 0 4em;
}

.s-content__entry-content a{
    text-decoration: underline;
}


@media screen and (max-width: 1200px) {

    .table_of_content {
        width: 100%;
    }

    .closure {
        display: none;
    }

    .closure.show {
        display: block;
    }


    .toc_heading_wrapper .down {
        display: block;
    }

}

@media screen and (max-width: 768px) {
    .blog_section {
        margin: 0 24px;
    }
    
    .share_component{
        flex-direction: column;
    }

    .share_component div:nth-child(2){
        margin-top: 20px;
        padding: 0;
    }

    .share_component h4{
        margin: 0;
    }

    .article_wrapper {
        grid-template-columns: repeat(auto-fill, 49%);
        gap: 10px;

    }

    .table_of_content {
        top: 5%;
    }

    .author_profile_wrapper {
        width: 90%;
        zoom: .8;
    }


    .cta_section .content_wrapper {
        zoom: .6;
    }

    .cta_section p {
        line-height: 1.5;
        margin-top: 2em;
    }

    .cta_section{
        height: 250px;
    }


    .table_of_content {
        top: 10%;
    }




}

@media screen and (max-width: 523px) {
    .blog_section {
        margin: 0 24px;
    }

    .article_wrapper {
        grid-template-columns: repeat(auto-fill, 100%);
        gap: 30px;


    }

    .content_hero_image{
        width: 100%;
        height: 20%;
        margin: 0;
    }

    .header_text_container h1 {

        font-size: 1em;
        padding: 1em 1em;
        line-height: 2;
    }


}