.members-header {
  padding: 30px;
  background: #f7f7f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.members-header h2 {
  margin: 0;
}

.members-header p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #555;
}

.members-count {
  font-size: 22px;
  font-weight: 600;
  text-align: right;
}

.members-count span {
  display: block;
  font-size: 14px;
  font-weight: normal;
  color: #777;
}

/* GRID */
.members-container {
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* CARD */
.member-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  padding: 20px;
  text-align: center;
  position: relative;
}

.member-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.member-card h4 {
  margin: 8px 0 3px;
  font-size: 16px;
}

.member-card p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* VERIFIED BADGE */
.verified {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #2ecc71;
  color: #fff;
  font-size: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-card{
  text-decoration: none;
  color: inherit;
  display: block;
}

.members-search{
width:100%;
text-align:center;
margin:30px 0;
}

.members-search input{
width:500px;
padding:12px;
font-size:15px;
border:1px solid #ccc;
border-radius:4px;
}