.team-member-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 900px;
  margin: 50px auto;
  gap: 30px;
}

.team-member-photo img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.team-member-details {
  flex: 1;
  min-width: 250px;
}

.team-member-name {
  font-size: 32px;
  margin: 0 0 10px;
}

.team-member-designation {
  font-size: 18px;
  color: #777;
  margin-bottom: 20px;
}

.team-member-short-bio {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.team-member-full-bio {
  margin-top: 30px;
  line-height: 1.7;
}

.team-member-social {
  margin-top: 25px;
}

.team-member-social .social-link {
  display: inline-block;
  font-size: 24px;
  margin: 0 10px;
  color: #555;
  transition: color 0.3s ease;
}

.team-member-social .social-link:hover {
  color: #0073aa; /* WP blue */
}
