.team-accordion .accordion-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
  overflow: hidden;
}
.accordion-toggle strong{}
.accordion-toggle {
  background: #ffffff !important;
  color: var(--e-global-color-primary);
  border: none;
  width: 100%;
  text-align: left;
  padding: 1em;
  cursor: pointer;
  display: flex;
  gap: 1em;
  align-items: center;
  font-size: 1.1em;
  transition: background 0.3s;
}

.accordion-toggle:hover {
  background: #eee;
}

.accordion-toggle .icon-toggle {
  font-weight: bold;
  font-size: 1.5em;
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.accordion-item.active .icon-toggle {
  transform: rotate(90deg); /* changes + to x */
  color: var(--e-global-color-secondary)
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #fff;
  padding: 0 1em;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  padding: 1em;
}

.team-layout {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
}

@media only screen and (max-width: 600px) {

.team-layout {
  flex-direction: column;
}
}

.team-image {width: 40%;}
.team-image img {
  max-width: 180px;
  border-radius: 8px;
}

.team-details {
  flex: 1;
}

.team-details h4 {
  margin-top: 0;
  font-weight: 600;
  color: var(--e-global-color-primary)
}

.team-connect {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-connect span {
  color: #999;
  font-size: 0.95em;
}

.icon-linkedin {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url('https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/linkedin.svg');
  background-size: cover;
  background-position: center;
  transition: filter 0.2s;
}

.icon-linkedin:hover {
  filter: none;
}
