
.gridSculptures {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: auto;
  width: 550px;
  height: auto;
  /*! background-color: tomato; */
}
.sculptureG {
  margin-top:5px;
  grid-column:1;
  width: 100%;
  height: 190px;
  text-align: center;
  /*! background-color: lime; */
}
.sculptureC {
  margin-top:5px;
  grid-column:2;
  width: 100%;
  height: 190px;
  text-align: center;
  /*! background-color: aqua; */
}
.sculptureD {
  margin-top:5px;
  grid-column:3;
  width: 100%;
  height: 190px;
  text-align: center;
  /*! background-color: lime; */
}
.imagesculptures {
  height: 102px;
}
.titresculptures {
  margin-top: 2px;
  margin-bottom: 2px;
  width: auto;
  height: 22px;
}
.matiere, .format {
  font-size: 80%;
}

/* XXXXXXXXXX MEDIAS XXXXXXXXXXXX */
/* XXXX A5 portrait XXXX */
@media only screen and (max-width : 768px) and (orientation : portrait) {
  .gridSculptures {
    width: 100%;
  }
  .sculptureG, .sculptureC, .sculptureD {height: 155px;}
  .imagesculptures {height: 58px;}
  .titresculptures {height: 18px;}
  .matiere, .format {font-size: 80%;} 
  
}


/* XXXX A5 paysage XXXX */
@media only screen and (max-width : 1024px) and (orientation : landscape) {
  .gridSculptures {width: 100%;}
  .sculptureG, .sculptureC, .sculptureD {height: 180px;}
  .imagesculptures {height: 95px;}
  .titresculptures {height: 22px;}
  .matiere, .format {font-size: 80%;}
}

/* XXXX Tablette portrait XXXX */
@media only screen  and (min-width : 769px) and (max-width : 834px) and (orientation : portrait) {
  .gridSculptures {width: 90%;}
  .sculptureG, .sculptureC, .sculptureD {height: 230px;}
  .imagesculptures {height: 140px;}
  .titresculptures {height: 24px;}
  .matiere, .format {font-size: 80%;} 
}



/* XXXX Tablette paysage XXXX */
@media only screen  and (min-width : 1025px) and (max-width : 1112px) and (orientation : landscape) {
  .gridSculptures {width: 80%;}
  .sculptureG, .sculptureC, .sculptureD {height: 230px;}
  .imagesculptures {height: 140px;}
  .titresculptures {height: 24px;}
  .matiere, .format {font-size: 80%;}
}

