/* Subtle intro spacing */
.about-intro { margin-bottom: 1rem; }
.lead {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: .95;
}

/* Soft divider that matches your theme */
.soft-rule{
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 1.25rem 0;
}

/* Leadership layout */
.leadership-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

/* Optional subhead block inside grid */
.leadership-subhead{
  padding: .75rem 0 .25rem;
}

/* Leader card */
.leader-card{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: start;

  background: rgba(243,232,213,.92); /* parchment-like */
  color: var(--ink);
  border: 1px solid rgba(35,88,54,.18);
  border-radius: 16px;
  padding: 1rem;

  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.leader-media{
  display: flex;
  justify-content: center;
}

.leader-photo{
  width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(35,88,54,.25);
  background: rgba(0,0,0,.06);
}

.leader-header{
  display: flex;
  flex-direction: column;
  gap: .1rem;
  margin-bottom: .5rem;
}

.leader-name{
  margin: 0;
}

.leader-role{
  margin: 0;
  font-weight: 600;
  color: rgba(35,88,54,.92);
}

.leader-bio{
  margin: 0 0 .75rem 0;
  line-height: 1.6;
}

.leader-meta{
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: .25rem;
}

.leader-meta li{
  line-height: 1.5;
}

/* Responsive: stack image on small screens */
@media (max-width: 560px){
  .leader-card{
    grid-template-columns: 1fr;
    text-align: left;
  }
  .leader-media{
    justify-content: flex-start;
  }
}