body
{
    position: absolute;
}
.news-box
{
    width: 80%;
    margin: 0 auto;
    margin-top: 5%;
    box-sizing: border-box;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.news
{
    height: 250px;
    clear: both;
    width: 100%;
    padding: 20px;
}
.news .image
{
    width: 40%;
    float: left;
    margin-right: 20px;
    height: 270px;
}
.news .heading
{
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 10px;
}
/* styles for '...' */
.news .content
{
    width: calc(50% - 20px);
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    line-height: 1.2em;
    max-height: 4.8em;
    text-align: justify;
    margin-right: -1em;
    padding-right: 1em;
}
/* create the ... */
.news .content:before
{
    content: '...';
    position: absolute;
    right: 0;
    bottom: 0;
}
.news .content:after
{
    content: '';
    position: absolute;
    right: 0;
    width: 1em;
    height: 1em;
    margin-top: 0.2em;
    background: #f4f4f4;
}
.news .date
{
    font-size: 0.8em;
}
.news a.btn
{
    text-decoration: none;
}
.read-more
{
    position: absolute;
    top: 3%;
    margin-bottom: 3%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    display: none;
    width: 40%;
}
.read-more .image
{
    height: 340px;
}
.read-more .heading
{
    font-size: 2em;
    font-weight: bold;
    margin-top: 30px;
}
.read-more .content
{
    margin-top: 10px;
}
.read-more .date
{
    font-size: .8em;
    margin-top: 5px;
}
/* phones */
@media only screen and (max-width: 600px){
    .read-more
    {
        width: 80%;
    }
    .news
    {
        height: auto;
        padding-bottom: 50px;
    }
    .news .image
    {
        width: calc(100% - 20px * 2); /*100% - padding of .news * 2*/
        margin-bottom: 10px;
    }
    .news .content
    {
        width: calc(100% - 20px * 2); /*100% - padding of .news * 2*/
    }
}
/*small phones*/
@media only screen and (max-width: 400px) {
    .news
    {
        padding: 5px;
        padding-bottom: 50px;
    }
    .news .image
    {
        width: calc(100% - 5px * 2); /*100% - padding of .news * 2*/
    }
    .news .content
    {
        width: calc(100% - 5px * 2); /*100% - padding of .news * 2*/
    }
}