.related-posts{
    position:relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.related-post{
    width: 32%;
/*    display: flex;
*/    position:relative !important;
    flex-flow: column wrap;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.15);
    box-shadow: 0 0 10px 0 rgba(0,0,0,.15);
    -webkit-transition: all .8s ease-out;
    -o-transition: all .8s ease-out;
    transition: all .8s ease-out;
}
.featured-img{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 240px;
    width: 100%;
    position: relative;
}
.related-post .img-overlay{
    display: block;
    content: "";
    background-image: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.35)),color-stop(75%,transparent));
    background-image: -webkit-linear-gradient(bottom,rgba(0,0,0,.35),transparent 75%);
    background-image: -o-linear-gradient(bottom,rgba(0,0,0,.35) 0,transparent 75%);
    background-image: linear-gradient(0deg,rgba(0,0,0,.35),transparent 75%);
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    opacity: 1;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
.related-post:hover .img-overlay{
    opacity: .5;
}
.related-post-content{
    display: flex;
    flex: 1;
    flex-flow: column wrap;
    padding: 30px;
}
.related-post-content h3{
    margin-bottom: 25px;
    margin-top: 0;
    font-size: 21px;
    color: #d33400;
    font-family:"adobe-caslon-pro";
    font-weight: 600;
    width: 100%;
}
.related-post-content p{
    font-family:"adobe-caslon-pro";
    font-weight: 400;
    margin-bottom: 25px;
    margin-top: 0;
    line-height: 1.5em;
    font-size: 14px;
    color: #777;
    width: 100%;
}
.related-post-content .read-more-link{
    margin-bottom: 0;
    color: #606572;
    font-family:"adobe-caslon-pro";
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    padding: 0;
    border: 0;
}
.related-post .meta-area{
    font-family:"adobe-caslon-pro";
    font-weight: 400;
    padding: 15px 30px;
    margin-bottom: 0;
    border-top: 1px solid #eaeaea;
    line-height: 1.3em;
    font-size: 12px;
    color: #adadad;
}
.related-post .meta-area span:not(:first-child):before{
    content: "•";
    margin: 0 5px;
}
.related-post-tag{
    background-color: #606572;
    font-family:"adobe-caslon-pro";
    font-weight: 500;
    position: absolute;
    margin: 20px;
    right: 0;
    text-transform: uppercase;
    top: 0;
    background: #818a91;
    color: #fff;
    font-size: 12px;
    padding: .6em 1.2em;
    line-height: 1;
    border-radius: 999px;
}

/**
* Media Query
*/
@media (max-width: 768px){
    .related-post{
        width: 100%;
        margin-bottom: 25px;
    }
}
