
/* ==========================
   Article
========================== */

article{
    background:#fff;
    border-radius:20px;
    padding:40px;
    margin-bottom:40px;

    box-shadow:
    0 10px 35px rgba(0,0,0,.06);

    transition:.35s;
}

article:hover{

    transform:translateY(-4px);

    box-shadow:
    0 18px 45px rgba(0,0,0,.10);

}

.article-header-text{

    font-size:2rem;
    color:#1b1b1b;
    margin-bottom:20px;
    text-align:center;

}

.article-subheader-text{

    text-align:center;
    color:#999;
    margin-bottom:20px;

}

.article-description,
article p{

    font-size:1.05rem;
    color:#555;
    text-indent: 2rem;

}



strong{

    color:#8b6f3d;
    font-weight:700;

}




