
.agenda-group{
    font-family: var(--font-title);
    text-transform: uppercase;
    font-size: var(--fs-title-medium);
    text-align: center;
    margin-bottom: 2rem;
}


.agenda-group .creation a,
.agenda-group .creation-title a{
    color: var(--blue-dark);
    text-decoration: none;
}

.agenda-lieu a{
        text-decoration: none;
}


.agenda-row .agenda-billetterie{
    line-height: 1;
    position: relative;
    display: inline-block;
    top: 0.25rem;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1ch;
  

}

.agenda-row .agenda-billetterie svg{
  transform: rotate(-10deg);
    transition: transform .1s ease-in-out;
}

.agenda-row .agenda-billetterie .text{
    font-family: var(--font);
    text-transform: capitalize;
    font-size: 1.1rem;
    font-weight: 600;

}

.agenda-row .agenda-billetterie:hover svg{
    transform: rotate(-1deg);
}




.agenda-row .agenda-billetterie:hover svg{
    fill: var(--red-dark);
    
}


main[data-template="agenda"]{
    padding-top: 2em;
    padding-bottom: 20vh;
}

[data-template="agenda"] .breadcrumb::after{
    background-color: var(--red);
}

[data-template="agenda"] .agenda-vues{
    z-index: 40;
    font-size: var(--fs-title-small);
    align-self: center;
}

[data-template="agenda"] .agenda-vues a + a{
    padding-left: 0.5rem;
}

[data-template="agenda"] .agenda-vues a{
    text-decoration: none;
}

[data-template="agenda"] .agenda-vues a[aria-current="page"]{
    text-decoration: var(--underline);
}

[data-template="agenda"] .group-by-creation .creation{
    display: none;
}



/* DESKTOP ------------------------------------------------------------- */


@media screen and (min-width: 640px){


[data-template="agenda"] .breadcrumb{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

}

[data-template="agenda"] .agenda-vues{
    padding-left: 1rem;
}


.agenda-row .creation::before,
.agenda-row .agenda-lieu::before{
    content: " — "
}

.agenda-row .agenda-billetterie .text{
    display: none;
}


}


      /* PHONE ------------------------------------------------------------- */



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

    [data-template="agenda"] .breadcrumb{
        display: block;
        height: 4.25rem;
        padding-top: 0.25rem;

    }

   
    [data-template="agenda"] .breadcrumb a{
        text-decoration: none;
    }


       main[data-template="agenda"] {
        padding-top: 1.5rem;
      }

    .agenda-group{

        font-size: var(--fs-title-small);
    }

    [data-template="agenda"] .agenda-row{
        margin-top: 2rem;
    }

     [data-template="agenda"] .creation-title{
        background-color: var(--blue);
        border-top: var(--border);
        border-bottom: var(--border);
        padding-inline: var(--padding-inline);
        padding-block: 1rem;
    }

    .agenda-row > *{
        display: block;

    }

    .agenda-row .agenda-billetterie{
        padding-right: 2ch;
    }

    .agenda-row .agenda-billetterie svg{
        width: 26px;
        position: relative;
        top: 2px;
    }


   
}