
.category-section{
    padding:40px 0;
    background:#f5f5f5;
}

.category-title{
    background:#fff;
    padding:20px;
    border-left:5px solid #ff0000;
    margin-bottom:30px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.category-title h2{
    margin:0;
    font-size:32px;
    font-weight:700;
    color:#111;
    text-transform:uppercase;
}

.news-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    margin-bottom:30px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
    height:100%;
}

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

.news-img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.news-content{
    padding:20px;
}

.news-meta{
    margin-bottom:10px;
}

.news-meta span{
    font-size:13px;
    color:#777;
    margin-right:10px;
}

.news-title{
    font-size:20px;
    font-weight:700;
    line-height:30px;
    margin-bottom:12px;
}

.news-title a{
    color:#111;
    text-decoration:none;
}

.news-title a:hover{
    color:#ff0000;
}

.news-desc{
    color:#555;
    font-size:15px;
    line-height:26px;
}

.read-btn{
    display:inline-block;
    margin-top:15px;
    background:#ff0000;
    color:#fff;
    padding:10px 20px;
    border-radius:6px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
}

.read-btn:hover{
    background:#d90000;
    color:#fff;
}

.no-news{
    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:10px;
    font-size:20px;
    font-weight:600;
}

@media(max-width:768px){

    .category-title h2{
        font-size:24px;
    }

    .news-img{
        height:200px;
    }

    .news-title{
        font-size:17px;
        line-height:26px;
    }

    .news-desc{
        font-size:14px;
        line-height:24px;
    }

}

