/* ── Vignettes des pages membres ─────────────────────────────────────── */

.section-membres-vignettes {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 40px;
}

.membres-vignettes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.membre-vignette {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s;
}

.membre-vignette:hover {
  opacity: 0.75;
}

.membre-vignette img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  padding: 6px;
}

.membre-vignette span {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  max-width: 90px;
  color: #374151;
}

/* ── Liste Monday ─────────────────────────────────────────────────────── */

.section-membres-list {
  padding-top: 32px;
}

.member-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.member-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid #f1f5f9;
}

.member-list-item:last-child {
  border-bottom: none;
}

.member-list-name {
  flex: 1;
  font-weight: 600;
  font-size: 0.95rem;
}

.member-list-phone {
  font-size: 0.85rem;
  color: #6b7280;
}

.member-list-phone a {
  color: inherit;
  text-decoration: none;
}

.member-list-phone a:hover {
  color: #147f76;
}

.member-list-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.member-list-icons .icon {
  width: 20px;
  height: 20px;
  opacity: 0.6;
  transition: opacity 0.15s;
}

.member-list-icons a:hover .icon {
  opacity: 1;
}

.member-list-empty {
  padding: 16px;
  color: #9ca3af;
  font-style: italic;
  font-size: 0.88rem;
}

/* ── Responsive ───────────────────────────────────────────────────────── */

@media (max-width: 600px) {
  .membre-vignette img {
    width: 60px;
    height: 60px;
  }

  .member-list-phone {
    display: none;
  }
}
