.newsCoverSection {
    width: 100%;
    height: 750px;
    background: url(../img/newsCover_01.jpg) center;
    background-size: cover;
}

/*---------- News Item (start) ----------*/
.item {
    width: 30%;
    float: left;
    box-sizing: border-box;
    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: 110px;
    padding: 20px 20px 5px;
    box-sizing: border-box;
    text-align: left;
    font-weight: bold;
    font-size: 18px;
    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: 768px) and (max-width: 1200px) {
    .newsCoverSection {
        height: 500px;
    }

    .item {
        width: 47%;
    }

    .item:nth-child(3n+1) {
        margin: 0 1.5% 50px;
    }
    
    .item:nth-child(3n+2) {
        margin: 0 1.5% 50px;
    }
    
    .item:nth-child(3n+3) {
        margin: 0 1.5% 50px;
    }

    .item .cover {
        height: 250px;
    }

    .item .brief {
        height: 150px;
    }
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    .newsCoverSection {
        height: 300px;
        background: url(../img/newsCover_01.jpg) 30% center;
        background-size: cover;
    }

    .item {
        width: 100%;
    }
    
    .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;
    }
}

@media screen and (min-width: 501px) and (max-width: 767px) {
    .item .cover {
        height: 350px;
    }
}