.page-news {
    background-color: #08160F;
    color: #F2FFF6;
    font-family: Arial, sans-serif;
}

.page-news__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 40px; /* Space between image and content if they are separate blocks */
    overflow: hidden;
}

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

.page-news__hero-content {
    max-width: 900px;
    padding: 0 20px;
    margin-top: 20px;
}

.page-news__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F2FFF6;
    letter-spacing: -0.03em;
}

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

.page-news__latest-news-section {
    padding: 60px 0;
    background-color: #08160F;
}

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

.page-news__section-title {
    font-size: clamp(2em, 3.5vw, 3em);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #F2FFF6;
    position: relative;
}

.page-news__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #11A84E, #22C768);
    margin: 15px auto 0;
    border-radius: 2px;
}

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

.page-news__news-card {
    background-color: #11271B;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2E7A4E;
}

.page-news__news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-news__card-image {
    width: 100%;
    height: 225px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #1E3A2A;
}

.page-news__card-content {
    padding: 25px;
}

.page-news__card-date {
    font-size: 0.9em;
    color: #A7D9B8;
    margin-bottom: 10px;
}

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

.page-news__card-title a {
    color: #F2FFF6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__card-title a:hover {
    color: #22C768;
}

.page-news__card-excerpt {
    font-size: 1em;
    color: #A7D9B8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-news__read-more-btn {
    display: inline-block;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(17, 168, 78, 0.4);
}

.page-news__read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(17, 168, 78, 0.6);
}

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

.page-news__view-all-btn {
    display: inline-block;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 5px 15px rgba(17, 168, 78, 0.5);
}

.page-news__view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(17, 168, 78, 0.7);
}

.page-news__cta-section {
    background-color: #11271B;
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #1E3A2A;
}

.page-news__cta-title {
    font-size: clamp(2em, 3.5vw, 2.8em);
    font-weight: 700;
    color: #F2FFF6;
    margin-bottom: 20px;
}

.page-news__cta-description {
    font-size: 1.1em;
    color: #A7D9B8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-news__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-news__cta-btn {
    display: inline-block;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    padding: 16px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 18px rgba(17, 168, 78, 0.6);
}

.page-news__cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(17, 168, 78, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-news__hero-image {
        height: 300px;
    }

    .page-news__main-title {
        font-size: 2.2em;
    }

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

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

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

    .page-news__card-image {
        height: 200px;
    }

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

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

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

    .page-news__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-news__cta-btn {
        width: 100%;
        max-width: 300px; /* Constrain width on small screens */
    }

    /* Ensure images within content areas are responsive */
    .page-news__latest-news-section img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-news__hero-image {
        height: 250px;
    }

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

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

    .page-news__card-image {
        height: 180px;
    }

    .page-news__card-title {
        font-size: 1.1em;
    }

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