
/*********************************************/
/*  BANNER IMAGE                             */
/*********************************************/

img.banner {
  display: block;
  width: 100%;
}

/*********************************************/
/*  INSIDER SPLIT                            */
/*********************************************/

.content-split {
  display: flex;
  justify-content: space-between;
/*  flex-direction: row;
  flex-wrap: wrap;
  
  align-items: stretch;
  align-content: stretch;*/
  gap: 16px;
}

.content-split .left {
  display: inline-block;
  width: var(--small-col-width);
}

.content-split .right {
  display: inline-block;
  width: var(--large-col-width);
}

/*********************************************/
/*  PHOTO GALLERY                            */
/*********************************************/

ul.photo-gallery {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

ul.photo-gallery li {
  list-style-type: none;
  display: inline-block;
  margin: 0;
  padding: 6px;
  width: 17%;
}

ul.photo-gallery a {
  text-decoration: none;
}

ul.photo-gallery li img {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  vertical-align: middle;
}
ul.photo-gallery li:first-child {
  display: block;
  width: 100%;
}
ul.photo-gallery li:first-child img {
  width: 100%;
  object-fit: contain;
}

/*********************************************/
/*  SECTION : FULL WIDTH                     */
/*********************************************/

section.section-full {
  display: block;
  padding: var(--main-margin);
}


/*********************************************/
/*  SECTION : SINGLE LARGE COLUMN            */
/*********************************************/

section.section-single {
  display: block;
  padding: var(--main-margin);
  width: 70%;
}

@media(max-width: 1023px) {

}


/*********************************************/
/*  SECTION : SPLIT IN HALF (50-40)          */
/*********************************************/

section.section-split {
  display: block;
  padding: var(--main-margin);
}

section.section-split span.split-container {
  display: flex;
  justify-content: space-between;
  gap: var(--main-margin);
}

span.split-container .left {
  display: inline-block;
  width: var(--small-col-width);
}

span.split-container .right {
  display: inline-block;
  width: var(--large-col-width);
}


/*********************************************/
/*  SECTION : SPLIT IN HALF (50-50)          */
/*********************************************/

section.section-split.split-equal span.split-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--main-margin);
}

section.section-split.split-equal span.split-container .left,
section.section-split.split-equal span.split-container .right {
  width: auto;
  flex-basis: 500px;
  min-width: 400px;
  flex-grow: 1;
}


/*********************************************/
/*      NEWS SECTION AND COMPONENTS          */
/*********************************************/

.new-container {
  display: block;
}

/*********************************************/
/*           WORKSHOP LISTS                  */
/*********************************************/

ul.ateliers {
  list-style-type: none;
}

ul.ateliers > li {
  text-transform: uppercase;
  font-family: 'lunchtype21medium', sans-serif;
  margin-top: 1.5em;
}

ul.ateliers li ul {
  list-style-type: none;
}

ul.ateliers li ul li {
  text-transform: none;
  font-family: 'lunchtype21regular', sans-serif;
}

/*********************************************/
/*      ARTISTS LIST COMPONENTS              */
/*********************************************/

.artists-list-container {
  display: flex;
  flex-wrap: wrap;
  /*justify-content: space-between;*/
  gap: var(--main-margin);
}

.artists-list-container a {
  color: var(--text-color);
}

.artists-list-item {
  display: inline-block;
  max-width: 500px;
  min-width: 300px;
  flex-basis: 400px;
  position: relative;
  flex-grow: 1;
}

.artists-list-item {
  display: inline-block;
  max-width: 600px;
  min-width: 300px;
  flex-basis: 400px;
  position: relative;
  flex-grow: 1;
}

.artists-list-collective-item {
  display: inline-block;
  max-width: 700px;
  min-width: 300px;
  flex-basis: 500px;
  position: relative;
  flex-grow: 1;
}


