/*==================================================
                    BLOG
==================================================*/

.blog{

    padding:90px 0;

    background:#FFF;

}

.blog-card{

    background:#FFF;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.blog-card:hover{

    transform:translateY(-10px);

}

.blog-card img{

    width:100%;

    height:250px;

    object-fit:cover;

}

.blog-content{

    padding:28px;

}

.blog-content h4{

    font-size:24px;

    color:#8A6A56;

}

.blog-content p{

    color:#666;

    line-height:1.8;

}

.blog-content a{

    text-decoration:none;

    color:#D8A2AD;

    font-weight:700;

}