.teammember-item {
  text-align: center;
  max-width: 360px;
  margin: 0 auto 2rem;
  font-family: sans-serif;
}

.teammember-image img {
  width: 100%;
  max-width: 280px;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  margin-bottom: 1rem;
}

.teammember-content h3 {
  color: #8149c9;
  margin: 0;
  font-size: 1.3rem;
  font-weight: bold;
}

.teammember-content .position {
  margin: 0.2rem 0 1rem;
  font-weight: bold;
  color: #000;
  padding-bottom: 0px;
}

.beschreibung-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.beschreibung-wrapper.open {
  max-height: 500px; /* oder auto mit JS */
}

.toggle-beschreibung {
  background: none;
  border: none;
  color: #8149c9;
  cursor: pointer;
  font-weight: bold;
  margin-top: 0rem;
  width: 100%;
  text-align: left;
  display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.0rem 0;
}

.toggle-member-divider{
	border-bottom: 3px solid #8149c9;
	padding-top: 10px;
}

.toggle-beschreibung .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 200%;
  position: relative;
  top: -3px;
}

.beschreibung-wrapper.open + .toggle-beschreibung .arrow {
  transform: rotate(180deg);
  top: 13px;
}