.community-showcase {
  padding: 100px;
  background-color: #fafafa;
  text-align: center;
  overflow: hidden;
}

.community-showcase .subtitle {
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 30px;
}

.member-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.member-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
  scrollbar-width: none;
}

.member-slider::-webkit-scrollbar {
  display: none;
}

.member-card {
  flex: 0 0 auto;
  width: 180px;
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.member-card img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 10px;
}

.scroll-btn {
  background-color: var(--purple, #8a2be2);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 2;
}

.scroll-btn.left {
  margin-right: 30px;
}

.scroll-btn.right {
  margin-left: 30px;
}
