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

.page-news__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding as per rule */
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-news__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit hero image height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-news__hero-content {
    position: relative;
    z-index: 10;
    padding: 20px;
    max-width: 900px;
    margin-top: 40px; /* Space below image */
}

.page-news__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #F2FFF6;
}

.page-news__subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #A7D9B8;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-news__button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 150px;
    text-align: center;
    font-size: 1rem;
}

.page-news__button--primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    border: none;
}

.page-news__button--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-news__button--secondary {
    background-color: transparent;
    border: 2px solid #2E7A4E;
    color: #F2FFF6;
}

.page-news__button--secondary:hover {
    background-color: rgba(46, 122, 78, 0.2);
    transform: translateY(-2px);
}

.page-news__news-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-news__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #F2FFF6;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-news__section-description {
    font-size: 1rem;
    color: #A7D9B8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-news__news-card {
    background-color: #11271B;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #2E7A4E;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.page-news__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-news__card-content {
    padding: 20px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.page-news__card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    flex-grow: 1;
}

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

.page-news__card-title a:hover {
    color: #2AD16F;
}

.page-news__card-text {
    font-size: 0.95rem;
    color: #A7D9B8;
    line-height: 1.5;
    margin-bottom: 20px;
}

.page-news__read-more {
    display: inline-block;
    color: #2AD16F;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    margin-top: auto; /* Pushes to the bottom */
}

.page-news__read-more:hover {
    color: #57E38D;
    text-decoration: underline;
}

.page-news__view-all-button-wrapper {
    margin-top: 30px;
}

.page-news__view-all-button {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.page-news__view-all-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-news__promo-banner {
    background-color: #0A4B2C;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #1E3A2A;
}

.page-news__promo-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #F2C14E; /* Gold color for emphasis */
    margin-bottom: 15px;
    font-weight: 700;
}

.page-news__promo-description {
    font-size: 1.1rem;
    color: #A7D9B8;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-news__hero-content {
        margin-top: 20px;
        padding: 15px;
    }
    .page-news__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-news__subtitle {
        font-size: 1rem;
    }
    .page-news__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-news__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-news__news-section {
        padding: 40px 15px;
    }
    .page-news__section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }
    .page-news__news-grid {
        grid-template-columns: 1fr;
    }
    .page-news__card-title {
        font-size: 1.1rem;
    }
    .page-news__card-text {
        font-size: 0.9rem;
    }
    .page-news__promo-banner {
        padding: 40px 15px;
    }
    .page-news__promo-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }
    .page-news__promo-description {
        font-size: 1rem;
    }

    /* Mobile overflow prevention for images */
    .page-news__hero-image,
    .page-news__card-image {
        max-width: 100%;
        height: auto;
    }
    /* Ensure content area images are not smaller than 200px */
    .page-news__card-image-wrapper {
        height: auto; /* Allow height to adjust */
    }
    .page-news__card-image {
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-news__main-title {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }
    .page-news__section-title {
        font-size: clamp(1.3rem, 7vw, 2rem);
    }
    .page-news__promo-title {
        font-size: clamp(1.3rem, 7vw, 2rem);
    }
}