.share-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-start; /* aligne à gauche */
  margin: 0; /* pas de centrage automatique */
  margin-bottom: 20px;
}


.share-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 35px;
  color: white;
  background-color: #333;
  transition: all 0.3s ease;
  font-size: 20px;
  text-decoration: none;
}

.partager{
    margin: 0;
    padding: 0;
    font-size: 0.8rem;
    color: rgb(130, 3, 92);
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: 0 auto;
    font-style: normal;
    text-align: center;
    margin-bottom: 0.5em;
    display: inline-block;
}

.share-buttons a.facebook { background-color: #3b5998; }
.share-buttons a.x { background-color: #1da1f2; }
.share-buttons a.linkedin { background-color: #0077b5; }
.share-buttons a.whatsapp { background-color: #25d366; }

.share-buttons a:hover {
  transform: scale(1.2);
  opacity: 0.8;
}
