#body
{
    main
    {
        article
        {
            margin-bottom:50px;
            picture
            {
                display: block;
                border:2px solid #f1f1f1;
                img
                {
                    width: 100%;
                    display: block;
                }
            }
            div
            {
                position: relative;
                padding-bottom:50px;
                h2
                {
                    font-size:32px;
                    letter-spacing: 3px;
                    margin-bottom: 20px;
                    span
                    {
                        color:#999;
                        display: inline-block;
                        border-bottom: 3px solid #bd9865;
                        padding-bottom: 20px;
                    }
                }
                p
                {
                    line-height: 150%;
                    color:#666;
                    font-weight: 100;
                    font-size: 14px;
                    letter-spacing: 2px;
                }
                .btn
                {
                    transition-duration:.5s;
                    width: 100%;
                    color:#666;
                    border:1px solid #999;
                    line-height: 38px;
                    text-align: center;
                    position: absolute;
                    bottom:0px;
                    left: 0px;
                    border-radius: 5px;
                    &:hover
                    {
                        border-color:$main-color;
                        background:$main-color;
                        color:#fff;
                    }
                }
            }
            @media(min-width:768px)
            {
                display: flex;
                picture
                {
                    width: calc(50% - 20px);
                    margin-right: 20px;
                }
                div
                {
                    width: calc(50% - 20px);
                    margin-left:20px;

                }
            }
            @media(max-width:767px)
            {
                picture
                {
                    margin-bottom: 50px;
                }
                div
                {
                    margin-bottom: 50px;
                    p
                    {
                        margin-bottom: 50px;
                    }
                }
            }
        }

        aside
        {
            padding-top:100px;
            padding-bottom:100px;
            display: flex;
            flex-wrap:wrap;
            background: #f1f1f1;
            picture
            {
                width: 50%;
                img
                {
                    display: block;
                    width: 100%;
                }
            }
            @media(min-width:768px)
            {
                picture
                {
                    width: 25%;
                }
            }
        }
    }
}
