body {
    background-color: #08160F;
    color: #F2FFF6;
}

.page-news__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: #08160F;
    overflow: hidden;
}

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

.page-news__hero-content {
    padding: 40px 20px;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
    position: relative; /* Ensure content is below image, not overlaying */
    z-index: 1;
    background-color: #08160F; /* Ensure background for text readability */
}

.page-news__main-title {
    font-size: clamp(2em, 4.5vw, 3.2em);
    font-weight: 700;
    line-height: 1.2;
    color: #F2C14E; /* Gold for main title */
    margin-bottom: 15px;
}

.page-news__hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #A7D9B8;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-news__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-news__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-news__latest-news-section,
.page-news__featured-news-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #08160F;
}

.page-news__section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #F2C14E; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
}

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

.page-news__news-card,
.page-news__featured-card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid #2E7A4E; /* Border color */
}

.page-news__news-card:hover,
.page-news__featured-card:hover {
    transform: translateY(-5px);
}

.page-news__card-image,
.page-news__featured-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency in grid */
    object-fit: cover;
    display: block;
}

.page-news__featured-image {
    height: 338px; /* Larger height for featured image */
}

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

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

.page-news__card-title a,
.page-news__featured-title a {
    color: #F2FFF6; /* Text Main */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__card-title a:hover,
.page-news__featured-title a:hover {
    color: #22C768; /* Auxiliary color */
}

.page-news__card-date,
.page-news__featured-date {
    font-size: 0.9em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 15px;
}

.page-news__card-excerpt,
.page-news__featured-excerpt {
    font-size: 1em;
    line-height: 1.6;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
}

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

.page-news__read-more:hover {
    color: #57E38D; /* Glow color */
}

.page-news__view-all {
    text-align: center;
}

.page-news__view-all-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(34, 199, 104, 0.3);
}

.page-news__view-all-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 199, 104, 0.5);
}

.page-news__featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

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

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

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

    .page-news__latest-news-section,
    .page-news__featured-news-section {
        padding: 40px 15px;
    }

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

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

    .page-news__card-image,
    .page-news__featured-image {
        max-width: 100%;
        height: auto; /* Allow height to adjust for aspect ratio */
    }

    /* Ensure all content area images are at least 200px wide */
    .page-news__news-card img, 
    .page-news__featured-card img {
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .page-news__hero-image,
    .page-news__card-image,
    .page-news__featured-image {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Prevent content overflow on mobile */
    .page-news {
        overflow-x: hidden;
    }

    /* Ensure all content area images are at least 200px wide */
    .page-news__news-card img, 
    .page-news__featured-card img {
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 549px) {
    .page-news__main-title {
        font-size: clamp(1.5em, 8vw, 2em);
    }

    .page-news__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

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

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