.our-members-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.member-card {
  width: 200px;
  text-align: center;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.member-info {
  background: #86BB46;
  color: #fff;
  padding: 10px;
}

.member-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  overflow-y: auto;
}

.member-modal.open {
  display: block;
  margin-top:0px;
}
.member-modal .modal-content {
  background: #86BB46;
  color: #fff;
  margin: 5% auto;
  padding: 20px;
  max-width: 1100px;
  position: relative;
  border-radius: 10px;
}
.member-modal .close {
  position: absolute;
  right: 45px;
  top: 15px;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
@media (max-width:768px){
  .modal-content {
      height:567px !important;
  }  
}