/* Feuille de style pour les images */

.image-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: fit-content;
    gap: 20px;
}

.image-col{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

.image-row figure, .image-col figure {
    flex: 0 0 auto;
    margin: 0 20px;
    text-align: center;
}

figcaption{
  max-width: 300px;
}

.petite{
    width: 300px;
}
.moyenne{
    width: 450px;
}
.grande{
    width: 650px;
}

.galerie {
    width: 150px;
}

.galerie-ligne {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0px;
}

.galerie-ligne figure {
  text-align: center;
  max-width: 150px;
  margin: 10px 30px;
}

.galerie-ligne img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.galerie-ligne figcaption {
  font-size: 15px;
  color: #482812;
  margin-top: 5px;
}

.galerie-ligne figure:hover figcaption {
  color: #aa0000; /* couleur que tu veux */
  transition: color 0.2s ease;
}





