/* Galerie en maçonnerie collée */
.galerie-photo {
  margin: 0;
  padding: 0;
}

/* Conteneur des photos */
.photo {
  width: 200px;
  margin: 0; /* Supprime les marges */
  padding: 0; /* Supprime les paddings */
  overflow: hidden;
  border-radius: 0; /* Supprime les coins arrondis si nécessaire */
}

/* Images dans la galerie */
.photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .photo {
    width: 150px;
  }
}
.inscription-marge {
  position: fixed; /* ou absolute selon ton besoin */
  right: 20px;
  top: 120px; /* Ajuste selon la hauteur de ton header */
  width: 280px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px;
  border-radius: 10px;
  z-index: 1000;
}

.inscription-box h3 {
  margin-top: 0;
  color: #A8A8A8; /* Exemple de couleur pour le style "Fallout" */
}

@media (max-width: 768px) {
  .inscription-marge {
    position: static;
    width: 100%;
    margin: 20px 0;
  }
}