.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 860px) {
  .about-mission {
    grid-template-columns: 1fr;
  }
}
.about-mission__text h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.about-mission__text p {
  color: var(--gray-600);
  line-height: 1.75;
}

.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat__number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-600);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat__label {
  font-size: 0.82rem;
  color: var(--gray-600);
  font-weight: 500;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}
.value-card p {
  color: var(--gray-600);
  font-size: 0.93rem;
  line-height: 1.65;
}

.team-grid {
  align-items: start;
}

.team-card {
  text-align: center;
}
.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 1rem;
}
.team-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.team-card__role {
  color: var(--blue-600);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.team-card__bio {
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.6;
}
.team-card__photo {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.1rem;
  display: block;
  border: 3px solid var(--white);
  box-shadow: 0 6px 18px rgba(15, 31, 61, 0.18);
}
