.page-news__hero-section {
    position: relative;
    width: 100%;
    padding-bottom: 10px; /* Small top padding */
    background-color: #F4F7FB;
    color: #1F2D3D;
    overflow: hidden;
}

.page-news__hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 675px; /* Limit height for hero */
}

.page-news__hero-content {
    max-width: 1200px;
    margin: 20px auto 40px auto;
    padding: 0 20px;
    text-align: center;
}

.page-news__main-title {
    font-size: clamp(2.2em, 4.5vw, 2.8em); /* Adjusted clamp to ensure it's not too large */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1F2D3D;
}

.page-news__description {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #1F2D3D;
}

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

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

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

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

.page-news__article-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px 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 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-news__article-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.page-news__article-card:hover .page-news__article-image {
    transform: scale(1.05);
}

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

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

.page-news__article-title a {
    color: #1F2D3D;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__article-title a:hover {
    color: #2F6BFF; /* Main brand color for hover */
}

.page-news__article-excerpt {
    font-size: 0.95em;
    line-height: 1.6;
    color: #1F2D3D;
    margin-bottom: 15px;
}

.page-news__article-date {
    font-size: 0.85em;
    color: #000000; /* Custom Color_1776249996415 */
    display: block;
}

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

.page-news__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: 1.05em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-news__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(47, 107, 255, 0.4);
}

.page-news__paragraph {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #1F2D3D;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-news__hero-content {
        margin: 15px auto 30px auto;
    }

    .page-news__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

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

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

    .page-news__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-news__article-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .page-news__article-image-wrapper {
        height: auto; /* Allow image wrapper to adapt to image aspect ratio */
    }
    .page-news__article-image {
        height: auto; /* Allow image to adapt to image aspect ratio */
    }

    .page-news__article-title {
        font-size: 1.2em;
    }

    .page-news__article-excerpt,
    .page-news__paragraph {
        font-size: 0.95em;
    }
}

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

/* Mobile specific min-size enforcement, overriding any potential smaller values */
@media (max-width: 768px) {
    .page-news__hero-image,
    .page-news__article-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; 
        min-height: 200px; 
    }
}