.team-member-description{
  display: none;
  padding-left: 30px;
  padding-bottom: 30px;
}

.team-member{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid #A53C14;
  margin-bottom: 30px;
  cursor: pointer;
}

.team-member-image{
  width: 80px;
  height: 80px;
  margin-top: 3px;
}

.team-member-image img{
  width: 100%;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.team-member-content h3{
  margin: 0;
  font-size: 24px;
  color: #681F1F;
}

.team-member-content p{
  margin: 0;
  font-size: 18px;
}

.team-member svg{
  width: 50px;
  color: #A53C14;
  position: absolute;
  right: 20px;
}

.team-member svg.active{
  transform: rotate(180deg);
}