.page-news__hero-section {
    background-color: #F4F7FB; /* Background color */
    padding-top: 10px; /* Small top padding to account for header offset */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-news__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Adjust based on desired hero width */
    margin-bottom: 20px;
}

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

.page-news__hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.page-news__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 15px;
    max-width: 100%; /* Ensure it doesn't overflow */
}

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

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

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

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

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

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

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

.page-news__article-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.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: block;
}

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

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

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

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

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

.page-news__read-more-btn {
    display: inline-block;
    color: #2F6BFF; /* Primary color */
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__read-more-btn:hover {
    color: #4A8BFF; /* Lighter shade on hover */
}

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

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

.page-news__view-all-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.page-news__cta-section {
    background-color: #F4F7FB; /* Background color */
    padding: 80px 0;
    text-align: center;
}

.page-news__cta-title {
    font-size: 2.8em;
    font-weight: 700;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-news__cta-description {
    font-size: 1.2em;
    color: #1F2D3D; /* Text Main */
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.page-news__cta-button--large {
    padding: 16px 32px;
    font-size: 1.15em;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-news__section-title {
        font-size: 2em;
    }
    .page-news__cta-title {
        font-size: 2.2em;
    }
    .page-news__article-image {
        height: 200px;
    }
    .page-news__hero-image {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .page-news__main-title {
        font-size: 2em;
    }
    .page-news__hero-description {
        font-size: 1em;
    }
    .page-news__section-title {
        font-size: 1.8em;
    }
    .page-news__articles-grid {
        grid-template-columns: 1fr;
    }
    .page-news__article-image {
        height: 200px; /* Maintain minimum height */
        max-width: 100%;
    }
    .page-news__article-card img {
        max-width: 100%;
        height: auto;
    }
    .page-news__cta-title {
        font-size: 1.8em;
    }
    .page-news__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-news__hero-section {
        padding-bottom: 30px;
    }
    .page-news__main-title {
        font-size: 1.8em;
    }
    .page-news__hero-description {
        font-size: 0.9em;
    }
    .page-news__cta-button {
        padding: 12px 24px;
        font-size: 0.95em;
    }
    .page-news__articles-section {
        padding: 40px 0;
    }
    .page-news__section-title {
        font-size: 1.6em;
        margin-bottom: 30px;
    }
    .page-news__article-title {
        font-size: 1.2em;
    }
    .page-news__article-excerpt {
        font-size: 0.9em;
    }
    .page-news__cta-section {
        padding: 50px 0;
    }
    .page-news__cta-title {
        font-size: 1.6em;
    }
    .page-news__cta-description {
        font-size: 0.9em;
    }
    .page-news__cta-button--large {
        padding: 14px 28px;
        font-size: 1.05em;
    }
}

/* Ensure all images in content area are not too small */
.page-news__articles-section img, .page-news__hero-image {
    min-width: 200px;
    min-height: 200px;
}

@media (max-width: 768px) {
    .page-news__articles-section img, .page-news__hero-image {
        max-width: 100%;
        height: auto;
    }
}