/* =========================================
   STANDARDIZED PAGE HERO BANNER
   ========================================= */
.page-hero-banner {
    position: relative;
    width: 100%;
    height: 450px;
    padding-top: 80px;
    background-image: url('../images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 70, 50, 0.82);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 5%;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #efe5db;
    letter-spacing: 4px;
    margin: 0;
}

/* =========================================
   NEWS ARTICLES LIST SECTION (TEXT-ONLY)
   ========================================= */
.news-list-section {
    background-color: #efe5db;
    padding: 100px 5% 120px;
}

.news-container {
    max-width: 900px;
    margin: 0 auto;
}

.news-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1c4632;
    margin-bottom: 12px;
}

.news-intro h2 {
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #1c4632;
    line-height: 1.15;
}

.news-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.news-card {
    border-bottom: 1px solid rgba(28, 70, 50, 0.2);
    padding-bottom: 45px;
}

.news-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-info-col {
    width: 100%;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.news-date {
    color: #1c4632;
    opacity: 0.65;
}

.news-category {
    color: #efe5db;
    background-color: #1c4632;
    padding: 3px 10px;
    font-weight: 900;
    font-size: 0.75rem;
}

.news-title-link {
    color: #1c4632;
    text-decoration: none;
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.18;
    transition: color 0.2s ease;
    cursor: pointer;
}

.news-title-link:hover {
    color: #2a6649;
}

.news-info-col p {
    font-size: 1.12rem;
    line-height: 1.8;
    color: #1c4632;
    opacity: 0.9;
    margin-top: 14px;
    margin-bottom: 22px;
}

.read-more-btn {
    display: inline-block;
    background-color: #1c4632;
    color: #efe5db;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 2px solid #1c4632;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.read-more-btn:hover {
    background-color: #2a6649;
    color: #ffffff;
}

/* =========================================
   ARTICLE MODAL POPUP
   ========================================= */
.news-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.news-modal-overlay.active {
    display: flex;
}

.news-modal-card {
    background-color: #efe5db;
    border: 2px solid #1c4632;
    max-width: 750px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 45px 40px;
    position: relative;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2.2rem;
    color: #1c4632;
    cursor: pointer;
    font-weight: 900;
    line-height: 1;
}

.modal-meta-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.news-modal-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #1c4632;
    line-height: 1.15;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(28, 70, 50, 0.2);
    padding-bottom: 20px;
}

.news-modal-body p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: #1c4632;
    opacity: 0.95;
    margin-bottom: 20px;
}

.news-modal-body p:last-child {
    margin-bottom: 0;
}

/* =========================================
   RESPONSIVENESS
   ========================================= */
@media (max-width: 900px) {
    .page-hero-banner {
        height: 320px;
        padding-top: 60px;
    }

    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .news-intro h2 {
        font-size: 2rem;
    }

    .news-title-link {
        font-size: 1.7rem;
    }

    .news-modal-card {
        padding: 30px 25px;
    }

    .news-modal-header h2 {
        font-size: 1.7rem;
    }
}