.MB_articles_container
{
    position: relative;
    width: 100%;
    height: auto;
    background-color: none;
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 100px 0px;

    flex-wrap: wrap;
    flex-direction: column;
    
}

    .MB_article_item_con
    {
        width: 100%;
        height: auto;
        max-width: 800px;
        position: relative;

        display: flex;

        background-color: white;
        margin-bottom: 30px;
    }

@media screen and (max-width: 800px) 
{
        .MB_article_item_con
        {
            flex-wrap: wrap;
        }
}


/* text box content */
.MB_article_item_text_con
{
    width: auto;
    height: auto;
    flex-grow: 1;
    box-sizing: border-box;
    padding: 10px 20px;

    display: flex;
    flex-direction: column;
}
    .MB_article_item_text_con .entry-title
    {
        border-bottom: solid black 1px;
        padding: 5px 0px;
    }
        .MB_article_item_text_con .entry-title a
        {
            font-size: 22px;
            text-decoration: none;
            color: black;
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        }

    .MB_article_item_text_con .entry-meta
    {
        font-size: 12px;
        color: gray;
        padding: 10px 0px;
        min-width: 300px;
    }
    .MB_article_item_text_con .entry-summary
    {
        width: auto;
        height: auto;
        flex-grow: 1;
        color: black;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-size: 16px;
        font-weight: 400;
        text-wrap: wrap;

        padding: 10px 0px 20px 0px;
    }

    /* btn content */
    .MB_read_more_button_con 
    {
        width: 100%;
        height: auto;
        padding: 5px 0px;
        position: relative;
        display: flex;
        justify-content: center;
        align-self: flex-end;
        border-top: solid rgb(194, 194, 194) 1px;

        padding: 20px 0px 20px 0px;
    }
        .MB_read_more_button_con .MB_read_more_button
        {
            text-decoration: none;  
            font-size: 14px;
            color: rgb(0, 0, 0);
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            border: solid black 1px;
            padding: 10px 20px;
            transition: 0.5s;
            margin: 0 auto;
            display: block; 
            
            text-transform: capitalize;

            display: flex;
            justify-content: center;
            align-items: center;

        }
                .MB_read_more_button_con .MB_read_more_button:hover
                {
                    background-color: black;
                    color: white;
                }

/* thumbnail content */
.MB_article_item_con .post-thumbnail
{
    overflow: hidden;
    width: auto;
    height: auto;
    min-width: 300px;
    display: flex;
    justify-content: center;
}
        .MB_article_item_con .post-thumbnail img
        {
            width: auto;
            height: auto;
            max-width: 300px;
            object-fit: cover;
            display: block;
        }

@media screen and (maX-width: 800px) 
{
    .MB_article_item_con .post-thumbnail
    {
        align-items: center;
        width: 100%;
    }
}




























/* article */
.MB_single-content_con
{
    width: 100%;
    height: auto;

}

.MB_single-article-content
{
    width: 100%;
    height: auto;
    background-color: white;
    padding-top: 80px;
    padding-bottom: 80px;
}