/* =========================================================
   LBDT — PAGES CERCLES
   ========================================================= */

/* ---------------------------------------------------------
   CONTENEUR GLOBAL D'UN CERCLE
   --------------------------------------------------------- */
.lbdt-cercle {
    width: 100%;
}

/* ---------------------------------------------------------
   BLOC COMMISSION
   --------------------------------------------------------- */
.lbdt-cercle .lbdt-commission {
    margin-bottom: 16px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    overflow: hidden;
}

/* ---------------------------------------------------------
   TITRE DU BLOC DETAILS
   --------------------------------------------------------- */
.lbdt-cercle .lbdt-commission > summary {
    padding: 12px 16px;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    cursor: pointer;
    background: #f5f5f5;
    border-left: 5px solid #f5a623;
}

/* Survol du titre */
.lbdt-cercle .lbdt-commission > summary:hover {
    background: #eeeeee;
}

/* Commission ouverte */
.lbdt-cercle .lbdt-commission[open] > summary {
    border-bottom: 1px solid #dddddd;
}

/* ---------------------------------------------------------
   CONTENU DU BLOC
   --------------------------------------------------------- */
.lbdt-cercle .lbdt-commission > *:not(summary) {
    margin-left: 18px;
    margin-right: 18px;
}

/* Premier élément après le titre */
.lbdt-cercle .lbdt-commission > summary + * {
    margin-top: 18px;
}

/* Dernier élément du bloc */
.lbdt-cercle .lbdt-commission > *:last-child {
    margin-bottom: 18px;
}

/* ---------------------------------------------------------
   PARAGRAPHES
   --------------------------------------------------------- */
.lbdt-cercle .lbdt-commission p {
    line-height: 1.2;
}

/* ---------------------------------------------------------
   LISTES
   --------------------------------------------------------- */
.lbdt-cercle .lbdt-commission ul,
.lbdt-cercle .lbdt-commission ol {
    padding-left: 24px;
    margin-top: 12px;
    margin-bottom: 18px;
}

.lbdt-cercle .lbdt-commission li {
    margin-bottom: 6px;
    line-height: 1.2;
}

/* ---------------------------------------------------------
   LIENS
   --------------------------------------------------------- */
.lbdt-cercle .lbdt-commission a {
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

/* ---------------------------------------------------------
   ANCRES
   Permet d'éviter qu'un bloc ciblé par une ancre arrive
   trop près du haut de l'écran.
   --------------------------------------------------------- */
.lbdt-cercle .lbdt-commission {
    scroll-margin-top: 100px;
}

/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */
@media (max-width: 768px) {

    .lbdt-cercle .lbdt-commission {
        margin-bottom: 12px;
    }

    .lbdt-cercle .lbdt-commission > summary {
        padding: 12px 14px;
        font-size: 1.2rem;
    }

    .lbdt-cercle .lbdt-commission > *:not(summary) {
        margin-left: 14px;
        margin-right: 14px;
    }

	 /* Contenu des commissions */
    .lbdt-cercle .lbdt-commission p,
    .lbdt-cercle .lbdt-commission li {
        font-size: 1.2rem;
        line-height: 1.5;
    }

}