
.background {
    position: fixed;
    inset: 0;
    z-index: -1; /* placer derrière tout le contenu */
    pointer-events: none; /* laisser les clics passer */
    height: 100%;
    padding: 0;
    margin: 0;
    background-image: url('../../../../assets/backgrounds/background-05.svg');
    background-size: cover;
    background-position: top;
}
.path-subnav {
    background-color: hsla(180, 100%, 10%, 0.75); 
}






.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 0;
    min-height: 100vh;
    margin-bottom: 30vh;
}
.block-liste-etudes {
    margin-top: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
}
.etude {
    width: 70vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    border: 2px solid rgba(0, 0, 0, 0.1);
    padding: 16px;
    border-radius: 8px;
    background-color: var(--global-white-1);
    border: 1px solid var(--global-transparent-white-1);
}
.etude h3 {
    font-size: 1rem;
    font-weight: 600;
    width:100% ;
}
.etude div {
    display: inline-block;
    font-size: 1rem;
    font-weight: bold;
    align-items: center;
    text-align: center;
    width: 10px;
}
.etude p {
    padding-left: 8px;
    font-size: 0.8rem;
    font-weight: 400;
    width: 100%;
}
.etude a {
    width: 100%;
}



