/* =============================
   NEWS PAGE
   ============================= */

.news-page{
    padding:120px 8%;
    background:#f7f7f7;
}

.news-page-list{
    max-width:1000px;
    margin:0 auto;
}

.news-page-item{
    display:block;
    background:white;
    padding:40px;
    margin-bottom:30px;
    border-radius:20px;
    text-decoration:none;
    color:#111;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.news-page-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.news-date{
    color:#777;
    font-weight:bold;
    margin-right:15px;
}

.news-category{
    display:inline-block;
    padding:6px 16px;
    border-radius:30px;
    color:white;
    font-size:12px;
    font-weight:bold;
    letter-spacing:1px;
}

.match-cat{ background:#0d3b2a; }
.team-cat{ background:#146b49; }
.sponsor-cat{ background:#2f8fdd; }

.news-page-item h2{
    margin:22px 0 15px;
    color:#0d3b2a;
    font-size:28px;
}

.news-page-item p{
    line-height:1.8;
    color:#555;
}

@media (max-width:900px){
    .news-page{
        padding:80px 6%;
    }

    .news-page-item{
        padding:28px 22px;
    }

    .news-date{
        display:block;
        margin-bottom:12px;
    }

    .news-page-item h2{
        font-size:22px;
    }
}
.news-item{
    display:block;
    text-decoration:none;
    color:inherit;
}

.news-item:hover{
    transform:translateY(-5px);
}