/* ====== PAGE WRAPPER ====== */
.about-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

/* ====== ABOUT HERO ====== */
.about-hero {
  width: 100%;
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.about-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.about-title {
  font-size: 2.4rem;
  margin: 0 0 6px;
}

.about-subtitle {
  font-size: 1.2rem;
  margin: 0 0 14px;
  color: #555;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #333;
  margin: 0;
}

/* ====== MISSION ====== */
.mission {
  margin-top: 22px;
  width: 100%;
  background: #f5f5f5;
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.mission-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.mission-title {
  font-size: 1.8rem;
  margin: 0 0 10px;
}

.mission-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #333;
}

/* ====== SECTION HEADERS (Exec + Members reuse this) ====== */
.execs {
  margin-top: 40px;
}

.execs-header {
  text-align: center;
  margin-bottom: 22px;
}

.execs-title {
  font-size: 2.2rem;
  margin: 0;
}

.execs-subtitle {
  margin: 8px 0 0;
  color: #666;
  font-size: 1rem;
}

.co-op-star {
  font-weight: 700;
}

/* ====== GRID ====== */
.exec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

/* ====== CARD ====== */
.exec-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

/* ✅ Show full image (no cropping) */
.exec-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;       /* show full image */
  object-position: center;
  background: #f2f2f2;
  display: block;
}

.exec-info {
  padding: 16px 16px 18px;
  text-align: center;
}

.exec-name {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 800;
}

.exec-role {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #444;
  font-weight: 600;
}

.exec-year {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.35;
}

/* ====== MEMBERS SECTION (NEW SPACING) ====== */
.members {
  margin-top: 50px; /* space below exec section */
}

/* ====== MOBILE ====== */
@media (max-width: 520px) {
  .about-title {
    font-size: 1.9rem;
  }

  .exec-card img {
    height: 220px;
  }
}
