/* ===== FOUNDER PAGE ===== */

/* HERO */
.page-hero.founder-hero {
  background: url('../images/banners/founder_banner.jpg') center/cover no-repeat;
}

/* BIO SECTION */
.founder-bio {
  padding: 60px 0;
  background: #fff;
}
.founder-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: start;
}
.founder-photo img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.founder-text h2 {
  color: #2e5a2e;
  margin-bottom: 8px;
}
.founder-text p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ACHIEVEMENTS */
.founder-achievements {
  padding: 60px 0;
  background: #f8f8f8;
}
.founder-achievements h2 {
  text-align: center;
  margin-bottom: 25px;
}
.bullet-list {
  list-style: disc;
  padding-left: 35px;
  max-width: 900px;
  margin: 0 auto;
  color: #444;
  line-height: 1.8;
}

/* AWARDS */
.founder-awards {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}
.awards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}
.award-card {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.award-card:hover { transform: translateY(-5px); }
.award-card h3 {
  color: #2e5a2e;
  margin-bottom: 8px;
}

/* MEMBERSHIPS */
.founder-memberships {
  padding: 60px 0;
  background: #f8f8f8;
}
.founder-memberships h2 {
  text-align: center;
  margin-bottom: 25px;
}
.founder-memberships ul {
  list-style: disc;
  padding-left: 35px;
  max-width: 900px;
  margin: 0 auto;
  color: #444;
  line-height: 1.8;
}

/* COMMUNITY */
.founder-community {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}
.founder-community h2 {
  margin-bottom: 25px;
}
.founder-community p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .founder-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder-photo img {
    margin: 0 auto 20px;
  }
}
