.BlogPost {
    display:flex;
    width:100%;
    flex-wrap:wrap;
    margin-top:50px;
    margin-bottom:50px;
}
    @media only screen and (min-width : 768px) {
    .BlogPost { 
        flex-wrap:nowrap;
    }
    }
    .BlogPost h2 {
        margin-top:0;
        text-align:left;
    }
.BlogPost-Image {
        margin-right:30px;
        max-width:407px;
        width:100%;
}
@media only screen and (min-width : 576px) and (max-width : 767px) {
    .BlogPost-Image {    
            width:100%;
            margin:0;
            max-width:767px;
    }
        }
@media only screen and (max-width : 575px) {
    .BlogPost-Image {    
            width:100%;
            margin:0;
            max-width:575px;
    }
        }
@media only screen and (min-width : 768px) and (max-width : 991px) {
    .BlogPost-Image {    
            width:100%;
            max-width:300px;
    }
        }
.BlogPost-Image img {
            max-width:407px;
            width:100%;
        }
@media only screen and (max-width : 575px) {
    .BlogPost-Image img {
                max-width:575px;
                width:100%;
                margin-right:0
        }
            }
@media only screen and (min-width : 576px) and (max-width : 767px) {
    .BlogPost-Image img {
                max-width:767px;
                width:100%;
                margin-right:0px
        }
            }
@media only screen and (min-width : 768px) and (max-width : 991px) {
    .BlogPost-Image img {
                max-width:300px
        }
            }
.BlogPost-Copy {
        width:100%;
}
@media only screen and (min-width : 576px) and (max-width : 767px) {
    .BlogPost-Copy {    
            width:100%;
            margin-top:10px;
    }
        }
@media only screen and (max-width : 575px) {
    .BlogPost-Copy {    
            width:100%;
            margin-top:10px;
    }
        }
.BlogPost-btnWrap {
        margin-top: 10px;
}
.information {
    display:inline-block;
    margin-top:0;
}
.author {
    margin-right:30px;
}
.BlogPost:first-child {
    margin-top:25px;
}