.team-social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .team-social-links {
    justify-content: center;
  }
}
.team-social-links a {
  display: block;
}
.team-social-links a.has-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
}
.team-social-links a.has-icon > svg {
  width: 30px;
  height: 30px;
  fill: #20569C;
  transition: all 0.3s ease-in-out;
}
.team-social-links a.has-icon > svg:hover {
  fill: #1b4a86;
  transform: scale(1.05);
}
.team-social-links a:not(.has-icon) {
  text-transform: uppercase;
  font-family: "Rubik", Helvetica, Arial, sans-serif;
  font-size: 16px;
  border-radius: 6px;
  background-color: #20569C;
  color: #fff;
  padding: 5px 11px;
  text-decoration: none;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  letter-spacing: -0.48px;
  transition: all 0.3s ease-in-out;
}
.team-social-links a:not(.has-icon):hover {
  background-color: #1b4a86;
  transform: scale(1.05);
}

.team-bio,
.team-bio p {
  color: #000;
  font-family: "Rubik", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
  letter-spacing: -0.54px;
}

.team-bio {
  font-family: "Rubik", Helvetica, Arial, sans-serif;
  /* max-width: 650px; */
  margin: 30px auto;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
}

.accordion-header {
  padding: 24px 0;
  cursor: pointer;
  position: relative;
  font-family: Rubik;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 30px;
  text-transform: uppercase;
  color: #4D4E53;
}

.accordion-header::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 31px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='31' viewBox='0 0 17 31' fill='none'%3E%3Cpath d='M15.75 15.5L1.25 1' stroke='black' stroke-miterlimit='10' stroke-linecap='square'/%3E%3Cpath d='M15.75 15.5L1.25 30' stroke='black' stroke-miterlimit='10' stroke-linecap='square'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s ease;
}

.accordion-header.active::after {
  transform: translateY(-50%) rotate(90deg);
}

.accordion-content {
  display: none;
  padding: 10px 0 25px 0; /* Top padding smaller, bottom padding larger for readability */
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.accordion-content p {
  margin-bottom: 15px;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}
