/* =========================================================
   PN — Réseaux sociaux / partage articles
   ========================================================= */

.social-share-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* Boutons */
.social-button {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  text-decoration: none;
  color: #333;
  background: #fff;
  transition:
    transform .12s ease,
    background-color .12s ease,
    color .12s ease,
    border-color .12s ease;
}

/* Icônes */
.social-button i {
  font-size: 13px;
  line-height: 1;
}

/* Hover général */
.social-button:hover {
  transform: translateY(-1px);
}

/* Facebook */
.social-button.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
}

/* X / Twitter */
.social-button.twitter:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}

/* LinkedIn */
.social-button.linkedin:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  color: #fff;
}

/* WhatsApp */
.social-button.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

/* Email */
.social-button.email:hover {
  background: #555;
  border-color: #555;
  color: #fff;
}

/* =========================================================
   Mobile
   ========================================================= */
@media (max-width: 1024px) {

  .social-share-row {
    gap: 6px;
  }

  .social-button {
    width: 28px;
    height: 28px;
  }

  .social-button i {
    font-size: 12px;
  }

}