/* Style général */
.membres-du-bureau {
  font-family: Arial, sans-serif;
  margin: 20px;
  color: #333;
}

/* Titre des catégories */
.membres-du-bureau .category h2 {
  font-size: 24px;
  font-weight: bold;
  color: #00529b;
  margin-bottom: 20px;
  border-bottom: 2px solid #00529b;
  padding-bottom: 10px;
}

/* Liste des membres */
.membres-du-bureau .members-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Carte d'un membre */
.membres-du-bureau .member {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: calc(33.33% - 15px); /* 3 colonnes */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 15px;
  text-align: center;
}

.membres-du-bureau .member:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Image du membre */
.membres-du-bureau .member img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}

/* Informations du membre */
.membres-du-bureau .member-info {
  padding: 15px;
}

.membres-du-bureau .member-info h3 {
  font-size: 18px;
  color: #00529b;
  margin-bottom: 10px;
}

.membres-du-bureau .member-info p {
  font-size: 14px;
  margin: 5px 0;
  color: #555;
}

.membres-du-bureau .member-info a {
  color: #00529b;
  text-decoration: none;
}

.membres-du-bureau .member-info a:hover {
  text-decoration: underline;
}
.image-membre
{
	border-radius: 50%;
    width: 200px !important;
    height: 200px !important;
    object-fit: cover;
    border: 2px solid #1d5295;
    padding: 6px;
}
@media (max-width: 768px) {
  .membres-du-bureau .member {
    width: calc(50% - 20px); /* 2 colonnes */
  }
}

@media (max-width: 480px) {
  .membres-du-bureau .member {
    width: 100%; /* 1 colonne */
  }
}
