/* Container */
.social {
  display: flex;
  gap: 8px;              /* espacement entre les ronds */
  align-items: center;
}

/* Bouton rond */
.social__link {
  width: 34px;
  height: 34px;
  border: 1px solid #000;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}

/* Petit feedback hover */
.social__link:hover {
  background: #000;
  color: #fff;
  transform: translateY(-1px);
}

/* Accessibilité clavier */
.social__link:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

/* Icône */
.social__icon {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
}


/* Variante inversée (footer noir, icônes blanches) */
.social--inverse .social__link {
  background: #000;
  color: #fff;
  border-color: #fff;
}

.social--inverse .social__link:hover {
  background: #fff;
  color: #000;
}

.social__svg{
  width: 16px;
  height: 16px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


