<!--Person-->
body {
  background: yellow !important;
}

.team-card {
  width: 100%;
  max-width: 500px;
  height: 750px; /* Feste Höhe */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  margin: 20px auto;
  font-family: Verdana, sans-serif;
  font-size: 14px;
  color: #000;
  /*background: #fff;*/
  box-sizing: border-box;

  /* Sichtbarer roter Rahmen zum Testen */
  /*  border: 4px solid red !important; */
  height: 900px !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* <– sorgt für Top-Ausrichtung */
    text-align: left; /* Text linksbündig */
  
}

.team-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap; /* WICHTIG: keine Umbrüche */
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.team-header {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Text links */
  margin-bottom: 10px;
  background-color: #f0f0f0; /* ✅ Grauer Hintergrund */
  padding: 8px;
  border-radius: 4px;
}

.icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.team-title .name {
  font-weight: bold;
  color: #1a1a1a;
}

.team-title .position {
  font-size: 12px;
  color: #333;
}

.team-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: auto;
}

.team-image {
  width: 100%;
  display: block;
  transition: opacity 0.4s ease-in-out;
}

.team-image.hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.team-image-container:hover .hover {
  opacity: 1;
}

.team-image-container:hover .default {
  opacity: 0;
}

.team-description {
  margin-top: 15px;
  text-align: left; <!--justify;-->
  line-height: 1.5;
}





<!--Person ENDE-->
