@charset "utf-8";
/* CSS spécifique à la page mobilier-miniature-victorien.html */

/* ---- Galerie meubles ---- */
.gallery-meubles .galerie-legendee {
  display: flex;
  flex-wrap: nowrap;            /* pas de retour à la ligne */
  overflow-x: auto;             /* défilement horizontal */
  gap: 1rem;
  padding: 0 0.5rem 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #576D88 #f1f1f1;
  scroll-snap-type: x mandatory; /* snap fluide desktop & mobile */
}

.gallery-meubles .bloc-legende {
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.gallery-meubles .bloc-legende img {
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
  margin-bottom: 0.5rem;
}

.gallery-meubles .bloc-legende figcaption {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
  text-align: justify;
  padding: 0 0.5rem;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .gallery-meubles .bloc-legende {
    width: 240px;                /* un peu plus étroit pour mobile */
  }

  .gallery-meubles .bloc-legende figcaption {
    font-size: 0.85rem;
    padding: 0 0.25rem;
    text-align: left;
  }
}
