.news-summary {
    margin: 24px 0 32px;
}

.summary-box {
    display: inline-block;
    max-width: 860px;
    background: #f5f7fb;
    border-left: 4px solid #1a73e8;
    padding: 22px 24px;
    border-radius: 6px;
    box-sizing: border-box;
}

.summary-heading {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px;
}

.news-summary ul {
    margin: 0;
    padding-left: 20px;
}

.news-summary ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 10px;
}

.article-table {
    width: max-content;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.article-table thead {
    background: #111827;
}

.article-table thead th {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 20px;
    text-align: right;
    border: 1px solid #1f2937;
    white-space: nowrap;
}

.article-table tbody td {
    padding: 14px 20px;
    border: 1px solid #e5e7eb;
    color: #374151;
    line-height: 1.7;
    vertical-align: top;
    white-space: nowrap;
}

.article-table tbody tr:nth-child(even) {
    background: #f9fafb;
}

@media (max-width: 768px) {
    /* Summary & Also Read Mobile Fixes */
    .summary-box {
        display: block;
        width: 100%;
        padding: 18px;
    }
    .summary-heading {
        font-size: 20px;
    }
    .news-summary ul li {
        font-size: 15px;
        line-height: 1.7;
    }
    .also-read-box {
        padding: 16px 18px;
        margin: 24px 0;
    }
    .also-read-link {
        font-size: 16px;
        line-height: 1.5;
    }

    /* ══════ MOBILE TABLE FIX (LAPTOP LOOK WITH SCROLL) ══════ */
    .article-table {
        display: block !important; /* Table ko block element banayega */
        width: 100%;
        overflow-x: auto !important; /* Horizontal scrollbar add karega */
        -webkit-overflow-scrolling: touch !important; /* iPhones par smooth scrolling ke liye */
        border: 1px solid #e5e7eb;
    }
    
    /* Header aur data ko ek hi line mein rakhne ke liye */
    .article-table th,
    .article-table td {
        white-space: nowrap !important; 
    }
}

.also-read-box {
    margin: 32px 0;
    padding: 18px 22px;
    background: #f5f7fb;
    border-left: 4px solid #1a73e8;
    border-radius: 6px;
    max-width: 860px;
    box-sizing: border-box;
}

.also-read-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #1a73e8;
    margin-bottom: 8px;
}

.also-read-link {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.also-read-link:hover {
    color: #1a73e8;
}

@media (max-width: 768px) {

    .also-read-box {
        padding: 16px 18px;
        margin: 24px 0;
    }

    .also-read-link {
        font-size: 16px;
        line-height: 1.5;
    }
}
