.page-news__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding to avoid header overlap */
    background-color: #F4F7FB;
    color: #1F2D3D;
}

.page-news__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-news__hero-image {
    width: 100%;
    height: auto;
    display: block;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.page-news__hero-content-wrapper {
    max-width: 1200px;
    width: 90%;
    text-align: center;
    padding: 20px 0 40px;
}

.page-news__hero-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1F2D3D;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-news__hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #1F2D3D;
    margin-bottom: 30px;
}

.page-news__hero-cta-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
    min-width: 200px; /* Ensure button itself is not too small */
}

.page-news__hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-news__articles-section {
    background-color: #F4F7FB;
    padding: 60px 0;
}

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

.page-news__articles-heading {
    font-size: 2.2em;
    font-weight: bold;
    color: #1F2D3D;
    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: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-news__article-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.page-news__article-image {
    width: 100%;
    height: 225px; /* Fixed height for consistent card appearance */
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

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

.page-news__article-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #1F2D3D;
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-news__article-date {
    font-size: 0.9em;
    color: #6FA3FF;
    margin-bottom: 15px;
}

.page-news__article-excerpt {
    font-size: 1em;
    color: #1F2D3D;
    line-height: 1.6;
}

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

.page-news__view-all-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid #2F6BFF;
    color: #2F6BFF;
    background-color: transparent;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 200px;
}

.page-news__view-all-button:hover {
    background-color: #2F6BFF;
    color: #FFFFFF;
}

.page-news__cta-section {
    background-color: #2F6BFF;
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-news__cta-heading {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-news__cta-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF;
}

.page-news__cta-button {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
}

.page-news__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-news__hero-title {
        font-size: 2.5em;
    }

    .page-news__articles-heading {
        font-size: 2em;
    }

    .page-news__cta-heading {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-news__hero-title {
        font-size: 2em;
    }

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

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

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

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

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

    .page-news__articles-section, .page-news__cta-section {
        padding: 40px 0;
    }

    .page-news__articles-heading {
        font-size: 1.8em;
    }

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

@media (max-width: 480px) {
    .page-news__hero-title {
        font-size: 1.5em;
    }

    .page-news__hero-cta-button, .page-news__view-all-button, .page-news__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-news__articles-heading {
        font-size: 1.5em;
    }

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

    .page-news__cta-heading {
        font-size: 1.5em;
    }
    .page-news__hero-image-wrapper {
        margin-bottom: 15px;
    }
    .page-news__hero-content-wrapper {
        padding: 15px 0 30px;
    }
}