/* Container */
.news-box {
    width: 100%;
    margin: 0 auto;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Top 2 Big Posts */
.top-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.big-post {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.big-post h2 {
    font-size: 25px; /* Requested size */
    font-weight: bold;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.big-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.big-snippet {
    font-size: 15px;
    color: #555;
    margin-top: 10px;
    line-height: 1.5;
}

/* Bottom 4 Posts Area */
.bottom-grid {
    display: flex;
    gap: 20px;
}

.bottom-left, .bottom-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Bottom Items Style */
.small-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.small-item.list-style {
    flex-direction: row; /* For posts 5 & 6 */
    align-items: flex-start;
}

.small-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
}

.list-style img {
    width: 120px;
    height: 80px;
}

.small-item h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
}

/* Links */
.news-box a { text-decoration: none; color: #000; }
.news-box a:hover { color: #e74c3c; }

/* --- Mobile View (2 Columns) --- */
@media screen and (max-width: 768px) {
    .top-grid {
        gap: 10px;
    }
    .big-post h2 {
        font-size: 18px;
    }
    .big-post img {
        height: 130px;
    }
    .big-snippet {
        display: none; /* Mobile मा ६० शब्द धेरै हुने भएकोले लुकाइएको */
    }
    .bottom-grid {
        gap: 10px;
    }
    .bottom-left, .bottom-right {
        gap: 10px;
    }
    .small-item img {
        height: 100px;
    }
    .list-style img {
        width: 80px;
        height: 60px;
    }
}
