
.team-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 40px 0;
}

.team-title {
	text-align: center;
	margin-bottom: 32px;
	font-size: 2.2rem;
	color: #ffffff;
}

.team-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	justify-content: center;
}

.team-member {
	background: #313131;
	border-radius: 18px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	padding: 28px 22px;
	width: 260px;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: box-shadow 0.2s;
}

.team-member:hover {
	box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.team-photo {
  width: 90px;
  height: 90px;
  background: #e0e0e0;
  border-radius: 50%;
  margin-bottom: 18px;
  overflow: hidden; /* Ensures the image stays inside the circle */
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.team-name {
	font-size: 1.25rem;
	font-weight: bold;
	margin: 0 0 6px 0;
	color: #ffffff;
}

.team-role {
	font-size: 1.05rem;
	color: #9b9b9b;
	margin: 0 0 10px 0;
}

.team-bio {
	font-size: 0.98rem;
	color: #ffffff;
	text-align: center;
}
