h1.h1_article
{
    padding: 40px 0;
    font-size: 40px;
}

.articles
{
    padding: 25px 0;
}

.articles .article
{
    display: flex;
    padding: 25px 0;
    align-items: start;
}

.article_photo
{
    width: 30%;
    overflow: hidden;
    border-radius: 10px;
}

.article_photo img
{
    max-width: 100%;
    transition: all 1.5s cubic-bezier(0,0,.2,1);
    vertical-align: top;
}

.article_photo img:hover
{
    transform: scale(1.1);
}

.articles .article_body
{
    width: 70%;
    box-sizing: border-box;
    padding: 5px 30px;
}

.articles .article_body a
{
    color: var(--green-light);
}

.articles .article_body h2
{
    padding-top: 0;
    padding-bottom: 15px;
    line-height: 1.3;
    font-size: 18px;
}

.articles .article_body h2 a
{
    text-decoration: none;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    transition: .3s;
    color: #3f3f3f;
}

.articles .article_body h2 a:hover
{
    color: var(--green-light);
}

span.data
{
    display: block;
    color: #213f4f;
    opacity: .5;
    text-transform: uppercase;
    letter-spacing: -.03em;
    font-size: 14px;
    padding-bottom: 10px;
}

.article_body p
{
    font-size: 16px;
    line-height: 1.6;
    color: var(--green-dark);
    padding-bottom: 20px;
}

.article_short
{
    padding-bottom: 10px;
}

img.main_photo
{
    margin-bottom: 20px;
}

img.main_photo + figcaption
{
    margin-bottom: 20px;
    margin-top: -15px;
    font-size: 10px;
    color: #999;
    text-align: center;
}

.text_in_img
{
    text-align: center;
    padding-bottom: 30px;
}

.text_in_img img
{
    border-radius: 8px;
    max-width: 100%;
}

@media (max-width: 720px) {

    .container
    {
        padding: 0 20px;
    }

    #top_buttons
    {
        padding: 10px;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .articles
    {
        padding-top: 0;
    }

    .articles .article
    {
        flex-direction: column;
    }

    .articles .article_photo
    {
        width: 100%;
    }

    .articles .article_body
    {
        padding: 30px 0 0;
        width: 100%;
    }

    .h1_article
    {
        font-size: 24px;
    }
}

