.page-news__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    overflow: hidden;
    background-color: #100224; /* Fallback for hero section background */
}

.page-news__hero-image {
    width: 100%;
    height: auto;
    max-height: 500px; /* Limit height for hero image */
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.page-news__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.page-news__hero-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-white);
    margin-bottom: 15px;
}

.page-news__hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.page-news__latest-news-section {
    padding: 60px 0;
    background-color: var(--color-background);
}

.page-news__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-news__section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 40px;
}

.page-news__articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-news__article-card {
    background-color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-news__article-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-news__article-info {
    padding: 20px;
}

.page-news__article-date {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
    display: block;
}

.page-news__article-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-news__article-title a {
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__article-title a:hover {
    color: var(--color-primary);
}

.page-news__article-excerpt {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.page-news__read-more-link {
    display: inline-block;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-news__read-more-link:hover {
    color: #1a7bb7;
}

.page-news__view-all-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-news__view-all-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.page-news__view-all-button:hover {
    background-color: #1a7bb7;
}

.page-news__cta-section {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 60px 20px;
    text-align: center;
}

.page-news__cta-title {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-news__cta-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-news__cta-button {
    display: inline-block;
    background-color: #EA7C07; /* Login color for CTA */
    color: var(--color-white);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.page-news__cta-button:hover {
    background-color: #d16b06;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-news__hero-image {
        max-height: 300px;
    }

    .page-news__hero-title {
        font-size: clamp(1.8em, 5vw, 2.5em);
    }

    .page-news__hero-description {
        font-size: 1em;
    }

    .page-news__section-title {
        font-size: 2em;
    }

    .page-news__articles-grid {
        grid-template-columns: 1fr;
    }

    .page-news__article-image {
        max-width: 100%;
        height: auto;
    }

    .page-news__article-card img {
        max-width: 100%;
        height: auto;
    }

    .page-news__cta-title {
        font-size: 1.8em;
    }

    .page-news__cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-news__hero-section {
        padding-bottom: 30px;
    }

    .page-news__hero-title {
        font-size: clamp(1.5em, 6vw, 2em);
    }

    .page-news__section-title {
        font-size: 1.8em;
    }

    .page-news__article-title {
        font-size: 1.2em;
    }

    .page-news__article-excerpt {
        font-size: 0.9em;
    }
}

/* Global variables for colors */
:root {
    --color-primary: #26A9E0;
    --color-white: #FFFFFF;
    --color-login: #EA7C07;
    --color-background: #FFFFFF;
    --color-black: #000000;
}