/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 27 2025 | 13:37:12 */
/* Amélioration de la lisibilité des références */
.tab-accordion__content ol {
    line-height: 1.8;
    padding-left: 0;
}

.tab-accordion__content li {
    margin-bottom: 1.5em;
    padding: 1em;
    border-bottom: 1px solid #e0e0e0;
	background-color: #edeef0;
	border-radius: 4px;
}

.tab-accordion__content li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Espacement pour les auteurs et titre */
.tab-accordion__content li p {
    margin-bottom: 0.5em;
    line-height: 1.6;
	width: 100%;
}

/* Espacement pour les balises <em> (titres de revues) */
.tab-accordion__content em {
    font-style: italic;
    display: block;
    margin-top: 0.3em;
}

/* Style pour <br> - ajout d'espace */
.tab-accordion__content br {
    content: "";
    display: block;
    margin-bottom: 0.5em;
}

/* Alternance de couleur de fond */
.tab-accordion__content li:nth-child(odd) {
    background-color: #f9f9f9;
}

/* Style bouton pour les liens DOI */
.tab-accordion__content li a {
    display: flex;
    margin-top: auto;
    padding: 10px 20px;
    background-color: #024985;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    justify-content: center;
}

.tab-accordion__content li:hover {
    /*background-color: #004499;*/
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Cacher l'URL et afficher "Read the article" */
.tab-accordion__content li a {
    font-size: 0;
}

.tab-accordion__content li a::before {
    content: "Lire l'article";
    font-size: 14px;
}

/* masquer les numero des articles car seuls les 3 premiers s'affichent => trouver une solution pour affcher tous les numeros*/
.tab-accordion__content li::marker {
    content: none;
}





