/* ===========================
   Hero Section (Reusable)
=========================== */
.hero {
  padding: 96px 0 72px;
  background: #f7f9fb;
}

.hero__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* Top name + role */
.hero__top {
  margin-bottom: 16px;
}

.hero__person {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px;
}

.hero__role {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
}

/* Project title */
.hero__title {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 18px;
}

/* Green title like screenshot */
.hero__title--green {
  color: #2f6b4f;
}

/* Details */
.hero__details {
  margin-bottom: 18px;
}

.hero__details p {
  margin: 6px 0;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

.hero__details strong {
  color: #0f172a;
}

/* Tag pills */
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef2f7;
  border: 1px solid #e5e7eb;
  color: #0f172a;
  font-size: 16px;
  
  line-height: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    padding: 72px 0 56px;
  }

  .hero__title {
    font-size: 34px;
  }

  .hero__person {
    font-size: 30px;
  }
}

@media (max-width: 520px) {
  .hero__title {
    font-size: 28px;
  }

  .hero__tag {
    font-size: 16px;
    padding: 7px 10px;
  }
}

/* ===========================
   Journey – Text Only Variant
=========================== */
.journey--text-only {
  padding: 72px 0;
  background: #ffffff;
}

.journey__content--center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.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;
}

/* Slightly tighten title spacing for centered layout */
.journey--text-only .journey__title {
  text-align: center;
  margin-bottom: 22px;
}

/* Responsive */
@media (max-width: 992px) {
  .journey__content--center {
    max-width: 100%;
  }
}


/* ===========================
   Project Impact Section
=========================== */
.impact {
  padding: 72px 0;
  background: #f7f9fb;
}

.impact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.impact__title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 28px;
}

/* Grid */
.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;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

/* Label */
.impact-card__label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #2f6b4f;
  margin-bottom: 8px;
}

/* Main value */
.impact-card__value {
  font-size: 30px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

/* Smaller value for long text card */
.impact-card__value--small {
  font-size: 22px;
  line-height: 1.25;
}

/* Description */
.impact-card__text {
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* Optional slight spacing tweak */
.impact-card--compact {
  padding-top: 20px;
}

/* 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;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 18px;
}

.activities__content p {
  font-size: 16px;
  line-height: 1.85;
  color: #475569;
  margin: 0 0 16px;
}

.activities__content p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .activities__title {
    font-size: 30px;
  }
}

/* ===========================
   Voices & Stories Section
=========================== */
.voices {
  padding: 72px 0;
  background: #f7f9fb;
}

.voices__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.voices__title {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 24px;
}

/* Quote Card */
.voices__card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #eef2f7;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  padding: 26px 28px;
  text-align: left;
}

.voices__quote {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
  font-style: italic;
}

/* Author */
.voices__author {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #2f6b4f; /* green like screenshot */
  text-align: right;
}

/* 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: 0 0 18px;
}

.results__list {
  margin: 0;
  padding-left: 18px;
}

.results__list li {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 10px;
}

/* ===========================
   Lessons & Sustainability
=========================== */
.lessons {
  padding: 48px 0 72px;
  background: #ffffff;
}

.lessons__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.lessons__title {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px;
}

.lessons__content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}

/* Responsive */
@media (max-width: 992px) {
  .results__title,
  .lessons__title {
    font-size: 28px;
  }
}
