.page-news {
    background-color: #F4F7FB; /* Background: #F4F7FB */
    color: #1F2D3D; /* Text Main: #1F2D3D */
    padding-bottom: 40px;
}

/* Hero Section */
.page-news__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
    text-align: center;
    max-width: 1390px; /* Boxed sense */
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.page-news__hero-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
}

.page-news__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-news__hero-content {
    max-width: 900px;
}

.page-news__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Example clamp for H1 */
}

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

.page-news__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3); /* Using blue for button shadow, coordinating with Glow: #A5C4FF */
}

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

/* Latest News Section */
.page-news__latest-news-section {
    max-width: 1390px; /* Boxed sense */
    margin: 0 auto;
    padding: 40px 20px;
}

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

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

.page-news__news-card {
    background-color: #FFFFFF; /* Card BG: #FFFFFF */
    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;
    border: 1px solid #D6E2FF; /* Border: #D6E2FF */
}

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

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

.page-news__news-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-news__news-card-content {
    padding: 25px;
}

.page-news__news-card-date {
    display: block;
    font-size: 0.9rem;
    color: #6FA3FF; /* Auxiliary color for date */
    margin-bottom: 10px;
    font-weight: 500;
}

.page-news__news-card-title {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}

.page-news__news-card-title a {
    color: #1F2D3D; /* Text Main: #1F2D3D */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__news-card-title a:hover {
    color: #2F6BFF; /* Primary color for link hover */
}

.page-news__news-card-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main: #1F2D3D */
    margin-bottom: 20px;
}

.page-news__news-card-link {
    display: inline-block;
    color: #2F6BFF; /* Primary color for link */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-news__news-card-link:hover {
    text-decoration: underline;
    color: #4A8BFF;
}

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

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

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

/* Responsive design */
@media (max-width: 768px) {
    .page-news__hero-section {
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 30px;
    }

    .page-news__main-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        margin-bottom: 15px;
    }

    .page-news__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .page-news__cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .page-news__latest-news-section {
        padding: 30px 15px;
    }

    .page-news__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .page-news__news-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }

    .page-news__news-card-title {
        font-size: 1.2rem;
    }

    .page-news__news-card-excerpt {
        font-size: 0.95rem;
    }

    /* Ensure content area images do not overflow */
    .page-news img {
        max-width: 100%;
        height: auto;
    }
}