.team-section {
    max-width: 800px;
    margin: 0 auto;
}

.team-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1em;
}

.team-list li {
  padding: 1em;
  border-radius: 5px;
  box-shadow: rgba(128, 128, 128, 0.5) 0px 2px 5px 0px;
  position: relative;
  margin-top: 5px;
  margin-bottom: 5px;
}

.team-list li a {
  display: block;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.team-logo {
  width: 3em;
  height: 3em;
  margin-right: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.team-info {
  flex-grow: 1;
  flex-direction: column;
}

.team-name {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 0.25em;
}

.team-location {
  font-size: 0.8em;
  color: #666;
  display: block;
}

.team-list li::after {
  content: "";
  font-size: 1.2em;
  color: #666;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
}

/*
 CSS for collapsible sections
*/
.accordion > input[type="checkbox"] {
  position: absolute;
  left: -100vw;
}

.accordion .content {
  overflow-y: hidden;
  height: 0;
  transition: height 0.3s ease;
}

.accordion > input[type="checkbox"]:checked ~ .content {
  height: auto;
  overflow: visible;
}

.accordion label {
  display: block;
}

.accordion {
  margin-bottom: 0.5em;
}

.accordion > input[type="checkbox"]:checked ~ .content {
  /*border: 1px solid #e8e8e8;*/
  /*padding: 15px;
  border-top: 0;*/
}

.accordion .handle {
  margin: 0;
  font-size: 1.2em;
  line-height: 1em;
}

.accordion label {
  color: #000;
  cursor: pointer;
  font-weight: bold;
  padding: 1em;
  background: #ddd;
}

.accordion label:hover,
.accordion label:focus {
  color: #fff;
  background: #000;
}

.accordion .handle label:before {
  content: "+";
  display: inline-block;
  margin-right: 10px;
  font-size: 1em;
  line-height: 1.5em;
  vertical-align: middle;
}

.accordion > input[type="checkbox"]:checked ~ .handle label:before {
  content: "-";
}
