/* style.css */
:root {
  --color-logo-leaf-primary: #008c3b;
  --color-default-font: #333;
}

#team {
  text-align: center;
  background-color: var(--color-logo-leaf-primary);
  color: #fff;
}

#team img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

/* Flex für gleiche Höhe */
#team .row.g-4 {
  align-items: stretch;
}

#team .col-md-4 {
  display: flex;
}

#team .team-member {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  color: var(--color-default-font);
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
  overflow: hidden;
}

#team .team-photo {
  width: 100%;
  height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem 0.5rem 0 0;
}

#team .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* fester Header-Bereich für gleiche Start‐Position */
#team .team-header {
  min-height: 4rem;
}

#team h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

#team h6 {
  color: rgba(0,0,0,0.6);
  font-weight: normal;
}

#team p {
  margin-top: 0.5rem;
}