.spectacle-title{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: center;
    gap: 56px;
}

.spectacle-title h1{
    font-weight: 600;
    font-size: 220%;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 0;
}
.spectacle-title h5{
    font-weight: 400;
    font-size: 140%;
    text-align: left;
}
.spectacle-title h5::before{
    content: "> ";
}

.spectacle-title img{
    width: 200px;
    height: auto;
}

.section-spectacle figure{
    margin:28px auto;
}

.rights{
    font-size: 60%;
    text-align: center;
    margin-top: 2em;
    margin-bottom: 0;
}

.anim-flex{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    /*border: 1px solid var(--active-color-ccc);*/
    width: 85%;
    margin: 2em 0;
    /*background-color: var(--bg-violet);
    color: var(--main-color-bg);*/
    background-color: white;    
}
.bg-violet-f .anim-flex{
    background-color: var(--bg-violet-ff);
    color: white;
}
.anim-flex:nth-child(odd) {
    margin-left: 15%;
}
.anim-flex *{
    text-align: left !important;
}
.anim-flex p{
    text-align: justify !important;
}
.anim-flex img{
    width: 25%;
    height: auto;
}
.anim-flex-square img{
    width: 30%;
    height: auto;
}
.anim-flex>div{
    width: 75%;
    padding: 5%;
    padding-left: 10%;
}
.anim-flex-square>div{
    width: 70%; 
}
.anim-flex>figure{
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
}
.anim-flex h3{
  text-transform: uppercase;
  font-weight: 500;
}

#demarche-flex{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    margin: 2em 0;
    gap:32px;
    text-align: center;
}
#demarche-flex>div{
    width: 16%;
}
#demarche-flex i{
    width: 100px;
    height: 100px;
    background-color: #6f16a6;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 32px auto;
    font-size: 30px;
}
#demarche-flex>div:nth-child(1) i{ background-color: #ad79c9;}
#demarche-flex>div:nth-child(2) i{ background-color: #c37ad2;}
#demarche-flex>div:nth-child(3) i{ background-color: #db80db;}
#demarche-flex>div:nth-child(4) i{ background-color: #e994d7;}
#demarche-flex>div:nth-child(5) i{ background-color: #eeb6c4;}
#demarche-flex>div:nth-child(6) i{ background-color: #efd1af;}

#demarche-flex h6{
    font-size: 90%;
    line-height: 1;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2em;
    padding-bottom: 1em;
}
#demarche-flex p{
    font-size: 85%;
    line-height: 1.4;
    font-weight: 400;
}


/* BADGE */
.badge{
  --size: 300px;
  --violet: #6f16a6;                     /* ajuste si besoin */
  width: var(--size);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(16px, 6%, 28px);
  box-shadow: 0 0 0 1px rgba(0,0,0,.08) inset;
  margin: 0 auto;
  overflow: hidden;
}

.badge__script{
    font-family: var(--font-title) !important;
    font-size: 250% !important;
    line-height: 0.8 !important;
    margin: 0 0 0.9rem;
    color: var(--active-color-2);
}

.badge__rule{
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 80%;
  margin: .2rem 0 1rem;
}
.badge__rule::before,
.badge__rule::after{
  content: "";
  flex: 1 1 60px;
  height: 1px;
  background: var(--active-color-ccc);
}
.badge .badge_star{
  font-size: 1.6rem;
  line-height: 1;
  transform: translateY(-1px);
  color: var(--active-color-cc);
}

.badge__text{
  font-weight: 500;
  font-size: clamp(14px, 2.2vmin, 18px);
  line-height: 1.25;
  margin: 0;
  max-width: 20ch; /* contrôle la largeur des lignes */
}
.badge__text a{
    color: white !important;
    font-weight: 400 !important;
}
.badge__text a:hover{
    color: var(--active-color-cc) !important;
}

@media (max-width: 1079px) {
    .spectacle-title {
        flex-direction: column;
    }
    .spectacle-title h1 {
        line-height: 1.2;
        margin-bottom: .2em;
        font-size: 180%;
        white-space: nowrap;
    }
    .rights {
        font-size: 50%;
    }

    .anim-flex {
        flex-direction: column;
        width: 100%;
    }
    .anim-flex:nth-child(odd) {
        margin-left: 0;
    }
    .anim-flex>div {
        width: 100%;
        padding: 5%;
        margin: 1.5em 0;
    }
    .anim-flex h2 {
        padding-top: 0;
        margin-bottom:0;
        font-size: 180%;
    }
    #concept .anim-flex h2 {
        margin-bottom:.8em;
    }
    #concept .anim-flex p {
        margin-bottom:0;
    }
    .anim-flex>img{
        width: 300px;
        height: 200px;
        object-fit: cover;            /* pas de redimensionnement */
        object-position: 0 -60px; /* décale la zone montrée */
        margin-top: 14px;
    }
    .anim-flex>img.anim-tour{
        object-position: 0 -130px; /* décale la zone montrée */
    }

    #demarche-flex{
        flex-direction: column;
    }
    #demarche-flex>div {
        width: 100%;
    }
}