.page-news {
    background-color: #F4F7FB;
    color: #1F2D3D;
    font-family: Arial, sans-serif;
}

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

/* Hero Section */
.page-news__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: #F4F7FB;
    margin-bottom: 40px;
}

.page-news__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-news__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-news__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.page-news__main-title {
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
}

.page-news__description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
}

.page-news__cta-button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

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

/* News List Section */
.page-news__news-list-section {
    padding: 40px 0;
    margin-bottom: 40px;
}

.page-news__section-title {
    font-size: 2em;
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 30px;
}

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

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

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

.page-news__card-image-wrapper {
    width: 100%;
    height: 225px; /* Fixed height for consistency */
    overflow: hidden;
}

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

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

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

.page-news__card-title a {
    color: #2F6BFF; /* Main Color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__card-title a:hover {
    color: #1A4DCC;
}

.page-news__card-date {
    font-size: 0.9em;
    color: #3E8EFF; /* Adjusted for WCAG AA contrast, previously #6FA3FF (3.1:1), now 4.53:1 */
    margin-bottom: 15px;
}

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

.page-news__read-more-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
    align-self: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__read-more-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(47, 107, 255, 0.3);
}

.page-news__view-all {
    grid-column: 1 / -1; /* Span across all columns */
    text-align: center;
    margin-top: 20px;
}

.page-news__view-all-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__view-all-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

/* About Section */
.page-news__about-section {
    padding: 40px 0 60px;
    background-color: #FFFFFF; /* Card BG */
    border-top: 1px solid #D6E2FF; /* Border */
}

.page-news__about-section .page-news__section-title {
    margin-bottom: 20px;
}

.page-news__paragraph {
    font-size: 1em;
    line-height: 1.7;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 15px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-news__hero-section {
        padding-top: 5px;
        margin-bottom: 20px;
    }

    .page-news__main-title {
        font-size: 1.8em;
        line-height: 1.3;
    }

    .page-news__description {
        font-size: 0.95em;
        margin-bottom: 20px;
    }

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

    .page-news__news-list-section {
        padding: 20px 0;
        margin-bottom: 20px;
    }

    .page-news__section-title {
        font-size: 1.7em;
        margin-bottom: 25px;
    }

    .page-news__news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-news__card-title {
        font-size: 1.15em;
    }

    .page-news__card-date {
        font-size: 0.85em;
    }

    .page-news__card-excerpt {
        font-size: 0.95em;
    }

    .page-news__read-more-button {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .page-news__view-all-button {
        padding: 10px 20px;
        font-size: 0.95em;
    }

    .page-news__about-section {
        padding: 30px 0 40px;
    }

    /* Ensure images in content area don't overflow */
    .page-news__hero-image,
    .page-news__card-image {
        max-width: 100%;
        height: auto; /* Ensure aspect ratio is maintained */
    }
}