/* === FACEBOOK MODULE === */

.facebook-feed {
  width: 100%;
  display: flex;
  justify-content: center;   /* centre le module */
  margin: 40px 0;
}

.fb-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  min-height: 300px;

  display: flex;             /* centre le plugin même si largeur fixe */
  justify-content: center;
}

/* Loader premium */
.fb-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  border: 4px solid #ccc;
  border-top-color: #e63946;
  border-radius: 50%;
  animation: fb-spin 0.8s linear infinite;
  z-index: 10;
}

@keyframes fb-spin {
  to { transform: rotate(360deg); }
}

/* Plugin Facebook */
.fb-page {
  margin: 0 auto;            /* centre le bloc */
  display: block;
}

/* Responsive iframe (ne fonctionne que si la page FB est compatible) */
.fb-page iframe {
  width: 100% !important;
}
