.news-page {
    background: #ffffff;
    font-family: Inter, 'Segoe UI', system-ui, sans-serif;
}

/* Match the navbar/footer geometry so the page's left & right edges line up. */
.news-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .news-container {
        max-width: 1800px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Header band */
.news-header {
    background: #f7fafc;
    border-bottom: 1px solid #eef1f5;
    padding: 3rem 0 2.25rem;
}

.news-heading {
    font-size: clamp(1.9rem, 5vw, 2.6rem);
    font-weight: 800;
    color: #0b2d5f;
    margin: 0;
}

.news-subheading {
    margin: 0.5rem 0 0;
    color: #6c757d;
    font-size: 1rem;
}

/* Listing */
.news-list-section {
    padding: 2.5rem 0 4rem;
}

.news-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.news-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid #eef1f5;
}

    .news-item:first-child {
        padding-top: 0;
    }

.news-item-thumb {
    flex: 0 0 220px;
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

    .news-item-thumb img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .news-item-thumb:hover img {
        transform: scale(1.04);
    }

.news-item-body {
    flex: 1;
    min-width: 0;
}

.news-item-date {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #D4A017;
    margin-bottom: 0.4rem;
}

.news-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.5rem;
}

    .news-item-title a {
        color: #1a2744;
        text-decoration: none;
        transition: color 0.15s ease;
    }

        .news-item-title a:hover {
            color: #0f2f96;
        }

.news-item-summary {
    color: #55606f;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item-more {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f2f96;
    text-decoration: none;
    transition: gap 0.15s ease, color 0.15s ease;
}

    .news-item-more:hover {
        color: #D4A017;
        gap: 0.55rem;
    }

.news-empty {
    color: #6c757d;
    padding: 1rem 0;
}

@media (max-width: 640px) {
    .news-item {
        flex-direction: column;
        gap: 0.9rem;
    }

    .news-item-thumb {
        flex-basis: auto;
    }

        .news-item-thumb img {
            height: 200px;
        }
}
