.page-news {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* General bottom padding */
}

/* No padding-top for the main content area itself, as body handles header offset */
.page-news__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding for the first section */
    padding-bottom: 40px;
    background: linear-gradient(180deg, #2F6BFF, #6FA3FF); /* Gradient for hero section background */
    color: #FFFFFF;
    text-align: center;
    overflow: hidden; /* Ensure content doesn't spill */
}

.page-news__hero-image-wrapper {
    position: relative;
    width: 100%;
    max-height: 600px; /* Limit height of hero image wrapper */
    overflow: hidden;
    margin-bottom: 20px;
}

.page-news__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px; /* Max height for the image itself */
}

.page-news__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-news__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size, not fixed large value */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-news__intro-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #D6E2FF; /* Using border color for lighter text */
}

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

.page-news__latest-section {
    padding: 60px 0;
}

.page-news__section-title {
    font-size: 2.5em;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

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

.page-news__article-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF; /* Border color */
    display: flex;
    flex-direction: column;
}

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

.page-news__article-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-news__article-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency, will be object-fit */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #D6E2FF; /* Border color */
}

.page-news__article-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-news__article-title {
    font-size: 1.35em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1.3;
}

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

.page-news__article-excerpt {
    font-size: 1em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-news__read-more {
    display: inline-block;
    color: #2F6BFF; /* Primary color */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: auto; /* Push to bottom */
}

.page-news__read-more:hover {
    color: #4A8BFF; /* Lighter blue for hover */
}

.page-news__view-all {
    text-align: center;
}

.page-news__button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
}

.page-news__button--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    border: none;
}

.page-news__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(47, 107, 255, 0.4);
}

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

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

.page-news__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #D6E2FF; /* Lighter color for description */
}

.page-news__button--cta {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    border: none;
    padding: 16px 32px;
    font-size: 1.2em;
}

.page-news__button--cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 107, 255, 0.5);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-news__main-title {
        font-size: clamp(1.8em, 5vw, 3em);
    }
    .page-news__section-title {
        font-size: 2em;
    }
    .page-news__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-news__articles-grid {
        grid-template-columns: 1fr;
    }
    .page-news__hero-section {
        padding-bottom: 30px;
    }
    .page-news__latest-section {
        padding: 40px 0;
    }
    .page-news__cta-section {
        padding: 60px 0;
    }
    .page-news__article-image {
        height: 200px; /* Adjust height for smaller screens */
    }
    /* Mobile content area images must not overflow */
    .page-news img {
        max-width: 100%;
        height: auto;
    }
    .page-news__main-title {
        font-size: clamp(1.5em, 6vw, 2.5em);
    }
    .page-news__intro-text {
        font-size: 1em;
    }
    .page-news__section-title {
        font-size: 1.8em;
    }
    .page-news__cta-title {
        font-size: 2em;
    }
    .page-news__cta-description {
        font-size: 1em;
    }
    .page-news__button {
        padding: 12px 24px;
        font-size: 1em;
    }
    .page-news__button--cta {
        padding: 14px 28px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-news__hero-image-wrapper {
        max-height: 300px;
    }
    .page-news__hero-image {
        max-height: 250px;
    }
    .page-news__main-title {
        font-size: clamp(1.2em, 7vw, 2em);
    }
    .page-news__section-title {
        font-size: 1.5em;
    }
    .page-news__cta-title {
        font-size: 1.8em;
    }
}