.profile-listings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.prof-img{
  width: 77px;
  height: 77px;
  border-radius: 50%;
  overflow: hidden;
}
.prof-img img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-card{
  border-radius: 8px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  display: flex;
  overflow: hidden;
}
.prof-details {
    padding: 0 25px;
    flex: 1;
}
.member-name {
    margin-bottom: 5px;
    color: #383939;
    display: block;
}
.member-role {
    display: inline-block;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #6c89b2;
}
.member-details p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    line-height: 1.5;
    color: #555;
}
.member-name a {
    margin-bottom: 25px;
    text-decoration: none;
    font-weight: 500;
    color: #2c3e50;
    text-decoration: underline;
    text-decoration-color: #2a2e6d1f;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}
.member-name a:hover {
  text-decoration: underline !important;
  text-decoration-color: #23559b !important;
}
@media (max-width:991px){
  .profile-listings{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:767px){
  .profile-listings{
    grid-template-columns: repeat(1, 1fr);
  }
  .profile-card{
    background: #fff;
    border-radius: 8px;
    padding: 10px;
  }
  .profile-listings{
    gap: 15px;
  }
}