/* =========================================
   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;
}

/* =========================================
   PROJECTS LIST SECTION (BEIGE BACKGROUND)
   ========================================= */
.work-projects-section {
    background-color: #efe5db;
    padding: 100px 5% 60px;
}

.work-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.project-card {
    display: flex;
    align-items: center;
    gap: 50px;
}

.project-media-col {
    flex: 0.9;
}

.media-thumb-link {
    display: block;
    width: 100%;
    height: 320px;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    border-radius: 0;
}

.media-thumb-link:hover {
    transform: translateY(-4px);
}

.media-thumb-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.project-info-col {
    flex: 1.1;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1c4632;
    margin-bottom: 12px;
}

.project-title-link {
    color: #1c4632;
    text-decoration: none;
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.15;
    transition: color 0.2s ease;
}

.project-title-link:hover {
    color: #2a6649;
}

.project-info-col p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1c4632;
    opacity: 0.95;
    margin-top: 15px;
    margin-bottom: 25px;
}

.project-action .btn {
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 0;
}

/* =========================================
   CENTERED, BALANCED CTA DONATION SECTION
   ========================================= */
.work-cta-section {
    background-color: #efe5db;
    padding: 60px 5% 120px;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-container .section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1c4632;
    margin-bottom: 15px;
}

.cta-container h2 {
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #1c4632;
    line-height: 1.15;
    margin-bottom: 18px;
}

.cta-container p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1c4632;
    opacity: 0.9;
    margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.cta-btn {
    display: inline-block;
    background-color: #1c4632;
    color: #efe5db;
    padding: 16px 40px;
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 0;
    border: 2px solid #1c4632;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.cta-btn:hover {
    background-color: #2a6649;
    color: #ffffff;
}

/* =========================================
   RESPONSIVENESS
   ========================================= */
@media (max-width: 900px) {
    .page-hero-banner {
        height: 320px;
        padding-top: 60px;
    }

    .page-hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .project-card {
        flex-direction: column;
        gap: 25px;
    }

    .media-thumb-link {
        height: 260px;
    }

    .project-title-link {
        font-size: 1.8rem;
    }

    .cta-container h2 {
        font-size: 2rem;
    }
}