.container-team {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-page-title-container {
  line-height: 8px;
  text-align: center;
}

.team-page-title {
  color: #df7310;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  /* filter: grayscale(); */
}

.members-card {
  line-height: 4px;
  position: relative;
  width: 400px;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #212327;
}

.members-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.members-card-info {
  background-color: #df7310;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 70px;
}

.members-card-info-name {
  font-size: 20px;
  font-weight: bold;
  padding-left: 8px;
}

.members-card-info-role {
  font-size: 16px;
  padding-left: 8px;
  color: #e5e5e5;
}
