#seances-wrapper {
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-top:15px;
}

.annee-titre-wrapper {
    display:flex;
    gap:10px;
    align-items:center;
}
.annee-titre {
    cursor:pointer;
    border:2px solid var(--secondary-base);
    font-size: var(--font-fs-title-3);
    font-family: var(--font-title);
    font-weight:600;
    color: var(--secondary-base);
    text-transform: uppercase;
    padding:2px 5px;    
    display:block;
    border-radius:8px;    
}
.annee-titre:hover {
    background-color: var(--secondary-base);
    color: #fff;
}
.annee-compte {
    color:#888;
}
.annee-seances {
    display:none;
}

#prochaine-seance {
    margin:auto;
    margin-bottom:30px;
    width:100%;
  
}
#prochaine-seance-infos {
    display:flex;
    gap:0;
    width:100%;
    margin:auto;
}
#prochaine-seance-infos h2 {
    width:50%;
    color:#fff;
    margin:0;
    padding:10px;
    background-color:var(--secondary-base);
    width:30%;
    text-align:center;
    display: flex;
    align-items: center;    
}

#prochaine-seance-date-wrapper {
    border: 1px solid var(--secondary-base);
    padding: 10px;
    width: 70%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    
}

#prochaine-seance-date {
    display:block;
    text-decoration:none;

    padding:10px 10px 10px 45px;
    margin:auto!important;
    font-size: var(--font-fs-title-2);
    
    background-repeat:no-repeat;
    background-position:5px center;
    background-size:30px;
    background-image:url('../images/assets/calendar.svg'); 
    
    text-transform:capitalize;
}

#prochaine-seance-docs {
    width:100%;
    display:flex;
    justify-content:space-around;
    align-items:center;
    gap:10px;  
    border:1px solid var(--secondary-base);
    border-top:0; 
    padding:10px;      
}

@media (max-width: 800px) {
    #prochaine-seance-infos {
        flex-direction:column;
    }
    #prochaine-seance-infos h2, #prochaine-seance-date-wrapper{
        width:100%;
    }
    
    #prochaine-seance-date {
        font-size:22px;
    }
}


#seances-wrapper h2 {
    margin:0;
}

.seance {
    display:flex;
    align-items:center;
    gap:15px;
    margin:0!important;
}

.seance-titre {
    width:calc(33% - 15px);
    margin:0!important;
    text-transform:capitalize;
}

.seance-documents {
    width:calc(66% - 15px);
    display:flex;
    gap:5px;
    align-items:center;
    margin:0!important;
}

.seance-btn-download {
    display:block;
    text-decoration:none;
    border:0!important;
    padding:5px 10px 5px 45px;
    margin:0!important;
    
    background-repeat:no-repeat;
    background-position:5px center;
    background-size:30px;
    background-image:url('../images/assets/download.svg');       
}



.seance-titre .precisions {
    color:#666;
    font-style:italic;
}

@media (max-width: 1600px) {
  .seance {
    flex-direction:column;
  }
  .seance-titre {
    width:100%;
    font-weight:600;
  }
  .seance-documents {
    width:100%;
  }
}

@media (max-width: 800px) {
  .seance {
      margin:10px 0 20px 0!important;
      border-bottom:1px dotted var(--secondary-base);
      padding-bottom:10px;
  }
  .seance-documents {
    width:100%;
    flex-direction:column;
    align-items:flex-start;
  }
}
