/* Icônes réseaux sociaux — shortcode [social_icons] */
.social-icons-grid {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 1rem var(--Spacing-m, 1rem);
  flex-wrap: wrap;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
}
.social-icon svg path {
  fill: var(--Primary-400) !important;
  transition: fill 0.2s ease;
}
.social-icon:hover svg path {
  fill: var(--Primary-300) !important;
}
.social-icon svg {
  display: block;
  fill: currentColor;
}
