.team-card {
  text-align: center;
  position: relative;
  font-family: 'Ubuntu', sans-serif;
  font-size: 18px;
  background-color: #fdfbf7;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 350px;
  margin: 0 auto;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.team-image-container {
  position: relative;
  width: 100%;
  padding-top: 100%; /* Forces a 1:1 Square */
  overflow: hidden;
  border-radius: 8px;
  background-color: transparent;
}

.team-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.team-bio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(253, 251, 247, 0.95);
  color: #333;
  display: block; /* Changed from flex to block for better scrolling */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
  overflow-y: auto; /* Enables vertical scrolling */
}

.team-image-container:hover .team-bio {
  opacity: 1;
  visibility: visible;
}

.team-name {
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: bold;
}

.team-position {
  color: #666;
  margin: 0;
}
  box-sizing: border-box;
  text-align: left;
}

.team-image-container:hover .team-bio {
  opacity: 1;
}

.team-name {
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: bold;
}

.team-position {
  color: #666;
  margin: 0;
}