/* ─── About page ─────────────────────────────────────────────────── */
.about-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 5vw 80px;
}

.about-body {
  margin-bottom: 56px;
}

.about-body p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-body p:last-child { margin-bottom: 0; }

/* ─── Founder card ───────────────────────────────────────────────── */
.founder-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px;
  border: 1px solid #E2EAF4;
  border-radius: 16px;
  background: white;
}

.founder-photo {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.founder-info {
  flex: 1;
}

.founder-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
}

.founder-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.founder-bio {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 14px;
}

.scholar-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
}

.scholar-link:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .founder-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
  }
}
