/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 27 2025 | 13:35:52 */
/* Masquer tous les articles sauf les 3 premiers */
.tab-accordion__content li:nth-child(n+4) {
    display: none;
}

/* Style pour le bouton "Voir plus" */
.see-more-btn {
    display: inline-block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #8dc6fa;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.see-more-btn:hover {
    background-color: #024985;
	color: white;
	transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


