/* ===================================================================
   VENTABREN.INFO — Bloc de partage social (réseaux)
   ===================================================================
   Utilisé par toutes les fiches (lieu, regard, focus, moment, livre,
   presse, témoignage) via l'include fiches/partage-social.php.
   Une seule modification ici suffit à mettre à jour l'apparence du
   bloc sur l'ensemble du site.
   =================================================================== */

.lieu-partage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 26px 0;
}
.lieu-partage-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: #8a8074;
}
.lieu-partage-icone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(182, 139, 82, 0.12);
  color: #b68b52;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.lieu-partage-icone:hover {
  background: #b68b52;
  color: #fff;
}
.lieu-partage-icone svg {
  width: 26px;
  height: 26px;
}
