/* members.css */
.members {
    max-height: 100vh;
    overflow-y: auto;
    background: rgba(15, 14, 14, 0.85);
  }
.members {
    overflow-y: auto;
    padding-bottom: 2rem;
  }
.member-card {
    max-height: 250px;
    overflow: hidden;
    margin-bottom: 1rem;
  }

@media (max-width: 768px) {
  .members {
    overflow-y: auto;
    max-height: 100vh;
    padding: 1rem;
    background: rgba(15, 14, 14, 0.85);
  }

  .member-card {
    max-height: 300px;
    overflow: hidden;
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .member-card p {
    font-size: 0.85rem;
    line-height: 1.2;
  }

  .member-card img {
    max-width: 80px;
    height: auto;
  }
}


html, body {
  height: auto;
  min-height: 100vh;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .members {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
    padding-bottom: 5rem;
  }

  .member-card {
    max-height: none;
  }
}
