.members-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #d18814;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.members-section {
  margin-bottom: 1.5rem;
  text-align: center;
}
.members-group {
  font-size: 1.2rem;
  font-weight: 600;
  color: #c85b22;
  margin-bottom: 0.5rem;
}
.members-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem 0;
  justify-content: space-evenly;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.members-list li {
  background: #fdfcf8;
  border-radius: 0.75rem;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  color: #222;
  box-shadow: 0 2px 8px #f9c97c;
  transition: background 0.2s;
  flex: 1 1 160px;
  max-width: 14rem;
  min-width: 14rem;
  box-sizing: border-box;
}
.members-list li:hover {
  background: #fdedcb;
}
