.newsCoverSection {
    width: 100%;
    height: 750px;
    background: url(../img/newsCover.jpg) center 20%;
    background-size: cover;
}

/*---------- News Item (start) ----------*/
.item {
    width: 30%;
    float: left;
    border: solid 1px #e0e0e0;
    transition: box-shadow 0.5s;
}

.item:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.item:nth-child(3n+1) {
    margin: 0 3% 50px  0;
}

.item:nth-child(3n+2) {
    margin: 0 1.5% 50px;
}

.item:nth-child(3n+3) {
    margin: 0 0 50px 3%;
}

.item .cover {
    height: 250px;
    box-sizing: border-box;
    border-bottom: dotted 1px #c0c0c0;
}

.item .title {
    height: 80px;
    padding: 20px 20px 5px;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 20px;
    color: #505050;
}

.item .date {
    padding: 0 20px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #808080;
}

.item .brief {
    padding: 30px 20px;
    box-sizing: border-box;
    color: #505050;
}

.item .brief .more {
    color: #ff4c00;
}

.item .brief .more:hover {
    color: #ff4c00;
    text-shadow: 0 0 5px rgba(255, 76, 0, 0.5);
}
/*---------- News Item (end) ----------*/

@media screen and (min-width: 1367px) and (max-width: 1600px) {
    .newsCoverSection {
        height: 600px;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1366px) {
    .newsCoverSection {
        height: 500px;
    }
}

@media screen and (min-width: 1px) and (max-width: 1200px) {
    .newsCoverSection {
        height: 300px;
    }

    .item {
        width: 100%;
        float: left;
    }
    
    .item:hover {
        box-shadow: none;
    }
    
    .item:nth-child(3n+1) {
        margin: 0 0 50px  0;
    }
    
    .item:nth-child(3n+2) {
        margin: 0 0 50px;
    }
    
    .item:nth-child(3n+3) {
        margin: 0 0 50px 0;
    }
    
    .item .cover {
        height: 180px;
    }
}

@media screen and (min-width: 801px) and (max-width: 850px) {
    .item {
        width: 48.5%;
    }
    
    .item:nth-child(2n+1) {
        margin: 0 1% 50px  0;
    }
    
    .item:nth-child(2n+2) {
        margin: 0 0 50px 1%;
    }
    
    .item .cover {
        height: 270px;
    }
}

@media screen and (min-width: 551px) and (max-width: 600px) {
    .item .cover {
        height: 390px;
    }
}