/* Team page: bio + photo side-by-side */
.team-wrap {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.team-bio {
  flex: 1 1 auto;
  min-width: 0;
}

.team-photo {
  flex: 0 0 auto;
}

.team-photo img {
  width: 220px;
  max-width: 220px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Mobile */
@media (max-width: 900px) {
  .team-wrap {
    flex-direction: column;
  }
  .team-photo img {
    width: 180px;
    max-width: 180px;
  }
}
