.post-container{
    margin-bottom:50px;
}
.post-container .image_container{
    min-height:500px;
    max-height:500px;
    height:100%;
    display:flex;
    background-size:cover ;
    background-position: top center;
    background-repeat: no-repeat;
}

@media screen and (max-width:768px){
    .post-container .image_container{
        min-height:350px;
        max-height:350px;
        height:100%;
        display:flex;
        background-size:cover ;
        background-position: top center;
        background-repeat: no-repeat;
    }
}

.post-container .date{
    display:flex;
    align-items: center;
    width:100%;
    justify-content: flex-end;
    margin-top:20px;
    margin-bottom:20px;
}
.post-container .date span{
    font-size:16px;
    font-weight: 600;
}
.post-container .date span:last-child{
    margin-left:5px;
}

.post-container .post-title{
    width:100%;
    display: flex;
    /*justify-content: center;*/
}

.post-container .post-title{
    /*text-align: center;*/
    font-size:45px;
    font-weight:800;
}

.post-container .post-body{
    padding-top:25px;
}