/* ===========================
   Hero Section (Project)
=========================== */
.hero {
  padding: 96px 0 72px;
  background:#f7f9fb;
}

.hero__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* Meta line */
.hero__meta {
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 14px;
}

.hero__meta span {
  margin: 0 4px;
}

/* Title */
.hero__title {
  font-size: 46px;
  line-height: 1.1;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 22px;
}

/* Details */
.hero__details p {
  margin: 6px 0;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

.hero__details strong {
  color: #0f172a;
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    padding: 72px 0 56px;
  }

  .hero__title {
    font-size: 36px;
  }
}

@media (max-width: 520px) {
  .hero__title {
    font-size: 30px;
  }

  .hero__meta {
    font-size: 13px;
  }
}
/* ===========================
   Journey – Text Only (Full Width)
=========================== */
.journey--text-only {
  padding: 72px 0;
  background: #ffffff;
}

.journey__container {
  max-width: 1100px;     /* full readable width */
  margin: 0 auto;
  padding: 0 20px;
}

/* Title stays centered */
.journey__title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 22px;
}

/* FULL-WIDTH CONTENT */
.journey__content--center {
  max-width: 100%;      /* KEY CHANGE */
  margin: 0;
  text-align: left;
}

.journey__content--center p {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
  margin: 0 0 18px;
}

.journey__content--center p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .journey__title {
    font-size: 30px;
  }
}
/* ===========================
   Project Impact Section
=========================== */
.impact {
  padding: 72px 0;
  background: #f7f9fb;
}

.impact__container {
  max-width: 1100px; /* slightly tighter looks better for 3 cols */
  margin: 0 auto;
  padding: 0 20px;
}

.impact__title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 32px;
}

/* Grid — 3 cards per row */
.impact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Card */
.impact-card {
  background: #ffffff;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  padding: 22px 18px 24px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

/* Icon */
.impact-card__icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #eaf4ef;
  color: #2f6b4f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* Value */
.impact-card__value {
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

/* Text */
.impact-card__text {
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .impact__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact__title {
    font-size: 30px;
  }
}

@media (max-width: 520px) {
  .impact__grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   Project Activities Section
=========================== */
.activities {
  padding: 72px 0;
  background: #ffffff;
}

.activities__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.activities__title {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 26px;
}

.activities__block {
  margin-bottom: 22px;
}

.activities__block:last-child {
  margin-bottom: 0;
}

.activities__heading {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px;
}

.activities__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: #475569;
  max-width: 980px;
}

/* Responsive */
@media (max-width: 992px) {
  .activities__title {
    font-size: 30px;
  }

  .activities__heading {
    font-size: 18px;
  }

  .activities__text {
    max-width: 100%;
  }
}/* ===========================
   Voices & Stories Section
=========================== */
.voices {
  padding: 72px 0;
  background: #f7f9fb;
}

.voices__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.voices__title {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 22px;
}

/* Quote Card */
.voices__card {
  background: #ffffff;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  padding: 26px 28px;
}

/* Quote text */
.voices__quote {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
  font-style: italic;
}

.voices__quote:last-child {
  margin-bottom: 0;
}

/* Source line (kept inline like screenshot) */
.voices__source {
  font-style: italic;
  color: #475569;
  
}

/* Responsive */
@media (max-width: 992px) {
  .voices__title {
    font-size: 30px;
  }

  .voices__card {
    padding: 22px 20px;
  }
}

/* ===========================
   Results & Outcomes
=========================== */
.results {
  padding: 72px 0 36px;
  background: #ffffff;
}

.results__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.results__title {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
}

.results__list {
  padding-left: 18px;
  margin: 0;
}

.results__list li {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 10px;
}

/* ===========================
   Grant Utilization
=========================== */
.grants {
  padding: 48px 0 72px;
  background: #f7f9fb;
}

.grants__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.grants__title {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
}

.grants__list {
  padding-left: 18px;
  margin: 0;
}

.grants__list li {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 10px;
}

.grants__list strong {
  color: #0f172a;
}

/* Responsive */
@media (max-width: 992px) {
  .results__title,
  .grants__title {
    font-size: 28px;
  }
}

/* ===========================
   Lessons Learned Section
=========================== */
.lessons {
  padding: 72px 0 56px;
  background: #ffffff;
}

.lessons__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.lessons__title {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 18px;
}

.lessons__content p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}

.lessons__content p:last-child {
  margin-bottom: 0;
}

/* Bottom divider line */
.lessons__divider {
  margin-top: 28px;
  height: 1px;
  width: 100%;
  background: #eef2f7;
}

@media (max-width: 992px) {
  .lessons__title {
    font-size: 30px;
  }
}



