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

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

.page-news__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding */
    margin-bottom: 40px;
    text-align: center;
    background-color: #FFFFFF;
    border-bottom: 1px solid #D6E2FF;
}

.page-news__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for image container */
}

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

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

.page-news__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
}

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

.page-news__cta-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: bold;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-news__cta-button:hover {
    opacity: 0.9;
}

.page-news__articles-section,
.page-news__about-us-section {
    padding: 40px 0;
    margin-bottom: 20px;
}

.page-news__section-title {
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.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: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-news__article-card:hover {
    transform: translateY(-5px);
}

.page-news__article-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.page-news__article-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-news__article-title {
    font-size: 1.3em;
    font-weight: bold;
    color: #2F6BFF;
    margin-bottom: 10px;
    line-height: 1.4;
}

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

.page-news__article-summary {
    font-size: 1em;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    flex-grow: 1;
}

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

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

.page-news__view-all-button:hover {
    opacity: 0.9;
}

.page-news__about-text {
    font-size: 1.1em;
    line-height: 1.7;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
    text-align: center;
}

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

    .page-news__main-title {
        font-size: 2em; /* Smaller on mobile */
    }

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

    .page-news__section-title {
        font-size: 1.8em;
    }

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

    .page-news__article-image {
        max-width: 100%;
        height: auto; /* Ensure image scales down */
    }

    .page-news__article-card img {
        max-width: 100%;
        height: auto; /* Required for mobile content images */
    }

    .page-news__about-text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-news__main-title {
        font-size: 1.8em;
    }

    .page-news__section-title {
        font-size: 1.6em;
    }
    
    /* Ensure content images are not smaller than 200px when possible, but respect max-width: 100% */
    .page-news__article-image {
        min-width: 200px;
        min-height: 200px;
    }
}

/* Ensure all images within .page-news adhere to min size and responsive rules */
.page-news img {
    min-width: 200px; /* Global minimum for content images */
    min-height: 200px; /* Global minimum for content images */
}

/* Override for specific elements where a smaller visual is intended and allowed (e.g., logos in shared header/footer, which are outside main) */
/* The general rule for content images (within .page-news) is min 200px. */