/* ======================================== */
/* Affichage œuvre sélectionnée              */
/* Uniquement pour oeuvres.html              */
/* ======================================== */
.oeuvre-display {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex: 1;
  max-width: 100%;
  align-items: flex-start;
}

#gallery-images {
  flex: 0 1 55%;
  min-width: 0; /* autorise les images à rétrécir dans le flex */
}
#gallery-images img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 15px;
}
#gallery-info {
  flex: 1;
  min-width: 0;
}
#gallery-info h3 {
  margin: 0.2rem 0;
  font-weight: normal;
  font-size: 0.8rem;
}
#gallery-info p {
  margin: 0.2rem 0;
  line-height: 1.5;
}
#gallery-statement {
  text-align: justify;
}

/* ======================================== */
/* Liens bandcamp / expo : noir, sans        */
/* soulignement (oeuvres.html uniquement)    */
/* ======================================== */
#gallery-expo a,
#gallery-expo a:visited,
#gallery-expo a:hover,
#gallery-expo a:active,
#gallery-statement a,
#gallery-statement a:visited,
#gallery-statement a:hover,
#gallery-statement a:active {
  color: #000 !important;
  text-decoration: none !important;
}

/* ======================================== */
/* Mobile : texte sous les images            */
/* ======================================== */
@media (max-width: 768px) {
  .oeuvre-display {
    flex-direction: column;
  }
}