.page-news {
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #F4F7FB;
    color: #1F2D3D;
}

.page-news__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1390px;
    margin: 0 auto 40px auto;
    padding: 20px;
    text-align: center;
}

.page-news__hero-image-wrapper {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-news__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-news__hero-content-wrapper {
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 800px;
    margin-top: -60px; /* Overlap slightly with image for visual interest */
    position: relative;
    z-index: 1;
}

.page-news__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 15px;
    max-width: 100%;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

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

.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: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
    min-width: 200px; /* Ensure button is not too small */
    min-height: 48px; /* Ensure button is not too small */
    line-height: 20px;
    font-size: 1.05em;
    border: none;
    cursor: pointer;
}

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

.page-news__latest-articles-section {
    max-width: 1390px;
    margin: 40px auto;
    padding: 20px;
}

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

.page-news__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #2F6BFF;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.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: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure cards have consistent height */
    display: flex;
    flex-direction: column;
}

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

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

.page-news__article-image {
    width: 100%;
    height: 225px;
    object-fit: cover;
    display: block;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

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

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

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

.page-news__article-date {
    font-size: 0.85em;
    color: #6FA3FF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.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: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
    min-width: 200px; /* Ensure button is not too small */
    min-height: 48px; /* Ensure button is not too small */
    line-height: 20px;
    font-size: 1em;
    border: none;
    cursor: pointer;
}

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

.page-news__newsletter-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFFFFF;
    max-width: 1390px;
    margin: 60px auto;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    gap: 30px;
}

.page-news__newsletter-content {
    text-align: center;
    max-width: 600px;
}

.page-news__newsletter-title {
    font-size: 2em;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.page-news__newsletter-description {
    font-size: 1.05em;
    color: #1F2D3D;
    line-height: 1.6;
    margin-bottom: 25px;
}

.page-news__newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.page-news__newsletter-input {
    flex-grow: 1;
    padding: 12px 20px;
    border: 1px solid #D6E2FF;
    border-radius: 8px;
    font-size: 1em;
    min-width: 250px; /* Ensure input is not too small */
    color: #1F2D3D;
    background-color: #F4F7FB;
}

.page-news__newsletter-input::placeholder {
    color: #6FA3FF;
}

.page-news__newsletter-submit-button {
    padding: 12px 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
    min-width: 120px; /* Ensure button is not too small */
    min-height: 48px; /* Ensure button is not too small */
    font-size: 1em;
}

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

.page-news__newsletter-image-wrapper {
    width: 100%;
    max-width: 500px;
    margin-top: 20px;
}

.page-news__newsletter-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* Responsive adjustments */
@media (min-width: 769px) {
    .page-news__newsletter-section {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .page-news__newsletter-content {
        text-align: left;
    }

    .page-news__newsletter-form {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .page-news__hero-content-wrapper {
        margin-top: -40px;
        padding: 15px;
    }

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

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

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

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

    .page-news__article-image,
    .page-news__hero-image,
    .page-news__newsletter-image {
        max-width: 100%;
        height: auto;
    }

    .page-news__newsletter-section {
        flex-direction: column;
        padding: 20px;
    }

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

    .page-news__newsletter-input {
        min-width: unset;
        width: 100%;
    }

    .page-news__newsletter-submit-button {
        width: 100%;
        min-width: unset;
    }

    /* Content area images must not be less than 200px */
    .page-news img {
        min-width: 200px;
        min-height: 200px;
    }
}