.news-container {
    margin-top : 10px;
    padding : 20px;
}

.news-container .featured-title {
    border-left : 5px solid var(--main-color);
    padding-left : 20px;
}

.news-container .news-card {
    margin-top: 20px;
    /* height: 600px;  <-- ye hata dein, taake auto adjust ho */
    box-shadow: 0px 0px 1px black;
    background: #f1f2f1;
    border-radius: 20px;
    overflow: hidden; /* taake image bahar na nikle */
}

.news-container .news-card img {
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 200px; /* fix height set krni ho to */
    object-fit: cover; /* image ko crop kr k fit karega */
}
.news-container .news-card .category-badge {
    background : var(--main-color);
    color : white;
    padding : 5px;
    font-weight : bold;
    border-radius : 5px;
    
}
.news-container .news-card .news-content {
    padding : 10px;
    border-radius: 0 0 10px 10px;
    max-height : 400px;
}

