/************************************************************************************************/
/********************************   ROOT   *****************************************************/
/**********************************************************************************************/

:root {
    /*Les couleurs sont géré dans le CMS et envoyer ici par Javascript*/
    /*/!\TOUJOURS UTILISER LES VARIABLES POUR LES COULEURS ET LES FONTS/!\*/

    /*VRAIMENT UTILISE*/
    --main-color: #000000;
    --secondary-color: #000000;
    --title-primary-color: #111;
    --title-secondary-color: #111;
    
    /*Font family*/
    --font-title: 'Barlow, sans-serif';
    --font-sub-title: 'Barlow, sans-serif';
    --font-paragraphe: 'Barlow, sans-serif';

    /*menus colors*/
    --menu-primary-color: #fff;


    /*subtitles colors*/
    --subtitle-primary-color: #111;
    --subtitle-secondary-color: #111;


    /*secondary titles colors*/
    --secondary-title-primary-color: #111;
    --secondary-title-secondary-color: #111;

    /*Text colors*/
    --text-primary-color: #fff;
    --text-secondary-color: #fff;


    /*gestion des partenaires (information envoyée depuis main.js) */
    --nb-partenaires: 5;
}

/************************************************************************************************/
/********************************   GESTION COULEURS    ****************************************/
/**********************************************************************************************/

*:not(.list-artists){
    color: var(--text-primary-color);
    scroll-behavior: smooth;
}

*.secondary,
*.secondary b,
*.secondary p,
*.secondary span {
    color: var(--text-primary-color);
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform, opacity;
    transition: opacity 300ms ease-out;
    box-shadow: 0 0 5px 1px currentColor;
    z-index: 999;
}

header div h1 a{
    font-size: 250% !important;
    color: var(--menu-primary-color);
    font-weight: 600 !important;
}

header div h1 a,
.menu li a,
.fa-house {
    color: var(--title-secondary-color);
    font-size: 170%;
    font-weight: 500;
}

.menu li a:hover{
    color: var(--title-primary-color);
}
header div h1 a:hover{
    color: var(--title-secondary-color);
}

h2 {
    color: var(--subtitle-secondary-color);
}

h2.secondary {
    color: var(--title-secondary-color);

}

h3,
a {
    color: var(--subtitle-primary-color);
}

h3.secondary
 {
    color: var(--subtitle-secondary-color);
}

h4,
h5,
h6,
h4 a,
h5 a,
h6 a {
    color: var(--secondary-title-primary-color);
}

h4.secondary,
h5.secondary,
h6.secondary,
h4.secondary a,
h5.secondary a,
h6.secondary a {
    color: var(--secondary-title-secondary-color);
}


a:not(header a):not(.artist):not(.btn-day):not(.edition):not(.interview){
    text-decoration: underline;
    font-weight: bold;
}

/************************************************************************************************/
/********************************   BASE      **************************************************/
/**********************************************************************************************/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-paragraphe);

    scroll-behavior: smooth;
}
html{
    scroll-behavior: smooth;
    
}
body {
    background-color: var(--main-color);
}
body {
    opacity: 0;
    transition: opacity 0.25s ease;
}

body.site-ready {
    opacity: 1;
}
/************************************************************************************************/
/********************************   header / footer    *****************************************/
/**********************************************************************************************/

/* Header */
header {
    display: flex;
    align-items: center;
    width: 100%;
    position: fixed;
    z-index: 10;
    top: 0%;
    padding: 10px 10px;
    background-color: var(--secondary-color);
    font-family: var(--font-title);
}
strong{
    font-weight: 700;
}
.fakeheader{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 99%;
    border-bottom: 6px dotted var(--subtitle-secondary-color);
    pointer-events: none;

}




header div {
    padding: 0 1% !important;
    padding: 1% 1% !important;
}

a {
    text-decoration: none;
}

header a {
    text-decoration: none;
    text-align: center;
    transition: 250ms ease all;
    letter-spacing: 1px;
    font-family: var(--font-title);


}

header h1 {
    flex-basis: 10%;
    z-index: 15;
    font-size: 1.3em;
    font-weight: bold;
    font-family: var(--font-title);
}

.container-menu-flex{
    justify-content: left !important;
}
header h1 a {
    text-align: left;
    font-family: var(--font-title);
    color: var(--font-title);
    display: flex;
    align-items: center;
    letter-spacing: 1px;
}

.fa-house {
    font-size: 0.7em !important;
}



nav {
    flex-basis: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5dvh;
    position: fixed;
}

.menu-menu-principal-container {
    display: block;
    z-index: 15;
    padding: 0 !important;
    font-size: 1em;
}

.menu-menu-principal-container .menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: revert-layer;
    width: 100%;
    list-style: none;
    gap: 40px;
    font-weight: bold;
    margin-top: 3%;
}

.menu {
    list-style: none;
}

.dashicons{
    margin-top: 5px;
}
#menu-item-1138 a span{
    
    color: #caf0f8;
}
#menu-item-1138:hover .sub-menu{
    display: block;
    cursor: none;
    box-shadow: 
    0 4px 10px rgba(0, 0, 0, 0.15),
    0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Menu hover au niveau de partenaire*/
.sub-menu{
    display: none;
    position: absolute;
    background-color: #003f88;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1;
    list-style: none;
    font-size: 14px;
    cursor: none;

}

.burger-icon {
    text-align: center;
    height: 5dvh;
    display: flex;
    align-items: center;
    font-size: 2em;
    justify-content: right;
    display: none;
    user-select: none;
    padding: 0 2% 0 0 !important;
    cursor: pointer;
}

/************************************************************************************************/
/********************************   Bannière    ************************************************/
/**********************************************************************************************/

