.article-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
    width: 100%;
}
.article-thumbnail{
    width: 200px;
}
.article-thumbnail img {
    width: 200px;
    height: 170px;
    border-radius: 10px;
    object-fit: cover;
}
.article-content{
    width: 100%;
    margin-left: 16px;
}
.article-content h3{
    margin: 0;
}
.article-content h3 a{
    color: #0583F2;
    font-size: 21px;
    text-transform: uppercase;
    font-family: 'Helvetica';
    font-weight: 700;
}

.article-content__button{
    color: #0583F2;
    font-family: 'Helvetica';

}
.article-meta{
    margin-bottom: 20px;
}
.article-meta a{
    font-size: 14px;
    margin-bottom: 10px;
    color: #0583F2;
    font-family: 'Helvetica';
}
#article-filter {
    margin-bottom: 20px;
}
.filter-button {
    margin-right: 10px;
    padding: 6px 12px;
    border: none;
    background: #eee;
    cursor: pointer;
    font-family: 'Helvetica';
}
.filter-button.active {
    background: #0583F2;
    color: #fff;
}

/* Filtres d’articles */
#article-filter {
    text-align: center;
    margin-bottom: 20px;
}

.filter-wrapper {
    display: inline-block;
    font-size: 14px;
    color: #333;
}

.filter-item {
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
}

.filter-item.active,
.filter-item:hover {
    color: #0583F2;
}

/* Trait bleu sous les filtres */
.separator-line {
    height: 2px;
    background-color: #0583F2;
    width: 100%;
    margin: 60px auto;
}

.load-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.load-more-wrapper #load-more{
    font-family: 'Helvetica';
    font-size: 16px;
    background-color: #0583F2;
    color: #ffffff;
    border-radius: 100px;
    padding: 12px 24px;
    border: none;
}

@media (max-width: 425px){
    .article-item{
        flex-direction: column;
    }
}