.artists-list-item .artist-image,
.artists-list-collective-item .artist-image {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.artists-list-item .artist-name {
  position: absolute;
  top: 1em;
  left: 1em;
  max-width: calc(100% - 2 * 1em);
  padding: 4px 12px;
  background-color: rgb(255, 255, 255, 0.75);
  border: 1px solid var(--brand-alt-color);
  border-radius: 5px;
  transition: background-color 0.5s linear;
}

.artists-list-item a:hover .artist-name,
.artists-list-collective-item a:hover .artists-names span {
  background-color: white;
  transition: background-color 0.1s linear;
}

.artists-list-collective-item .artists-names {
  position: absolute;
  top: 1em;
  left: 1em;
  max-width: calc(100% - 2 * 1em);
}

.artists-list-collective-item .artists-names span {
  display: block;
  padding: 4px 12px;
  background-color: rgb(255, 255, 255, 0.75);
  border: 1px solid var(--brand-alt-color);
  border-radius: 5px;
  margin: 12px;
  transition: background-color 0.5s linear;
}


/*********************************************/
/*             IMAGE COLUMN                  */
/*********************************************/


.img-section {
  display: block;
  width: 100%;
  margin-bottom: 2em;
}

.img-2-col,
.img-3-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.img-section a {
  display: block;
}

.img-2-col a {
  max-width: 45%;
}

.img-3-col a {
  max-width: 30%;
}

.img-1-col a {
  text-align: center;
}

.img-1-col a {
  max-width: 100%;
}

.img-section img {
  max-width: 100%;
  max-height: 80vh;
}

/*********************************************/
/*            VERTICAL CARD                  */
/*********************************************/

.card-vertical {
  border: 1px solid var(--brand-alt-color);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 1.5em;
}

.card-vertical img.cover {
  width: 100%;
}

.card-vertical span.title {
  display: block;
  font-family: 'lunchtype21medium';
  font-size: 1.6em;
  margin: 0.3em var(--main-margin);
}
.card-vertical span.description p {
  display: block;
  margin: 0.3em var(--main-margin);
}

.card-vertical span.link {
  display: block;
  text-align: right;
  margin: 1em var(--main-margin);
}

/*********************************************/
/*          HORIZONTAL CARD                  */
/*********************************************/


.news-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}


.card-horizontal {
  border: 1px solid var(--brand-alt-color);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}

.card-horizontal.card-small {
  border: 1px solid var(--brand-alt-color);
  border-radius: 16px;
  overflow: hidden;
  display: inline-flex;
  width: 48.5%;
  margin: 1em 0;
}

@media (max-width: 879px) {
  .card-horizontal {
    display: block;
  }
  .card-horizontal.card-small {
    border: 1px solid var(--brand-alt-color);
    border-radius: 16px;
    overflow: hidden;
    display: block;
    width: auto;
  }
}

.card-horizontal-left {
  /*position: relative;*/
  min-width: 50%;
  display: flex;
  /*justify-content: center;
  align-items: center;
  background-position: center center;
  background-size: cover;*/
  /*background-color: rgb(255,255,255,0.6);*/
}

/*.card-horizontal-left img {
  display: none;
}*/

/*.card-horizontal-left::before {
  content: ' ';
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255, 0.6);
}*/

.card-horizontal-left a {
  display: block;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

.card-horizontal-left img {
  display: block;
  width: 100%;
  height: 100%;
  /*border-radius: 8px;*/
  position: relative;
  z-index: 2;
  object-fit: cover;
}

.card-horizontal-right {
  padding: var(--main-margin);
  min-width: 50%;
  display: block;
}

.card-horizontal span.title {
  display: block;
  font-family: 'lunchtype21medium';
  font-size: 1.6em;
  margin: 0.3em 0;
}

.card-horizontal span.subtitle {
  display: block;
  font-family: 'lunchtype21medium';
  font-size: 1em;
  margin: 0.3em 0;
}
.card-horizontal span.description {
  display: block;
  margin: 1em 0;
}
.card-horizontal span.description p {
  display: block;
  margin: 0.3em 0;
}


/*********************************************/
/*          NEWS CONTENT PAGE                */
/*********************************************/


.news-content span.title {
  display: block;
  font-family: 'lunchtype21medium';
  font-size: 1.6em;
  margin: 0.3em 0;
}

.news-content span.subtitle {
  display: block;
  font-family: 'lunchtype21medium';
  font-size: 1em;
  margin: 0.3em 0;
}
.news-content span.description {
  display: block;
  margin: 1em 0;
}
.news-content span.description p {
  display: block;
  margin: 0.3em 0;
}


/*********************************************/
/*          MoMENTS CLéFS                */
/*********************************************/

.timeline-container .moment h2 {
  width: 40vw;
  color: #FF7B00;
  border-bottom: 1px solid #FF7B00;
}

.timeline-container {
  font-size: 1.2em;
}