.banner {    
    height: 80dvh;
    margin-top: 5%;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.btn-mute {
    position: absolute;
    max-width: 50px;
    max-height: 50px;
    bottom: 15px;
    left: 95% !important;
    cursor: pointer;
}

.banner-container {
    position: relative;
    margin-top: 0%;
}

.nav-banners {
    z-index: 1;
    position: absolute;
    bottom: 50px;
    right: -50%;
    transform: translate(50%);
    display: flex;
    width: fit-content;
    gap: 5px;
}

.banner-info {
    position: absolute;
    left: 5%;
    bottom: 10%;
    z-index: 1;
    max-width: 35%;
}

.videoMobile{
    display:none;
}

@keyframes slide {
    0% {
        transform: translateX(50%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.hidden {
    display: none !important;
}

.banner-info h2 {
    font-size: 4em;
}

.banner-info p {
    font-size: 1.5em;
}

.dot {
    height: 10px;
    width: 10px;
    border-radius: 100%;
    border: 1px solid var(--title-primary-color);
    cursor: pointer;
    animation: slide 2s;
}

.current-dot {
    background-color: var(--title-primary-color);
}


.fluid {
    width: 100%;
    height: auto;
}

.banner video,
.banner img {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    object-fit: fill;
}

/************************************************************************************************/
/********************************   Index    ***************************************************/
/**********************************************************************************************/

.partenaire-section-global {
    overflow: hidden;
    border-bottom: 6px dotted var(--text-secondary-color);
    border-top: 6px dotted var(--text-secondary-color);
    padding: 4% 5% !important;
}

.partners-marquee-global {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 30px;
}

.partners-track-global {
    display: flex;
    align-items: center;
    gap: 70px;
    width: max-content;
    animation: partners-scroll-global 35s linear infinite;
}

.partenaire-marquee-item-global {
    flex: 0 0 auto;
    width: 220px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.partenaire-marquee-item-global img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.partners-marquee-global:hover .partners-track-global {
    animation-play-state: paused;
}
.partenaire-marquee-item-global img {
    transition: transform 0.3s ease;
}

.partenaire-marquee-item-global:hover img {
    transform: scale(1.1);
}
@keyframes partners-scroll-global {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
main {
    min-height: 79dvh;
    width: 100%;
    font-weight: 300;
}

section{
    margin-top: 12dvh;
}

h2 {
    font-size: 1.5em;
    flex-basis: 100%;
    font-family: var(--font-sub-title);
    letter-spacing: 1px;
    margin-bottom: 2%;
}

h3 {
    font-size: 2rem;
    font-weight: 300;
}

h4 {
    font-size: 1.1em;
    font-weight: 500;
}

.col-10 {
    width: 100%;
    padding: 2% 5%;
   
}

.col-10 h3:not(.expo-info h3){    
     font-size: 2em;
    color: var(--subtitle-secondary-color);
}

.col-10 .link_url_geolocation {
    display: block;
    margin: 20px auto;
}

.div-map{
    display: flex;
    justify-content: center;
}

#map{
    padding: 6% 5%;
    
}
/*Css de la map*/
.div-map .half-item{
    flex-basis: 59%;
}

/*Description*/
.about-box{
    background-color: var(--secondary-color);
    margin-top:0dvh;
}

.about p {
    font-size: 1.5em;
    font-weight: 300;
}
.about a{
    color:var(--menu-primary-color);
}

.container-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/*Show Case*/
.show-case {
    flex-basis: 20dvw;
    height: 20dvw;
    position: relative;
    text-decoration: none;
    overflow: hidden;
}



.expo-btn {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 250ms ease;
}

.show-case:hover>.expo-btn {
    transform: scale(1.3);
}

.artist-panel-content {
    margin: 10% 0 0 10%;
}

/*.artist-panel-grid:has(.artist-work-card:nth-of-type(2)) {
  gap: 10px 0 0 0;
}*/
.artist-panel-grid:has(.artist-work-card:nth-of-type(2))
.artist-panel-content{
  margin: 0 0 0 10%;
}



.artist-modal-main-video {
    display: block;
    width: 100%;
    max-height: 50dvh;
    object-fit: contain;
    background: #000;
}

.artist-modal-thumb {
    position: relative;
    overflow: hidden;
}

.artist-modal-thumb-video {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.artist-modal-thumb-video img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-modal-thumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    pointer-events: none;
}


.expo-info {
    position: absolute;
    left: 0;
    padding: 4%;
    bottom: 0;
    text-align: left;
}
.expo-info h3{
    text-align: left;
}

.permalink-expositions {
    flex-basis: 20dvw;
    height: 20dvw;
    border: var(--title-primary-color) 1px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
}

.permalink-expositions a {
    text-decoration: none;
    letter-spacing: normal;
    transition: all 250ms ease;
}

.permalink-expositions a:hover {
    letter-spacing: 2px;
}

/*Galerie bas de page*/
.gallery-element,
.permalink-gallery {
    flex-basis: 11dvw;
    height: 11dvw;
    overflow: hidden;
}

.permalink-gallery {
    height: 100%;
    border: var(--title-primary-color) 3px solid;
    display: flex;
    justify-content: center;
    height: 11dvw;
    align-items: center;
}

.permalink-gallery a {
    text-decoration: none;
    transition: all 250ms ease;
}

.permalink-gallery a:hover {
    letter-spacing: 2px;
}

.gallery-element img {
    height: 100%;
    width: auto;
}
#artist h2{
    flex-basis: 100%;
    font-size: 2em;
    font-weight: 500;
    color: var(--subtitle-secondary-color);
}
.list-artists h2{
    flex-basis: 100%;
    font-size: 2em;
    font-weight: 500;
    color: var(--subtitle-secondary-color);
}
.galeries h2{
    flex-basis: 100%;
    font-size: 2em;
    font-weight: 300;
    color: var(--subtitle-secondary-color);
}


.scale-in-center {
	-webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


 @-webkit-keyframes scale-in-center {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes scale-in-center {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
    }
  }
  .slide-in-bck-center {
	-webkit-animation: slide-in-bck-center 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-bck-center 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


 @-webkit-keyframes slide-in-bck-center {
    0% {
      -webkit-transform: translateZ(600px);
              transform: translateZ(600px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateZ(0);
              transform: translateZ(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-bck-center {
    0% {
      -webkit-transform: translateZ(600px);
              transform: translateZ(600px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateZ(0);
              transform: translateZ(0);
      opacity: 1;
    }
  }
  
  .slide-in-bottom {
	-webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


 @-webkit-keyframes slide-in-bottom {
    0% {
      -webkit-transform: translateY(1000px);
              transform: translateY(1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-bottom {
    0% {
      -webkit-transform: translateY(1000px);
              transform: translateY(1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
  }
  
/************************************************************************************************/
/********************************   Prog    ***************************************************/
/**********************************************************************************************/
.expositions-gallery {
    display: flex;
    width: 100%;
    padding: 2% 5%;
    flex-wrap: wrap;
}

.expositions-gallery h2 {
    flex-basis: 100%;
    font-size: 2em;
    font-weight: 300;
    color: var(--subtitle-secondary-color);
}

.expositions-gallery a,
.expositions-gallery .expo-modal-trigger {
    flex-basis: calc(33.333% - 0.5dvw);
    position:relative;
    height: 0;
    padding-bottom: 32%;
    margin-bottom: 8px;
}

.expositions-gallery .expo-modal-trigger {
    display: block;
}

.artist {
    font-weight: bold;
    font-size: 1.5em;
    transition: all ease-in-out 0.2s;
}

.artist:not(.secondary) {
    font-weight: bold;
    font-size: xx-large;
    color: var(--font-sub-title);
    transition: all ease-in-out 0.2s;
}
.artist:is(.secondary)  {
    font-weight: bold;
    font-size: xx-large;
    color: var(--text-secondary-color);
    transition: all ease-in-out 0.2s;
}

/* .artist:hover{
    color: var(--title-secondary-color) !important;
} */

.expo-card {
    position: relative;
    overflow: hidden;
    padding-bottom: 99%;
    width: 99.6%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}
.expo-badge-new {
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px 6px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    color: var(--main-color);
    font-family: var(--font-title);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.3px;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    pointer-events: none;
}
.expo-badge-current {
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px 6px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    color: var(--main-color);
    font-family: var(--font-title);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.3px;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    pointer-events: none;
}

.expo-badge-closing {
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px 6px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    color: var(--main-color);
    font-family: var(--font-title);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.3px;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    pointer-events: none;
}
.is-new-expo .expo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid var(--text-secondary-color);
    opacity: 0.9;
    pointer-events: none;
    z-index: 3;
}
.expo-card video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.list-artists h2:not(.link_url_geolocation){
    color: var(--subtitle-secondary-color);
    font-size: 2em;
}
.logoprincipal {
    font-size: 2em;
    margin-left: 3.5dvw;
}  



.info-card {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.28rem;
    width: 100%;
    min-height: 44%;
    max-height: 78%;
    padding: 1rem 1rem 0.95rem;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: transform 350ms ease, opacity 350ms ease, visibility 350ms ease;
    pointer-events: none;
    overflow: hidden;
    box-sizing: border-box;
}

.info-card__title {
    margin: 0;
    padding-bottom: 0.3rem;
    border-bottom: 2px dotted currentColor;
    font-size: clamp(1rem, 1.5dvw, 2rem);
    line-height: 1.05;
    font-weight: 900;
}

.info-card__type,
.info-card__artists,
.info-card__address,
.info-card__location,
.info-card__meta {
    margin: 0;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.info-card__type {
    font-size: clamp(0.78rem, 0.9dvw, 1rem);
    font-weight: 600;
}

.info-card__artists,
.info-card__address,
.info-card__location {
    font-size: clamp(0.72rem, 0.82dvw, 0.95rem);
    font-weight: 500;
}

.info-card__meta {
    margin-top: auto;
    font-size: clamp(0.68rem, 0.75dvw, 0.9rem);
    font-weight: 700;
}
/*Horaire*/
.date-list {
    justify-content: left;
    gap: 1.5%;
    width:93%;
}

.date-list h2{
    color: var(--subtitle-secondary-color);
    font-size: 2em;
}

.maintenant {
    color: var(--title-primary-color) !important;
}

.same-dates {
    position: relative;
    /* background-color: #747474 !important; */
    z-index: 1;
}

.same-dates::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--title-secondary-color);
    opacity: 0;
    animation: waves 2s ease-in-out infinite;
    z-index: -1;
}

.same-dates::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--title-secondary-color);
    opacity: 0;
    animation: waves 2s ease-in-out 1s infinite;
    z-index: -1;
}

@keyframes waves {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.05);
        opacity: 0;
    }
}

.btn-day {
    margin-top: 1.8%;
    flex-basis: 4%;
    text-align: center;
    padding: 1%;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid var(--text-secondary-color);
    background-color: var(--text-secondary-color);
}

.btn-day div p {
    text-align: center;
}

.btn-day p{
    text-transform: uppercase;
}

.btn-day:hover{
    background-color: var(--main-color);
    color: var(--title-secondary-color);
    border: 1px solid var(--title-secondary-color);
    transition: all 250ms ease-in-out;
}

.legende {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-left: 5%;
}

.legende div{
    width: 25px;
    max-width: 25px;
    height: 25px;
    margin-left: 15px;
}


.current-date {
    background-color: var(--title-secondary-color);    
}

.current-date p{
    color: var(--text-primary-color);
}

.horaire-container {
    gap: 20px;
    justify-content: left;
}

.horaire-container h2 {
    text-transform: uppercase;
    color: var(--subtitle-secondary-color);
    font-size: 1.75em;
}

.horaire h2 {
    color: var(--subtitle-secondary-color) !important;
}

/*Partenaires Page*/
.partenaire {
    max-width: 250px;
    max-height: 150px;
    min-height: 50px;
    min-width: 150px;
}



.grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(5%, 10%));
    gap: 70px;
    margin: 25px 0;
}

.grid a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.grid a img {
    object-fit: contain;
}

.mt-10 {
    margin-top: 8%;
    margin-right: 5%;
}



/*Contact*/
.main-contact {
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.bloc-contact {
    flex-basis: 90%;
    padding: 3%;
    margin: auto;
    margin-top: 15dvh;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.text-contact,
.info-contact {
    flex-basis: 48%;
}

.text-contact div {
    margin-bottom: 10px;
}

.text-contact h2, .text-contact .fa-solid{
    color: var(--subtitle-secondary-color);
}

.text-contact p {
    font-size: 1.3em !important;
    color: var(--text-primary-color);
}

.role{
    color: var(--text-primary-color);
}

.membre {
    font-weight: 400;font-size: 1.3em;
}
.membre:o {
    font-weight: 400;font-size: 1.3em;
}

.team-contact-admin{
    margin-bottom: 3dvh;
}
.home .team-contact-admin {
    margin-bottom: 12dvh;
    margin-top: 5dvh;
}
.team-contact .membre:not(.secondary){
    color: var(--menu-primary-color);
}
.team-contact .secondary {
    color: var(--title-secondary-color);
}


.text-contact h2 {
    font-size: 2em;
    font-weight: 500;
}


.team-contact h3 {
    line-height: 1em;
    font-size: 1.7em;
    margin-top: 2%;
    margin-bottom: 5px;
    color: var(--title-secondary-color);
    text-transform: uppercase;
}
















/*Footer*/

/*Footer*/
footer{
    background-color: var(--secondary-color);
    padding: 18px 0 22px;
    min-height: unset;
}

.fakefooter {
    position: relative;
    left: 0;
    width: 100%;
    border-top: 6px dotted var(--subtitle-secondary-color);
        pointer-events: none;
    opacity: 1;
}

footer section{
    margin-top: 0 !important;
    border: none;
}

.footer-inner{
    width: 100%;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.footer-left{
    flex: 1 1 auto;
    min-width: 0;
}

.footer-editions{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    font-size: 1.5em;
    line-height: 1.35;
    max-width: 100%;
}

.footer-editions span{
    display: inline-flex;
    align-items: center;
}

.footer-editions span:not(:last-child)::after {
    content: " |";
    margin-right: 6px;
    color: var(--subtitle-secondary-color);
    opacity: 0.9;
    margin-left: 6px;
}

.edition{
    font-size: 1.2em;
    text-decoration: none;
    font-weight: bold;
    transition: 250ms all ease;
    color: var(--subtitle-secondary-color);
}

.edition:hover{
    color: var(--text-primary-color);
}

.footer-copy{
    margin-top: 14px;
    font-size: 1.2em;
    color: var(--subtitle-secondary-color);
}
.d-adresse{margin-top: 10px;}
.footer-right{
    margin-left: auto;
    padding-left: 28px;
    border-left: 6px dotted var(--subtitle-secondary-color);
}

.info-contact-footer{
    padding: 0;
    margin: 0;
    border: none;
    font-size: inherit;
    font-weight: inherit;
    text-align: inherit;
}

.tel{
    display: grid;
    justify-items: start;
    gap: 4px;
    text-align: right;
}

.tel p {
    margin: 0;
    color: var(--subtitle-secondary-color);
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.25;
    text-align: left;
    transition: color 250ms ease;
    width: 97%;
}

.tel p:hover{
    color: var(--text-primary-color);
}




.reseaux-sociaux {
    width: 100px;
    display: none;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 3%;
    gap: 8px;
}

.rs {
    width: 50%;
}

/* .container-left-copyright {
    width: 70%;
} */


.partenaires {
    height: 15dvh;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 1%;
    position: relative;
    margin-top: 0 !important;
    margin-left: 5%; /* À retirer si on veut l'animation ainsi que décommenter les autres classes */
}


.partenaires-slider {
    display: flex;
    height: 100%;
    align-items: center;
    flex-wrap: wrap;
    gap: 5dvw;
}

.partenaire {
    height: 20dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.partenaire img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    overflow: visible;
    padding: 10px;
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }

    100% {
        /*la distance de translation est dynamiquements adapté au nombre de partenaires*/
        transform: translateX(calc(-1 * 15dvw * var(--nb-partenaires)));
    }
}

.animation-opacity {
    opacity: 1;
    transition: 250ms opacity ease;
}

.animation-opacity:hover {
    opacity: 0.7;
}

/*medias*/
.medias-container {
    padding-top: 8dvh;
    width: 90%;
    margin: auto;
}

.interviews {
    display: flex;
    gap: 2%;
    align-items: center;
    flex-wrap: wrap;
}

.interviews h3 {
    flex-basis: 100%;
    margin-bottom: 2%;
    width: contain;

}


.interview {
    display: block;
    height: 16dvh;
    flex-basis: 100%;
    background-color: var(--secondary-color);
    border: 1px var(--text-primary-color) solid;
    padding: 2%;
    text-decoration: none;
    transition: all 250ms ease;
    margin-top: 2%;

}

.annonces{
    display: flex;
    gap: 2%;
    align-items: center;
    flex-wrap: wrap;
}

.annonce{
    display: block;
    height: 305px;
    flex-basis: 32%;
    background-color: var(--secondary-color);
    border: 1px var(--text-primary-color) solid;
    padding: 2%;
    text-decoration: none;
    transition: all 250ms ease;
    margin-top: 2%;
}



.annonce:hover{
    background-color:darkcyan;
    color: black;
}

.interview:hover {
    background-color: var(--text-secondary-color);
}

.galeries h3 {
    margin: 10px 0;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5%;
    margin: 10px auto;
}

.gallery a,
.thumbnail-video {
    position: relative;
    height: 0;
    padding-bottom: 12%;
    display: block;
    width: 12%;
    overflow: hidden;
    cursor: pointer;
    margin-top: 0.4dvw;
}


.gallery a img,
.thumbnail-video img {
    height: 100%;
    width: 100%;
    left: 0%;
    top: 0%;
    object-fit:cover;
    transform: scale(1);
    position: absolute;
    transition: 400ms all ease;
   
    
}

.gallery a img:hover,
.thumbnail-video img:hover {
    transform: scale(1.2);
    
}

/*video*/
.overlay-video {
    overflow: hidden;
    z-index: 2000;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0%;
    height: 100dvh;
    width: 100dvw;
    -webkit-animation: slbOverlay 0.5s;
    -moz-animation: slbOverlay 0.5s;
    animation: slbOverlay 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper {
    width: 80%;
    height: auto;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.video-wrapper.local {
    height: auto;
    padding: 0;
}

#js-cross {
    position: absolute;
    right: 10dvh;
    top: 5dvh;
    cursor: pointer;
    color: var(--title-primary-color);
    font-size: 2em;
}

.video-wrapper iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.video-wrapper video {
    width: 100%;
    height: auto;
}
/************************************************************************************************/
/********************************   gallery et modales    **************************************/
/**********************************************************************************************/

/*Exposition single*/
.section-single-expo {
    flex-wrap: wrap;
    justify-content: space-between;
}

.thumbnail {
    width: 100%;
    max-height: 50dvh;
    overflow: hidden;
}

.section-single-expo .medias .galerie .gallery h3 {
    flex-basis: 100%;
}

.section-single-expo .medias .galerie .gallery a,
.section-single-expo .medias .galerie .gallery .thumbnail-video {
    flex-basis: 19%;
    margin-top: 1%;
    height: 0;
    position: relative;
    padding-bottom: 19%;
   
    
}
.section-single-expo .medias .galerie .gallery a img{
    width: 100%;
    height: 100%;
}

.section-single-expo .medias .galerie .gallery {
    gap: 1%;
}

.date-expo{
    display: flex;
    gap: 5px;
}

.description-artiste p{
    width: 50%;
}

.bloc-artiste {
    margin: 20px 0;
}
.bloc-artiste a {
    color: var(--subtitle-primary-color);
}


.info-content {
    margin-top: 30px;
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.info-content p:first-of-type b{
    color: var(--title-secondary-color);
}

.info-content h2 {
    color: var(--subtitle-secondary-color);
}

.name-artiste {
    margin-top: 0;
    color: var(--title-secondary-color);
}

.medias {
    margin-top: 2%;
    flex-basis: 100%;
}

.name-artiste a {
    text-decoration: none;
    font-size: 1em;
    opacity: 1;
    transition: all 250ms ease;
}

.info-description{
    margin-top: 2%;
    margin-bottom: 2%;
    width: 50%;
    font-size: 1.15em;
}
/* .info-content p, .info-content p b, .info-content p span, .info-content p a{
    color: antiquewhite;
} */

.description-artiste a{
    margin: 2% 0;
}

.titre-lieu {
    font-weight: bold;
}
/************************************************************************************************/
/********************************   Page artiste     *******************************************/
/**********************************************************************************************/

.artists-inline-list {
    width: 100%;
    text-transform: uppercase;
    line-height: 2.1em;
}

.artist-inline-view {
    margin-top: 1.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s ease, opacity 0.3s ease;
}

.artist-inline-view.is-visible {
    max-height: 3000px;
    opacity: 1;
}

.artist-inline-inner {
    width: 100%;
}

.artist-panel {
    width: 100%;
}

.artist-panel-grid {
    display: grid;
    grid-template-columns: minmax(280px, 38%) 1fr;
    gap: 2rem;
    align-items: start;
    padding: 1.5rem 0 0 0;

}



.artist-panel-content h2 {
    font-size: 3rem;
    text-transform: uppercase;
}

.artist-panel-description {
    margin-bottom: 4rem;
}

.artist-panel-description p {
    margin-bottom: 0.8rem;
    font-size: 2rem;
}

.artist-panel-site {
    margin-bottom: 1.25rem;
}

.artist-panel-site a {
    text-decoration: underline;
}

.artist-panel-expos h3 {
    margin-bottom: 0.8rem;
}

.artist-panel-expos-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 1rem;
}

.artist-expo-card {
    text-decoration: none;
}

.artist-expo-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 0.5rem;
}

.artist-expo-card p {
    margin: 0;
}

.artist-trigger.is-active {
    text-decoration: underline;
    font-size: xxx-large;
    opacity: 1 !important;
}
.artist-inline-expositions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
}

.artist-inline-expositions a {
    display: block;
    text-decoration: none;
}

.artist-inline-expositions .expo-btn {
    width: 50%;
    aspect-ratio: 1 / 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 0.25s ease;
}

.artist-inline-expositions a:hover .expo-btn {
    transform: scale(1.03);
}

.artist-inline-expositions p {
    margin-bottom: 8px;
    font-size: 185%;
    text-align: center;
    width: 50%;
}






.expo-artist-link {
    position: relative;
    z-index: 3;
    text-decoration: none !important;
    font-weight: inherit;
    color: inherit !important;
    text-transform: uppercase;
}

.expo-artist-link:hover {
    text-decoration: underline !important;
}

.artist-modal-expo-description {
    margin-bottom: 2rem;
}

.artist-modal-artists {
    border-top: 6px dotted var(--title-secondary-color);
    padding-top: 1.5rem;
}

.artist-modal-artist-block + .artist-modal-artist-block {
    margin-top: 1.5rem;
}

.artist-modal-artist-block h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 900;
}

.artist-modal-artist-description,
.artist-modal-artist-description p {
    color: #111;
}

/* ===== Artist works modal ===== */
.artist-modal-open {
    overflow: hidden;
}

.artist-works-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 1.2rem;
}
.artist-works-grid:has(> button:only-child) {
        grid-template-columns: 1fr;
}

.artist-work-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.artist-work-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 0.25s ease;
}

.artist-work-card:hover .artist-work-thumb,
.artist-work-card:focus-visible .artist-work-thumb {
    transform: scale(1.03);
}

.artist-work-title {
    display: block;
    margin: 0;
    font-size: 185%;
    text-transform: uppercase;
    color: inherit;
    text-align: center;
}


.artist-work-badge {
    position: absolute;
    top: 12%;
    right: 2%;
    z-index: 2;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
}

.artist-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    border-radius: 10px;
}

.artist-modal.hidden {
    display: none;
}

.artist-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(50px);
}

.artist-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(67dvw, 100%);
    max-height: calc(100dvh - 6rem);
    overflow: auto;
    padding: 2rem;
    background: #fff;
    color: #111;
    border-radius: 25px;

}
.artist-modal-dialog {
  overflow: auto;
  scrollbar-width: none;      
}

.artist-modal-dialog::-webkit-scrollbar {
  display: none;              
}

.artist-modal-close {
    position: fixed;
    top: 5dvh;
    right: 17dvw;
    border: 0;
    background: transparent;
    color: var(--main-color);
    mix-blend-mode:difference;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
}

.artist-modal-media {
    width: fit-content;
    margin-bottom: 1rem;
}

.artist-modal-main-image {
    display: block;
    max-height: 50dvh;
    object-fit: contain;
}

.artist-modal-thumbs {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    justify-content: start;
}

.artist-modal-thumb {
    width: 90px;
    height: 90px;
    border: 2px solid transparent;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.artist-modal-thumb.is-active {
    border-color: #111;
}

.artist-modal-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-modal-content h3 {
    margin-bottom: 0.75rem;
    color: #111;
    font-weight: 900;
    text-transform: uppercase;
}

.artist-modal-description,
.artist-modal-description p {
    color: #111;
    font-size: 130%;
    font-weight: 100;
    margin-top: 2dvh;
}
.artist-modal-expo-meta {
    margin-bottom: 2dvh;
}

/************************************************************************************************/
/*************************************   Calendrier   ******************************************/
/**********************************************************************************************/
.calendar-shell {
    width: 97%;
    padding-top: 2.5%;
}

.calendar-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.calendar-topbar h2 {
    margin: 0;
    color: var(--subtitle-secondary-color);
    font-size: 2em;
    letter-spacing: 0.03em;
    font-weight: 300;
}

.calendar-desktop-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.calendar-mobile-single {
    display: none;
}

.calendar-month-nav {
    display: none;
    align-items: center;
    gap: 10px;
}

.calendar-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: #ffffff;
    color: #111111;
    text-decoration: none !important;
    font-size: 1.8rem;
    line-height: 1;
    box-shadow: 0 6px 18px rgba(17, 17, 17, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.calendar-nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.1);
    background: #f3f3f3;
}

.calendar-nav-btn.is-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.calendar-ios {
    background: #d0d2d1;
    border-radius: 28px;
    padding: 26px 28px 28px;
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.05);
}

.calendar-ios-header {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-left: 5%;
    margin-bottom: 18px;
}

.calendar-ios-month {
    margin: 0;
    font-size: 2rem;
    font-weight: 300;
    color: #6f6f73;
    letter-spacing: -0.03em;
    text-transform: lowercase;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 8px;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 0.95rem;
    color: #8e8e93;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.calendar-day,
.calendar-day.is-empty {
    min-height: 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    padding: 10px 4px 8px;
    border-radius: 18px;
    text-decoration: none !important;
    position: relative;
    transition: background 180ms ease, transform 180ms ease;
}

.calendar-day {
    color: #111111;
}



.calendar-day:hover{
    background: rgba(17, 17, 17, 0.06);
    transform: translateY(-1px);

}

.calendar-day.is-selected {
    transform: translateY(-1px);
}

.calendar-day:hover .calendar-day-number,
.calendar-day.is-selected .calendar-day-number {
    background: #000;
    color: #ffffff;
}

.calendar-day.is-empty {
    cursor: default;
}

.calendar-day.is-outside-month {
    opacity: 0.34;
}
.hint-calendar {
    position: relative;
    text-align: start;
    margin-left: 5%;
}


.calendar-day-number {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 300;
    color: #111111;
}



.calendar-day-dots {
    min-height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
    max-width: 42px;
}

.calendar-dot {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: #111111;
    display: block;
}

.legende,
.date-list,
.btn-day,
.same-dates,
.maintenant,
.current-date {
    all: unset;
}

/************************************************************************************************/
/*************************************   MEDIAS       ******************************************/
/**********************************************************************************************/
.interviews {
    display: block;
    padding-top: 0;
}

.interviews-title {
    display: inline-block;
    width: auto;
    margin: 0 0 26px;
    padding-bottom: 0;
    font-size: clamp(1.7rem, 2dvw, 2.3rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--secondary-title-secondary-color);
}

.interviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
}

.interview-card {
    display: block;
    text-decoration: none !important;
    background-color: #d0d2d1;
    border-radius: 18px;
    padding: 22px 28px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.interview-card:hover,
.interview-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(17, 17, 17, 0.14);
}

.interview-card-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 100%;
}

.interview-card-title {
    margin: 0;
    color: #202020 !important;
    font-size: clamp(1.15rem, 1.35dvw, 1.7rem);
    line-height: 1.2;
    font-weight: 700;
}

.interview-card-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.10);
}

