/* ── About Us page ── */
.about-body {
  margin: 0 0 1rem;
  font-size: 0.97rem;
  color: #44403c;
  line-height: 1.85;
  max-width: 580px;
}

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

/* ── Mission + photo ── */
.about-mission-section {
  padding: 5rem 0;
  background: #ffffff;
}

.about-mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-mission-photo {
  overflow: hidden;
}

.about-photo {
  display: block;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

@media (max-width: 860px) {
  .about-mission-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-mission-section {
    padding: 3rem 0;
  }

  .about-mission-photo {
    order: -1;
  }
}

/* ── Goals list ── */
.about-partnership-section {
  padding: 5rem 0;
  background: #ffffff;
}

.about-partnership-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-partnership-photo {
  overflow: hidden;
}

.about-partnership-text {
  flex: 1;
}

/* ── Pull quote ── */
.about-quote-section {
  padding: 4.5rem 0;
  background: #faf9f7;
  border-top: 1px solid #e8e4dc;
  border-bottom: 1px solid #e8e4dc;
}

.about-quote {
  margin: 0 auto;
  max-width: 680px;
  text-align: center;
  padding: 0 1rem;
}

.about-quote-text {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  font-weight: 400;
  color: #3d3830;
  line-height: 1.75;
  margin: 0;
}

/* ── Goals list ── */
.about-goals-list {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  max-width: 640px;
}

.about-goals-list li {
  font-size: 0.97rem;
  color: #44403c;
  line-height: 1.8;
  padding: 0.9rem 0;
  border-bottom: 1px solid #e8e4dc;
  padding-left: 1.25rem;
  position: relative;
}

/* .about-goals-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 5px;
  height: 1px;
  background: #8a7f74;
} */

.about-goals-list li:last-child {
  border-bottom: none;
}

@media (max-width: 860px) {
  .about-partnership-section {
    padding: 3rem 0;
  }

  .about-partnership-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-partnership-photo {
    order: -1;
  }
}

/* ── Explore links ── */
.about-explore-section {
  padding: 5rem 0;
  background: #faf9f7;
  border-top: 1px solid #e8e4dc;
}

.about-explore-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

.about-explore-photo {
  overflow: hidden;
  /* max-width: 420px; */
  justify-self: center;
}

.about-explore-text {
  flex: 1;
}

.about-explore-list {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  max-width: 640px;
}

.about-explore-item {
  border-bottom: 1px solid #e8e4dc;
}

.about-explore-item:last-child {
  border-bottom: none;
}

.about-explore-link-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.25rem 0;
  text-decoration: none;
  gap: 2rem;
  transition: color 150ms ease;
}

.about-explore-link-row:hover {
  text-decoration: none;
}

.about-explore-link-row:hover .about-explore-title {
  color: #1948a4;
}

.about-explore-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  transition: color 150ms ease;
}

.about-explore-desc {
  font-size: 0.875rem;
  color: #8a7f74;
  flex: 1;
  text-align: right;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .about-explore-link-row {
    flex-direction: column;
    gap: 0.25rem;
  }

  .about-explore-desc {
    text-align: left;
  }

  .about-explore-section {
    padding: 3rem 0;
  }

  .about-explore-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 860px) {
  .about-explore-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-explore-photo {
    order: 1;
  }
}
