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

.page-news__hero-section {
    position: relative;
    width: 100%;
    padding-bottom: 10px; /* Small top padding, body handles header offset */
    background-color: #2F6BFF;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-news__hero-image-wrapper {
    width: 100%;
    max-height: 675px;
    overflow: hidden;
}

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

.page-news__hero-content {
    text-align: center;
    padding: 30px 20px 50px;
    max-width: 900px;
    color: #FFFFFF;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-news__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-news__description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
}

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

.page-news__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

.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: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF;
}

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

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

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

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

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

.page-news__article-title:hover {
    color: #2F6BFF;
}

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

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

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

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

.page-news__view-all-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news__promotion-banner {
    background-color: #2F6BFF;
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
    margin-top: 40px;
}

.page-news__banner-title {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFFFFF;
}

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

.page-news__banner-cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Reusing button gradient */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-news__hero-image {
        height: 500px;
    }
    .page-news__main-title {
        font-size: clamp(2em, 5vw, 3em);
    }
    .page-news__section-title {
        font-size: 2em;
    }
    .page-news__banner-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-news__hero-image {
        height: 400px;
    }
    .page-news__hero-content {
        padding: 20px 15px 40px;
    }
    .page-news__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }
    .page-news__description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-news__articles-section {
        padding: 40px 0;
    }
    .page-news__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-news__articles-grid {
        grid-template-columns: 1fr;
    }
    .page-news__article-image {
        height: 200px;
    }
    .page-news__article-title {
        font-size: 1.2em;
    }
    .page-news__article-excerpt {
        font-size: 0.95em;
    }
    .page-news__promotion-banner {
        padding: 40px 15px;
    }
    .page-news__banner-title {
        font-size: 1.6em;
    }
    .page-news__banner-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-news__banner-cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    /* Ensure images in content area don't overflow */
    .page-news img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-news__hero-image {
        height: 300px;
    }
    .page-news__main-title {
        font-size: clamp(1.5em, 7vw, 2em);
    }
    .page-news__cta-button {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    .page-news__section-title {
        font-size: 1.5em;
    }
    .page-news__article-title {
        font-size: 1.1em;
    }
    .page-news__banner-title {
        font-size: 1.4em;
    }
}