/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 11 2025 | 16:57:57 */

/*CSS POUR LA DIV AVEC L'ARTICLE EN TETE DE LA PAGE ACCUEIL*/
.latest-article-div {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.article-overlay {
    padding: 80px;
    max-width: 80%;
}
.article-title {
    text-align: center ;
    margin: 0 0 10px;
    font-size: 58px;
}
.article-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
.article-title a:hover {
    color: #ddd;
}
.article-date {
    margin: 0 0 15px;
    font-size: 40px;
	    line-height: 1.5;
}
.article-excerpt {
    margin: 0 0 20px;
    font-size: 22px;
    line-height: 1.5;
    opacity: 0.9;
}
.article-link {
    display: inline-block;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
	border:	1px solid ;
}
.article-link:hover {
    background: #949494 ;
		opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) { 
    .article-overlay {
        padding: 20px;
        max-width: 95%;
    }   
    .article-title {
        font-size: 40px;
    } 
    .article-excerpt {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
	.article-date {
    margin: 0 0 15px;
    font-size: 20px;
	    line-height: 1;
}
}