.facebook-feed{
    background-color: #fff;
    padding: 5px 0;
}
.facebook-feed .feed-title{
    text-align: center;
    color: #000;
    margin: 25px 0;
}
.facebook-feed .facebook-link{
    display: block;
    text-decoration: none;
    text-align: center;
    margin: 20px 0 40px;
    padding: 10px 0;
    color: #fff;
    font-weight: 700;
    background-color: #7d7d7d;
    border-radius: 20px;
}
.facebook-posts {
    overflow: hidden;
    padding: 20px 0 40px;
    font-size: 15px;
}
.facebook-posts a{
    text-decoration: none;
}
.facebook-posts .post{
    float: left;
    width: 25%;
}
    .facebook-posts .date {
        margin: 0 10px;
        padding: 10px 10px 0;
        color: #000000;
        background-color: #ECECEC;
    }
.facebook-posts .message{
    min-height: 70px;
    margin: 0 10px 10px;
    padding: 0 10px 10px;
    color:#6b6b6b;
    background-color: #ebebeb;
    overflow: hidden;
}
.facebook-posts .post .image{
    height: 200px;
    position: relative;
    overflow: hidden;
    margin: 0 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
@media screen and (max-width: 860px)
{
    .facebook-posts .post{
        width: 50%;
    }
}
@media screen and (max-width: 480px)
{
    .facebook-posts .post{
        width: auto;
        float: none;
    }
}