.interview-card-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: #6c7078 !important;
    font-size: 0.98rem;
    line-height: 1.2;
    font-weight: 600;
}

.interview-card-meta-item span:last-child {
    color: var(--menu-primary-color);
}

.interview-card-meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    color: #8b9098;
}

.interview-card-meta-icon svg {
    width: 15px;
    height: 15px;
    display: block;
}

.interview-card-bottom {
    padding-top: 2px;
}

.interview-card-status {
    color: var(--main-color);
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: lowercase;
}

.interview-card-status strong {
    color: var(--title-primary-color);
    font-weight: 700;
}

.interview-empty-state {
    color: var(--subtitle-primary-color) !important;
}

@media screen and (max-width: 900px) {
    .interview-card {
        padding: 18px 20px;
        border-radius: 16px;
    }

    .interview-card-meta-row {
        gap: 10px 16px;
    }

    .interview-card-meta-item {
        font-size: 0.92rem;
    }
}

@media screen and (max-width: 560px) {
    .interview-card-title {
        font-size: 1.05rem;
    }

    .interview-card-meta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .interview-card-status {
        font-size: 0.95rem;
    }
}


/************************************************************************************************/
/*************************************   Partenaires  ******************************************/
/************************************************************************************************/
main.partner {
    background-color: var(--main-color);
    margin-bottom: 10px;
}

