.member-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
  border: none;
  margin-bottom: 20px;
  @include custom-shade;
  text-align: center;

  .profile-bg {
    height: 150px;
    background: #05468b;
    position: relative;
    @include d-center;
    img {
      max-height: 120px;
      width: 100%;
      object-fit: contain;
      filter: brightness(0) invert(1);
      transition: filter 0.3s ease;
      opacity: 0.2;
    }
  }

  .profile-image {
    width: 180px;
    height: 180px;
    border-radius: 10px;
    border: 3px solid white;
    object-fit: cover;
    transition: all 0.3s ease;
    background-color: #fff;
    border: 1px solid #c3c3c34b;
  }
  .member-content {
    padding: 20px;
    text-align: center;
    margin-top: -110px;
    position: relative;
    z-index: 2;
  }
  a {
    &:hover {
      text-decoration: underline;
    }
  }
  .member-name {
    font-family: $secondaryFont;
    font-size: 18px;
    font-weight: 400;
    color: $blackColor;
    margin: 12px 0 5px 0;
    @include text-ellips;
  }
  .member-department {
    display: inline-block;
    color: $primaryColor;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
    @include text-ellips;
  }

  .member-bio {
    font-size: 15px;
    color: $textColor;
    font-weight: 400;
    line-height: 1.7;
    @include text-ellips-3;
  }
}

.sub-page-title {
    text-align: center;

  h2 {
    font-size: 30px; 
    color: $blackColor;
    font-weight: 500;
    font-family: $secondaryFont;
    display: inline;
    border-bottom: 1px solid $primaryColor;
    padding-bottom: 3px;
  }
}
