.page-news__hero-section {
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
    text-align: center;
    padding-bottom: 40px; /* Space below hero content */
    background-color: #F4F7FB; /* Use background color from palette */
}

.page-news__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Example max height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-news__hero-content {
    max-width: 900px;
    margin: 20px auto 0 auto;
    padding: 0 20px;
    color: #1F2D3D; /* Use Text Main color for content */
}

.page-news__main-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #000000; /* Use Custom Color_1776249996415 for H1 */
}

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

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

.page-news__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
}

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

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

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

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

.page-news__article-card {
    background-color: #FFFFFF; /* Card BG color */
    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 */
}

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

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

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

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

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

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

.page-news__article-excerpt {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main color */
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.page-news__read-more:hover {
    color: #4A8BFF;
}

.page-news__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-news__pagination-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #D6E2FF; /* Border color */
    background-color: #FFFFFF; /* Card BG color */
    color: #2F6BFF; /* Primary color */
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.page-news__pagination-item:hover {
    background-color: #2F6BFF; /* Primary color */
    color: #FFFFFF;
    border-color: #2F6BFF;
}

.page-news__pagination-item--active {
    background-color: #2F6BFF; /* Primary color */
    color: #FFFFFF;
    border-color: #2F6BFF;
    cursor: default;
}

.page-news__pagination-item--active:hover {
    background-color: #2F6BFF; /* Primary color */
    color: #FFFFFF;
    border-color: #2F6BFF;
}

.page-news__call-to-action {
    background-color: #2F6BFF; /* Primary color */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.page-news__cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-news__cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-news__cta-button--secondary {
    background: #FFFFFF;
    color: #2F6BFF; /* Primary color */
    border: 1px solid #FFFFFF;
}

.page-news__cta-button--secondary:hover {
    background: #F4F7FB; /* Background color */
    color: #2F6BFF; /* Primary color */
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-news__hero-section {
        padding-top: 10px; /* Small padding-top for mobile hero section */
    }

    .page-news__hero-image-wrapper {
        max-height: 300px;
    }

    .page-news__main-title {
        font-size: 2rem;
    }

    .page-news__description {
        font-size: 1rem;
    }

    .page-news__articles-grid {
        grid-template-columns: 1fr;
    }

    .page-news__article-image {
        height: 200px; /* Ensure content images are at least 200px tall */
    }

    /* Important: Content area images must not cause overflow */
    .page-news__articles-section img,
    .page-news__hero-section img {
        max-width: 100%;
        height: auto;
    }

    .page-news__cta-title {
        font-size: 1.8rem;
    }

    .page-news__cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-news__hero-content {
        padding: 0 15px;
    }
    .page-news__main-title {
        font-size: 1.8rem;
    }
    .page-news__articles-section {
        padding: 40px 0;
    }
    .page-news__section-title {
        font-size: 2rem;
    }
    .page-news__cta-title {
        font-size: 1.6rem;
    }
}