.organizational-banner-section {
    margin-top: 5rem;
    position: relative;   /* allows overlay */
    width: 100%;
    overflow: hidden;     /* prevent horizontal scroll */
}

.organizational-heading {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* shift up by half its height */
    left: 4rem;           /* distance from left of image */
    z-index: 10;          /* stays on top */
    font-size: 3rem;
    text-align: left;
}

.organizational-banner {
    width: 100%;
    height: 50vh;       /* half of viewport height */
    object-fit: cover;  /* image fills container, may crop edges */
}


/* Mobile responsiveness */
@media (max-width: 800px) {

    .organizational-heading {
    position: absolute;
    top: 10rem;            /* distance from top of image */
    left: 2rem;           /* distance from left of image */
    text-align: left;
    width: 40%;        /* ⬅️ heading wraps inside 40% of screen */
    font-size: 2rem;
}
    
}

/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-- Program Map --%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/


.organizational-map-section {
    width: 100%;
    text-align: center;
    margin-top: 2rem;    /* more space above */
    margin-bottom: 2rem; /* less space below */
}

.organizational-map-img {
    width: 70%;
    max-width: 100%;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.organizational-map-section .impact-heading{
    font-size: 3rem;
    margin-top: -3rem;
    margin-bottom: 4rem;
}

/* Mobile responsiveness */
@media (max-width: 1000px) {
    .organizational-map-img {
        width: 90%;
        margin-bottom: 2rem;
    }
    
    .organizational-map-section .impact-heading{
    font-size: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}
}


/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-- Program Components --%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/



/*================= Two Column Section =================*/

.two-column-section {
    display: flex;
    width: 100%;
    min-height: 70vh;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

/* LEFT COLUMN */
.left-col {
    width: 50%;
    padding-left: 8rem;     /* margin from left of screen */
}

.left-col .impact-heading {
    font-size: 3rem;
    text-align: left;
}

/* RIGHT COLUMN */
.right-col {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 8rem;
}

.side-image {
    width: 40vw;            /* takes 50% of screen width */
    max-width: 100%;        /* prevents overflow */
    height: auto;
    object-fit: cover;
}

/*========== MOBILE RESPONSIVE ==========*/
@media (max-width: 900px) {
    .two-column-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
        gap: 2rem;
    }

    .left-col, 
    .right-col {
        width: 100%;
        padding-left: 0;
        justify-content: center;
        align-items: center;
    }

    .impact-heading {
        text-align: center;
        font-size: 2.5rem;
    }

    .side-image {
        width: 90%;
    }
}


/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%-- Photo Grid --%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/

.organizational-photos-section {
    width: 100%;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}


.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    grid-gap: 1rem;                     /* space between images */
}

.photo-grid .photo {
    width: 100%;
    height: 300px;           /* fixed height, adjust as needed */
    object-fit: cover;       /* ensures image covers box without stretching */
    border-radius: 10px;     /* optional rounded corners */
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: 1fr; /* stack vertically on mobile */
        grid-gap: 1rem;
    }

    .photo-grid .photo {
        height: 250px;
    }
}

