.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 1200px) {
  .members-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media screen and (max-width: 992px) {
  .members-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .members-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media screen and (max-width: 576px) {
  .members-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

.member-card {
  background-color: #f4f4f4;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.member-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.member-card h2 {
  margin: 0 0 10px;
}

.position {
  color: #888;
  margin-bottom: 10px;
}

.bio {
  margin-bottom: 20px;
}

.social {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

.social li {
  margin: 0 5px;
}

.social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #333;
  color: #fff;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.social a:hover {
  background-color: #555;
}