.partenaire-section {
    overflow: visible;
}

.partenaire-section-single {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.partenaire-section-single h3 {
    text-align: start;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    align-items: stretch;
}

.partenaire-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    text-decoration: none !important;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
}

.partenaire-card img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}




.partenaire-card:hover img {
    transform: scale(1.08);
}


.partenaire-card:hover img,
.partenaire-card:focus-visible img {
    transform: scale(1.08);
}
/************************************************************************************************/
/*************************************   CONTACT   *********************************************/
/**********************************************************************************************/

.phos-contact-page {
    min-height: 79dvh;
}

.contact-page-shell {
    padding-top: 6dvh;
    padding-bottom: 5dvh;
}

.contact-page-title {
    font-size: 2em;
    font-weight: 300;
    color: var(--subtitle-secondary-color);
    text-transform: uppercase;
    margin-bottom: 34px;
    display: inline-block;
    padding-bottom: 4px;
}

.contact-card {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    background-color: #d0d2d1;
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 28px;
    padding: 34px 34px 15px 38px;
}

.contact-card-left {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.contact-card-main {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}
.contact-card-content {
    min-width: 0;
    border-left: 7px dotted var(--menu-primary-color);
    padding-left: 2dvw;
}

.contact-card-bar {
    width: 2px;
    min-width: 2px;
    height: 17dvh;
    background: #111;
    margin-top: 6px;
}


.contact-place-name {
    font-size: 3.5em !important;
    line-height: 0.95;
    font-weight: 900;
    color: var(--menu-primary-color) !important;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-place-address {
    line-height: 1.25;
    color: var(--menu-primary-color);
    max-width: 620px;
    font-size: 2rem;
}

.contact-card-infos {
    margin-top: 50px;
    text-align: left;
    font-size: 1.5rem;
    border-left: 7px dotted var(--menu-primary-color);
    padding-left: 2dvw;
}



.contact-card-infos p{
    font-size: 0.9em;
    line-height: 1.25;
    color: #4b4b4b !important;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.contact-card-right {
    flex: 0 0 108px;
    border-radius: 24px;
    background: var(--menu-primary-color);
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.conlact-card-right {
    border-radius: 24px;
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.contact-social-link {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: transform 0.2s ease;
}

.contact-social-link:hover {
    transform: scale(1.05);
}

.contact-social-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}





/************************************************************************************************/
/*************************************   Lieu   *********************************************/
/**********************************************************************************************/



.lieux-simple h3 {
    margin-bottom: 8px;
}

.lieux-simple-grid {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.lieux-simple-grid .contact-card {
    max-width: none;
    margin: 0;
}

.lieux-simple-grid .contact-card-right {
    flex: 0 0 180px;
    padding: 24px 18px;
}

.lieux-simple-grid .contact-card-right:empty {
    display: none;
}

.lieux-simple-grid .contact-place-name {
    margin-bottom: 14px;
    font-size: 3em !important;
    width: 20dvw;
}

.lieux-simple-grid .contact-place-address {
    font-size: 2em;
    line-height: 1.5;
    max-width: 420px;
}

.lieu-simple-maps-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--text-primary-color);
    color: var(--main-color) !important;
    padding: 15px 17px;
    text-decoration: none !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 15px;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.lieu-simple-maps-btn:hover {
    background-color: var(--title-secondary-color);
    color: var(--main-color) !important;
    transform: translateY(-1px);
}

/************************************************************************************************/
/*************************************   Responsive   ******************************************/
/**********************************************************************************************/
@media screen and (min-width : 1400px){
    .artist-modal-media{
        width: 100%;
    }
}

@media screen and (max-width : 1400px){

    .date-list {
        width:100%;
    }
    .artist-modal-close {
         right: 26dvw;
    }
    .artist-modal-description, .artist-modal-description p {
    font-size: 100%; 
    }
    header {
        font-size: 0.8em; 
    }
    header div {
        padding: 3% 1% !important;
    }
    .menu-menu-principal-container .menu{
        gap: 20px;
    }

    .btn-day{
        flex-basis: 13%;
    }

    .show-case {
        flex-basis: 28dvw;
        height: 28dvw;
    }

    .div-map {
        display: block;
    }
    header h1 {
    flex-basis: 10%;
    }
    


    .artist-panel-content h2 {
    font-size: 1.5rem;
    }
    .artist-panel-description p {
        font-size: 1.2rem;
        margin-bottom: 0.1rem;
    }
    .lieux-simple-grid .contact-place-name {
        margin-bottom: 14px;
        font-size: 2.5em !important;
        width: 20dvw;
    }
}
@media screen and (max-width: 1050px) {

    .calendar-month-nav {
    display: flex;
    }
    .partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0px;
    }
    .artist-modal-close {
        right: 6dvw;
        top: 7dvh;
    }
    .burger-icon {
        padding: 0 6% 0 0 !important;
        display: flex;
        transition: all 250ms ease;
        
    }
    header div {
        padding: 0% 0% !important;
    }
    .burger-icon .bar1,
    .burger-icon .bar2,
    .burger-icon .bar3{
        background-color: var(--title-secondary-color);
    }

    .banner {
        height: 45dvh;
        
    }
    .btn-mute {
        left: 90% !important;
    }

    #js-cross {
        top: 20dvh;
    }

    .container-left-copyright{
        display: none;
    }

    .menu-menu-principal-container {
        display: none;
        width: 100dvw;
        position: absolute;
        top: 93%;
        left: 0;
        padding: 0 !important;
    }

    .menu-menu-principal-container .menu {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
        list-style: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--secondary-color);
    }

    .menu-menu-principal-container .menu li {
        border-bottom: 3px dotted var(--title-secondary-color);
        width: 100%;
        padding: 3% 0 2% 5%;

    }
    .menu-menu-principal-container .menu li:first-child {
        padding: 6% 0 2% 5%;
    }

    .open {
        
        transform: rotateZ(270deg);
    }
    .btn-burger{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: relative;
        width: 42px;
        height: 42px;
    }

    /* grille 3x3 affichée quand le menu est fermé */
    .burger-grid{
        display: grid;
        grid-template-columns: repeat(3, 8px);
        grid-template-rows: repeat(3, 8px);
        gap: 3px;
        transition: opacity 0.3s ease;
    }

    .burger-grid span{
        width: 8px;
        height: 8px;
        background-color: var(--subtitle-secondary-color);
        border-radius: 2px;
        display: block;
    }

    .bar1, .bar2, .bar3 {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 30px;
        height: 3px;
        background-color: #000000;
        border-radius: 999px;
        margin: 0;
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.25s ease;
        transform-origin: center;
    }

    .change .burger-grid{
        opacity: 0;
    }

    .change .bar1,
    .change .bar3 {
        opacity: 1;
    }

    .change .bar2 {
        opacity: 0;
    }

    .change .bar1 {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .change .bar3 {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .show-case {
        flex-basis: 28dvw;
        height: 28dvw;
    }

    .btn-day{
        flex-basis: 13%;
    }

    .interview {
        flex-basis: 100%;
    }

    .annonce{
        flex-basis: 50%;
        
    }
    .expositions-gallery{
        margin-top: 70px;

    }

    .expositions-gallery a {
        flex-basis: 32%;
        padding-bottom: 29%;
        gap: 2px;
    } 

    .section-single-expo {
        padding-top: 10%;
    }

    .expositions-date a {
        flex-basis: 28dvw;
        height: 28dvw;
    }

    .artist {
        line-height: 34px;
    }

    .gallery {
        gap: 1.5%;
    }

    .gallery a {
        width: 13%;
        margin-top: 1.35dvw;
        padding-bottom: 13%;
    }
    .div-map{
        display: block;
    }
    .footer-inner{
        gap: 28px;
    }

    .footer-editions{
        font-size: 1.1em;
    }

    .tel p{
        font-size: 1.05em;
    }
    .artist-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(90dvw, 100%);
    max-height: calc(100dvh - 6rem);
    overflow: auto;
    padding: 2rem;
    background: #fff;
    color: #111;
    }
    .contact-place-name {
        font-size: 3.2em;
    }

    .contact-place-address {
        font-size: 1.25em;
    }

    .contact-card {
        gap: 22px;
        padding: 28px;
    }
        .calendar-desktop-grid {
        display: none;
    }

    .calendar-mobile-single {
        display: block;
    }
    .calendar-ios-header {
    margin-left: 4%;
    }

}
@media screen and (max-width: 850px) {
       .artist-modal-main-image {
        width: 100%;
    }   
    .partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .partenaire-card {
        min-height: 130px;
    }

    .partenaire-card img {
        max-height: 90px;
    }
    .partner-simple-page .partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .partner-simple-page .partenaire-card {
        min-height: 120px;
    }

    .partner-simple-page .partenaire-card img {
        max-height: 75px;
    }
    .footer-editions{
        max-width: max-content;
    }
    .main-contact {
        padding: 5%;
        display: flex;
        flex-direction: column;
    }


}
@media screen and (max-width: 580px) {
  

    .lieux-simple-grid {
        gap: 18px;
        flex-wrap: wrap;
    }

    .contact-card-content {
    min-width: 0;
    border: none;
    padding-left: 2dvw;
    }
    .partenaire-section-global {
        padding:0;
    }
    .calendar-shell {
        padding-left: 5%;
        padding-right: 5%;
    }

    .calendar-topbar h2 {
        font-size: 1.45em;
    }

    .calendar-ios {
        padding: 16px 10px 18px;
        border-radius: 20px;
    }

    .calendar-ios-month {
        font-size: 1.45rem;
    }

    .calendar-weekdays span {
        font-size: 0.72rem;
    }

    .calendar-day,
    .calendar-day.is-empty {
        min-height: 48px;
        gap: 4px;
    }

    .calendar-day-number {
        width: 29px;
        height: 29px;
        font-size: 1.1rem;
    }
    .artist-modal-close {
         top: 4dvh;
    }
    .info-description {
        width: 100%;
    }
    .menu-menu-principal-container {
        top: 17dvw;
    }
    .btn-mute {
        left: 85% !important;
    }

    .description-artiste p{
        width: 100%;
    }

    .interview {
        flex-basis: 100%;
    }
    .interview h4{
        text-align: left;
    }

    .banner {
        margin-top: 6dvh;
    }

    .video{
        display: none;
    }

    .videoMobile{
        margin-top: 13dvh;
        display: flex !important;
        width: 100%;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
    }

    .show-case,
    .permalink-expositions {
        flex-basis: 90dvw;
        height: 90dvw;
        margin-top: 20px;
    }

    .expositions-gallery a {
        flex-basis: 100%;
        padding-bottom: 100%;
    }

    .btn-day{
        flex-basis: 30%;
        padding: 3%;
    }

    .expo-card {
        width: 100%;
    }

    .grid {
        grid-template-columns: repeat(1, minmax(5%, 27%));
    }

    .expositions-date a {
        flex-basis: 90dvw;
        height: 47dvw;
    }

    .gallery {
        gap: 13px;
    }

    .gallery a,
    .thumbnail-video {
        padding-bottom: 29%;
        flex-basis: 29% !important;
    }

    .gallery.single {
        justify-content: left;
        gap: 20px;
    }

    .list-artists h2{
        text-align: left;
    }

    .artist{
        font-size: 1.5em !important;
    }
    .burger-icon {
        padding: 0 5% 0 0 !important;   
    }
    .artist-work-title {
        font-size: 1.4rem;
    }

    .artist-modal {
        padding: 1rem;
    }

    .artist-modal-dialog {
        max-height: calc(100dvh - 2rem);
        padding: 1rem;
    }

    .artist-modal-thumb {
        width: 72px;
        height: 72px;
    }

    .container-left-copyright{
        width: 50%;
    }

    .reseaux-sociaux {
        width: 90%;
        height: 42%;
        align-items: flex-start;
    }

    .partenaires-slider {
        gap: 5dvw;
    }

    .partenaire {
        width: 20dvw;
    }

    .rs {
        margin: 5% 0;
        width: 15%;
    }
    .artist-work-title {
        font-size: 1.4rem;
    }

    .artist-modal {
        padding: 1rem;
    }

    .artist-modal-dialog {
        max-height: calc(100dvh - 2rem);
        padding: 1rem;
    }

    .artist-modal-thumb {
        width: 72px;
        height: 72px;
    }

    @keyframes scrolling {
        0% {
            transform: translateX(0);
        }

        100% {
            /*la distance de translation est dynamiquements adapté au nombre de partenaires*/
            transform: translateX(calc(-1 * 25dvw * var(--nb-partenaires)));
        }
    }
     .interviews-title {
        margin-bottom: 18px;
        font-size: 1.25rem;
    }

    .interviews-grid {
        gap: 12px;
    }

    .interview-card {
        border-radius: 18px;
        padding: 12px 10px;
    }

    .interview-card-title {
        font-size: 0.92rem;
        line-height: 1.12;
    }

    .interview-card-meta {
        gap: 6px;
    }

    .interview-card-meta span,
    .interview-card-location {
        font-size: 0.68rem;
        line-height: 1.15;
    }

    .interview-card-location {
        max-width: 43%;
    }

    .interview-card-footer {
        gap: 8px;
    }

    .interview-card-cta {
        min-width: 118px;
        padding: 6px 6px 6px 14px;
        gap: 8px;
    }

    .interview-card-cta-label {
        font-size: 0.72rem;
    }

    .interview-card-cta-icon {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
        font-size: 1.35rem;
    }
    .contact-card-infos {
        border: none;
        padding-left: 2dvw;
    }

}
@media screen and (max-width: 520px) {

    main {
        margin-top: 70px;
    }

    .gallery {
        gap: 20px;
    }
    .menu-menu-principal-container {
        top: 24dvw;
    }


    .contact-card {
        padding: 18px;
    }

    .contact-place-name {
        font-size: 2.7em !important;
    }

    .contact-place-address {
        font-size: 0.95em;
    }

    .contact-card-infos p {
        font-size: 0.7em;
    }

    .contact-card-right {
        gap: 12px;
    }

    .contact-social-link {
        width: 86px;
        height: 47px;
    }
}
@media (max-width: 480px) {
  .partner-simple-page .partners-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .partner-simple-page .partenaire-section h3 {
    margin-bottom: 18px;
  }

  .partner-simple-page .partenaire-card {
    min-height: 110px;
    border-radius: 16px;
  }


    .lieux-simple-grid .contact-card {
        flex-direction: column;
        gap: 22px;
        padding: 40px 22px 22px 22px;
        border-radius: 16px;
    }

    .lieux-simple-grid .contact-card-main {
        gap: 16px;
    }

    .lieux-simple-grid .contact-card-bar {
        height: 90px;
    }

    .lieux-simple-grid .contact-place-name {
        font-size: 2.2em;
    }

    .lieux-simple-grid .contact-place-address {
        font-size: 1.5em;
        max-width: none;
    }

    .lieux-simple-grid .contact-card-right {
        flex: none;
        width: 100%;
        border-radius: 18px;
        padding: 14px;
    }
    .calendar-desktop-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .calendar-ios {
        padding: 24px 22px 24px;
    }

    .calendar-day,
    .calendar-day.is-empty {
        min-height: 68px;
    }
        .interviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
    }

    .interview-card {
        padding: 18px 18px 14px;
    }

    .interview-card-title {
        font-size: 1.5rem;
    }

    .interview-card-meta span,
    .interview-card-location {
        font-size: 1rem;
    }
    .date-list {
        width: 97%;
        gap: 5%;
    }
    .artist-panel-content {
        margin: 0 0 0 0;
    }
    .about p {
        font-size: 1.3em;
        text-align: left;
    }
    .burger-icon {
        padding: 0 9% 0 0 !important;   
    }

    .container-left-copyright{
        width: 50%;
    }

    .reseaux-sociaux {
        width: 50%;
    }

    .btn-day{
        flex-basis: 13%;
    }

    .video-wrapper {
        width: 90%;
    }
    #js-cross {
        right: 5dvh;
        top: 25dvh;
    }
    .banner {
        height: 21dvh;
    }

    .banner-info {
        max-width: 70%;
    }

    .banner-info h2 {
        font-size: 1.6em;
    }

    .banner-info p {
        font-size: 1.2em;
    }

    .gallery a {
        padding-bottom: 15%;
        width: 15%;
        margin-top: 1.8dvw;
    }

    .grid {
        grid-template-columns: repeat(3, minmax(5%, 15%));
    }

    .show-case,
    .permalink-expositions {
        flex-basis: 43dvw;
        height: 43dvw;
        margin-top: 20px;
    }
    .nav-banners {
        bottom: -4px;
        gap: 25px;
    }


    .bloc-contact {
        margin-top: 5dvh;
        display: block;
        flex-basis: 90%;
        height: fit-content;
    }

    .expositions-gallery a {
        flex-basis: 48%;
        padding-bottom: 48%;
    }

    .info-contact {
        margin: 10% 0;
    }

    .description-artiste p {
        width: 100%;
    }

    .section-single-expo {
        flex-direction: column;
    }

    .info-content {
        margin-top: 5%;
    }

    .thumbnail {
        width: 100%;
    }

    .section-single-expo .medias .galerie .gallery a {
        flex-basis: 20dvw;
        height: 0;
        position: relative;
        padding-bottom: 20dvw;
    }
    .partenaire-description span{
        width: 100%;
        display: none;
       }

       .partenaire-img{
        display: none;
       }

       .info-description {
        width: 100%;
    }

    .div-map{
        display: block;
    }
    iframe{
        width: 400px;
        height: 400px;
    } 
    .artist-panel-grid {
        grid-template-columns: 1fr;
    }

    .artist-panel-expos-grid {
        grid-template-columns: 1fr;
    }

    .artist-works-grid {
        grid-template-columns: 1fr;
    }

    .artist-modal-dialog {
        padding: 1.5rem;
        border-radius: 5px;
    }
    footer{
        padding: 20px 0 24px;
    }

    .footer-inner{
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-left,
    .footer-right{
        width: 100%;
    }

    .footer-right{
        margin-left: 0;
        padding-left: 0;
        padding-top: 16px;
        border-left: none;
        border-top: 6px dotted var(--subtitle-secondary-color);
    }

    .tel{
        justify-items: start;
        text-align: center;
    }

    .footer-editions{
        font-size: 1.1em;
        justify-content: start;
        text-align: center;
    }

    .footer-copy {
        font-size: 1em;
        text-align: start;
    }

    .tel p{
        font-size: 1em;
    }
    .artist-works-grid {
        grid-template-columns: 1fr;
    }

    .artist-modal-dialog {
        padding: 1.5rem;
    }
    .expositions-gallery .expo-modal-trigger {
        flex-basis: 100%;
        width: 100%;
        padding-bottom: 100%;
    }
    .interviews {
        padding-top: 0;
    }

    .interviews-title {
        margin-bottom: 22px;
        font-size: 1.7rem;
    }

    .interviews-grid {
        max-width: none;
        gap: 14px;
    }

    .interview-card {
        border-radius: 24px;
        padding: 16px 14px;
    }

    .interview-card-inner {
        gap: 10px;
    }

    .interview-card-title {
        font-size: 1.12rem;
    }

    .interview-card-divider {
        height: 2px;
    }

    .interview-card-meta {
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 8px;
    }

    .interview-card-meta span,
    .interview-card-location {
        font-size: 0.86rem;
    }

    .interview-card-location {
        max-width: 46%;
    }

    .interview-card-cta {
        min-width: 146px;
        padding: 8px 8px 8px 18px;
    }

    .interview-card-cta-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        font-size: 1.6rem;
    }
    .calendar-shell {
        padding-top: 6%;
    }

    .calendar-topbar {
        margin-bottom: 16px;
    }

    .calendar-topbar h2 {
        font-size: 1.7em;
    }

    .calendar-ios {
        border-radius: 24px;
        padding: 18px 14px 20px;
    }

    .calendar-ios-month {
        font-size: 1.35rem;
    }

    .calendar-weekdays {
        gap: 2px;
    }

    .calendar-weekdays span {
        font-size: 0.82rem;
    }

    .calendar-grid {
        gap: 2px;
    }

    .calendar-day,
    .calendar-day.is-empty {
        min-height: 58px;
        padding: 8px 2px 6px;
        border-radius: 14px;
    }

    .calendar-day-number {
        width: 33px;
        height: 33px;
        font-size: 1.4rem;
    }

    .calendar-day-dots {
        gap: 3px;
        max-width: 28px;
    }

    .calendar-dot {
        width: 3px;
        height: 3px;
    }

    .calendar-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }
     .contact-page-shell {
        padding-top: 4dvh;
    }

    .contact-page-title {
        margin-bottom: 22px;
    }
    .contacttt {
        margin-left: -3dvw;
    }
    .contact-card {
        flex-direction: column;
        gap: 22px;
        padding: 22px;
        border-radius: 16px;
    }

    .contact-card-main {
        gap: 16px;
    }

    .contact-card-bar {
        height: 90px;
    }

    .contact-place-name {
        font-size: 2.2em;
    }

    .contact-place-address {
        font-size: 1.25em;
        max-width: none;
    }

    .contact-card-infos {
        text-align: left;
        margin-top: 15px;
        margin-bottom: 10px;
    
    }

    .contact-card-right {
        flex: none;
        width: 100%;
        border-radius: 18px;
        flex-direction: row;
        padding: 14px;
    }

    .contact-social-link {
        width: 25dvw;
        height: 56px;
    }
}
@media screen and (max-width: 400px) {

    main {
        margin-top: 70px;
    }

    .gallery {
        gap: 20px;
    }
    .menu-menu-principal-container {
        top: 25dvw;
    }
    .interview {
    height: 20dvh;
    }
}
@media screen and (max-width: 321px) {
    .menu-menu-principal-container {
        top: 28dvw;
    }
    .edition{
    font-size: 1.2em;
    }
    
}
@media screen and (max-width: 400px) and (max-height:700px) {
    .videoMobile {
        margin-top: 25dvh;
    }
}
@media (max-width: 1100px) {
    .info-card {
        padding: 0.85rem;
        gap: 0.28rem;
        min-height: 54%;
    }
}

