body {
    background: #f4f6f8;
    color: var(--text-dark);
    overflow-x: hidden;
    
    padding-top: calc(var(--header-height) + 5px);
}

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

.news-page {
    background: #f7f9fc;
    min-height: 100vh;
}

/* =========================
   HERO
========================= */

.news-hero {
    background: linear-gradient(135deg, #0b2a4a, #123c66);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.news-hero h1 {
    font-size: 38px;
    margin-bottom: 10px;
    font-weight: 700;
}

.news-hero p {
    font-size: 16px;
}

/* =========================
   CONTAINER
========================= */

.news-page .g-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* =========================
   FILTER PILLS
========================= */

.news-filters {
    margin: 25px 0;
    text-align: center;
}

.news-filter-pills {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.news-filter-btn {
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #d0d7e2;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    transition: 0.2s ease;
}

.news-filter-btn:hover {
    background: #f0f4fa;
}

.news-filter-btn.active {
    background: #0b2a4a;
    color: #fff;
    border-color: #0b2a4a;
}

/* =========================
   GRID
========================= */

.news-grid {
    margin-top: 20px;
}

.news-grid .g-section-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #0b2a4a;
}

/* =========================
   CARD COMPATIBILITY FIX
========================= */

.g-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.g-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.g-card p {
    font-size: 14px;
    color: #555;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .news-hero h1 {
        font-size: 28px;
    }
}