.cell_upload {
    width:10%;
    min-width:140px;
}

.cell_upload a {
    display:flex;
    color:black;
    justify-content:space-between;
    align-items:center;
}
.cell_upload a:hover {
    color: #008996;
    font-size:14px;
}
.cell_upload a i {
    margin-left: 5px;
    color: #008996;

}
.article_publication {
    width:80%;
    margin:35px auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-bottom: 20px;
    border-bottom: 2px solid #ccc; /* Ajoute une bordure en bas */

}
.article_publication:last-child {
    border-bottom: none; /* Retire la bordure pour le dernier article */
}
.entry-summary {
    width:63%;
}
.entry-summary h2{
    color:#333
}
.entry-summary p {
    color:#555
}
@media screen and (max-width: 1025px) {
    .article_publication {
        flex-direction:column;
    }

    .entry-summary {
        width:100%;
    }
    .cell_upload {
        width:50%;
    }
    .cell_upload a {
        justify-content:center;
        gap:10px;
        margin-bottom:10px;
    }
}