/* =========================
   Project Header Section
========================= */

.proj-head{
  background:#f4f6f5;  /* light grey like screenshot */
  padding: 70px 0 80px;
}

.proj-head__inner{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;   /* ✅ center align all text */
}

.proj-head__small{
  font-size: 16px;
  font-weight: 700;
  color: rgba(35,31,32,.70);
  margin-bottom: 6px;
}

.proj-head__title{
  margin: 14px 0 18px;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: rgba(35,31,32,.92);
}

.proj-head__meta{
  display: grid;
  gap: 8px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(35,31,32,.72);
  
}

/* Responsive */
@media (max-width: 576px){
  .proj-head__title{
    font-size: 38px;
  }
}

/* =========================
   Project Overview Section
========================= */

.proj-overview{
  background:#ffffff;
  padding: 70px 0 80px;
}

.proj-overview__title{
  margin:0 0 22px;
  font-size: 26px;
  font-weight: 900;
  color: rgba(35,31,32,.92);
  letter-spacing: -0.02em;
}

/* 2-column layout */
.proj-overview__grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items:start;
}

/* Left text */
.proj-overview__text p{
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(35,31,32,.70);
  
  max-width: 720px;
}

/* Right placeholder box */
.proj-overview__placeholder{
  width: 100%;
  height: 180px;
  background:#e7e9ed;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(35,31,32,.55);
  font-weight: 800;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 992px){
  .proj-overview__grid{
    grid-template-columns: 1fr;
  }
  .proj-overview__placeholder{
    height: 200px;
  }
}
/* Right image container */
.proj-overview__media{
  width:100%;
}

/* Image styling */
.proj-overview__image{
  width:100%;
  height:300px;              /* same height as your placeholder */
  object-fit: cover;         /* keeps image nicely cropped */
  border-radius: 10px;
  display:block;
}

/* Responsive adjustment */
@media (max-width: 992px){
  .proj-overview__image{
    height: 220px;
  }
}
/* =========================
   Project Impact at a Glance
========================= */

.impact-glance{
  padding: 80px 0;
  background:#f4f6f5;
  text-align:center;
}

.impact-glance__title{
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 40px;
  color:#231f20;
}

/* Grid */
.impact-glance__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  justify-items:center;
  margin-bottom: 30px;
}

/* Card */
.impact-card{
  background:#ffffff;
  border-radius: 12px;
  padding: 22px 18px;
  width:100%;
  max-width: 230px;
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

.impact-icon{
  font-size: 22px;
  color:#2f7d32; /* GYLC green */
  margin-bottom: 10px;
}

.impact-card h3{
  font-size: 22px;
  font-weight: 900;
  margin: 6px 0;
  color:#231f20;
}

.impact-card p{
  font-size: 16px;
  line-height: 1.5;
  color: rgba(35,31,32,.7);
  margin:0;
}

/* Center card row */
.impact-glance__center{
  display:flex;
  justify-content:center;
}

/* Responsive */
@media (max-width: 992px){
  .impact-glance__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px){
  .impact-glance__grid{
    grid-template-columns: 1fr;
  }
}

/* =========================
   Project Activities & Implementation
========================= */

.pai-sec{
  background:#ffffff;
  padding: 70px 0 80px;
}

.pai-wrap{
  max-width: 920px;
  margin: 0 auto;
}

.pai-title{
  margin: 0 0 18px;
  font-size: 28px;
  font-weight: 900;
  color: rgba(35,31,32,.92);
  letter-spacing: -0.02em;
}

.pai-phase{
  margin: 14px 0 8px;
  font-size: 16px;
  font-weight: 900;
  color: rgba(35,31,32,.88);
}

.pai-phase--big{
  font-size: 16px; /* like the screenshot: Phase 2 & 3 is a bit more prominent */
  margin-top: 18px;
}

.pai-text{
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(35,31,32,.70);
 
}

/* Responsive */
@media (max-width: 576px){
  .pai-title{ font-size: 24px; }
  .pai-text{ font-size: 13.5px; }
}

/* =========================
   Voices & Impact Stories
========================= */

.vis-sec{
  background:#f4f6f5;
  padding: 70px 0 40px;
}

.vis-wrap{
  max-width: 980px;
  margin: 0 auto;
}

.vis-title{
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 900;
  color: rgba(35,31,32,.92);
  letter-spacing: -0.02em;
}

.vis-quote{
  background:#ffffff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 10px;
  padding: 18px 18px;
}

.vis-quote p{
  margin:0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(35,31,32,.68);
  font-style: italic;
  
}

/* =========================
   Results & Outcomes
========================= */

.ro-sec{
  background:#ffffff;
  padding: 30px 0 80px;
}

.ro-wrap{
  max-width: 980px;
  margin: 0 auto;
}

.ro-title{
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 900;
  color: rgba(35,31,32,.92);
  letter-spacing: -0.02em;
}

/* Bullets */
.ro-list{
  margin: 0;
  padding-left: 18px;
}

.ro-list li{
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(35,31,32,.68);
  
}

.ro-list li::marker{
  color: rgba(35,31,32,.40);
}

/* Responsive */
@media (max-width: 576px){
  .vis-title, .ro-title{
    font-size: 24px;
  }
}

/* =========================
   Grant Utilization
========================= */

.grant-sec{
  background:#f3f5f6;
  padding: 70px 0 40px;
}

.grant-wrap{
  max-width: 980px;
  margin: 0 auto;
}

.grant-title{
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 900;
  color: rgba(35,31,32,.92);
  letter-spacing: -0.02em;
}

.grant-list{
  margin: 0;
  padding-left: 18px;
}

.grant-list li{
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(35,31,32,.68);
 
}

.grant-list li::marker{
  color: rgba(35,31,32,.40);
}

/* =========================
   Lessons Learned
========================= */

.lessons-sec{
  background:#ffffff;
  padding: 40px 0 80px;
}

.lessons-wrap{
  max-width: 980px;
  margin: 0 auto;
}

.lessons-title{
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 900;
  color: rgba(35,31,32,.92);
  letter-spacing: -0.02em;
}

.lessons-text{
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(35,31,32,.68);
  
}

/* =========================
   Responsive
========================= */

@media (max-width: 576px){
  .grant-title,
  .lessons-title{
    font-size: 24px;
  }
}

/* =========================
   Project Gallery
========================= */

.project-gallery{
  padding: 80px 0;
  background: #ffffff;
}

.gallery-title{
  text-align: center;
  margin-bottom: 36px;
  font-size: 28px;
  font-weight: 900;
  color: rgba(35,31,32,.92);
  letter-spacing: -0.02em;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item{
  background: #f1f3f4;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   Responsive
========================= */

@media (max-width: 992px){
  .gallery-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px){
  .gallery-grid{
    grid-template-columns: 1fr;
  }
}