@media (max-width: 768px) {
    .info-card {
        padding: 0.75rem;
        gap: 0.22rem;
        min-height: 58%;
    }
}

@media (max-width: 480px) {
    .info-card {
        padding: 0.65rem;
        gap: 0.16rem;
        min-height: 62%;
    }
}
/************************************************************************************************/
/*************************************   barre d'admin dans le mode admin   ********************/
/**********************************************************************************************/
#wpadminbar {
    position: fixed !important;
    display: none;
}
.info-card {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.28rem;

    width: 100%;
    min-height: 44%;
    max-height: 78%;
    padding: 1rem 1rem 0.95rem;

    background: rgba(0,0,0, 0.34);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition:
        transform 350ms ease,
        opacity 350ms ease,
        visibility 350ms ease;

    pointer-events: none;
    overflow: hidden;
    box-sizing: border-box;
}

.info-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.info-card > * {
    margin: 0;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.info-card h3,
.info-card p,
.info-card span,
.info-card a,
.info-card b {
    color: #fff !important;
}

.info-card h3 {
    margin: 0;
    padding: 0 0 0.38rem 0;
    border-bottom: 4px dotted rgba(255, 255, 255, 0.95);

    font-size: clamp(1.15rem, 1.55dvw, 1.95rem);
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;

    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.info-card p {
    line-height: 1.16;
}

.info-card p:nth-of-type(1) {
    font-size: clamp(0.9rem, 0.95dvw, 1.15rem);
    font-weight: 500;

    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.info-card p:nth-of-type(2) {
    font-size: clamp(0.92rem, 0.98dvw, 1.18rem);
    font-weight: 700;

    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.info-card p:nth-of-type(3),
.info-card p:nth-of-type(4) {
    font-size: clamp(0.8rem, 0.84dvw, 1rem);
    font-weight: 400;

    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.info-card br {
    display: none;
}

.info-card > b,
.info-card > span,
.info-card b span,
.info-card br + b,
.info-card br + b span {
    display: block;
    margin-top: 0.18rem;
    font-size: clamp(0.9rem, 0.9dvw, 1.08rem);
    line-height: 1.14;
    font-weight: 700;

    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.info-card .expo-artist-link {
    font-size: inherit !important;
    font-weight: inherit;
    line-height: inherit;
    text-decoration: none !important;
}

.info-card .expo-artist-link:hover {
    text-decoration: underline !important;
}

/* desktop moyen */
@media screen and (max-width: 1200px) {
    .info-card {
        min-height: 46%;
        max-height: 80%;
        padding: 0.9rem 0.9rem 0.85rem;
        gap: 0.22rem;
    }

    .info-card h3 {
        font-size: clamp(1rem, 1.35dvw, 1.45rem);
        padding-bottom: 0.32rem;
    }

    .info-card p:nth-of-type(1) {
        font-size: clamp(0.78rem, 0.9dvw, 0.98rem);
    }

    .info-card p:nth-of-type(2) {
        font-size: clamp(0.8rem, 0.92dvw, 1rem);
    }

    .info-card p:nth-of-type(3),
    .info-card p:nth-of-type(4),
    .info-card > b,
    .info-card > span,
    .info-card b span,
    .info-card br + b,
    .info-card br + b span {
        font-size: clamp(0.72rem, 0.8dvw, 0.9rem);
    }
}

/* tablette */
@media screen and (max-width: 900px) {
    .info-card {
        min-height: 48%;
        max-height: 82%;
        padding: 0.82rem 0.82rem 0.78rem;
        gap: 0.18rem;
    }

    .info-card h3 {
        font-size: clamp(0.9rem, 1.45dvw, 1.15rem);
        padding-bottom: 0.26rem;
    }

    .info-card p:nth-of-type(1) {
        font-size: clamp(0.7rem, 1.05dvw, 0.82rem);
    }

    .info-card p:nth-of-type(2) {
        font-size: clamp(0.72rem, 1.08dvw, 0.86rem);
    }

    .info-card p:nth-of-type(3),
    .info-card p:nth-of-type(4),
    .info-card > b,
    .info-card > span,
    .info-card b span,
    .info-card br + b,
    .info-card br + b span {
        font-size: clamp(0.64rem, 0.96dvw, 0.76rem);
    }
}

/* mobile */
@media screen and (max-width: 640px) {
    .onepage-main {
    margin-top: -3dvh !important;
}
    .info-card {
        min-height: 50%;
        max-height: 84%;
        padding: 0.72rem 0.72rem 0.68rem;
        gap: 0.14rem;
    }

    .info-card h3 {
        font-size: clamp(0.82rem, 3.1dvw, 1rem);
        padding-bottom: 0.22rem;
    }

    .info-card p:nth-of-type(1) {
        font-size: clamp(0.64rem, 2.3dvw, 0.76rem);
    }

    .info-card p:nth-of-type(2) {
        font-size: clamp(0.66rem, 2.35dvw, 0.78rem);
    }

    .info-card p:nth-of-type(3),
    .info-card p:nth-of-type(4),
    .info-card > b,
    .info-card > span,
    .info-card b span,
    .info-card br + b,
    .info-card br + b span {
        font-size: clamp(0.58rem, 2dvw, 0.68rem);
    }
}

/* très petit mobile */
@media screen and (max-width: 420px) {
    .info-card {
        min-height: 52%;
        padding: 0.62rem 0.62rem 0.58rem;
    }

    .info-card h3 {
        font-size: 0.76rem;
    }

    .info-card p:nth-of-type(1) {
        font-size: 0.6rem;
    }

    .info-card p:nth-of-type(2) {
        font-size: 0.62rem;
    }

    .info-card p:nth-of-type(3),
    .info-card p:nth-of-type(4),
    .info-card > b,
    .info-card > span,
    .info-card b span,
    .info-card br + b,
    .info-card br + b span {
        font-size: 0.54rem;
    }
}

/************************************************************************************************/
/*************************************   ONE PAGE   ********************************************/
/************************************************************************************************/
.onepage-main {
    min-height: 100dvh;
    margin-top: 6dvh;
}

.onepage-section {
    position: relative;
    scroll-margin-top: 110px;
}

.onepage-section--accueil {
    margin-top: 0;
}

.onepage-section--accueil .banner-container {
    margin-top: 0;
}

.onepage-intro-block {
    margin-top: 0;
}

.menu li.is-active > a,
.menu li.is-active > a span,
.menu li > a.is-active,
.menu li.current-menu-item > a,
.menu li.current-menu-item > a span,
.menu li.current_page_item > a,
.menu li.current_page_item > a span,
.menu li.current-menu-ancestor > a,
.menu li.current-menu-ancestor > a span {
    color: var(--title-primary-color) !important;
}

header .menu li > a,
header .menu li > a:hover,
header .menu li > a:focus,
header .menu li > a:active {
    text-decoration: none !important;
}

.menu li.is-active > a {
    position: relative;
    text-decoration: none !important;
}

.menu li.is-active > a::after,
.menu li.current-menu-item > a::after,
.menu li.current_page_item > a::after {
    content: none;
}

#accueil .about-box {
    padding-top: 2%;
}

#calendrier .calendar-shell {
    padding-top: 0;
}

#medias .interviews,
#partenaires .partenaire-section,
#lieux .contact-page-shell,
#contact .contact-page-shell {
    margin-top: 0;
}

.onepage-calendar-gallery {
    padding-top: 0;
}

@media screen and (max-width: 1050px) {
    .menu-menu-principal-container .menu li.is-active > a::after,
    .menu-menu-principal-container .menu li.current-menu-item > a::after,
    .menu-menu-principal-container .menu li.current_page_item > a::after {
        content: none;
    }

    .onepage-section {
        scroll-margin-top: 92px;
    }
    .onepage-section--accueil .banner-container {
    margin-top: -67px;
}
}
