.articles-section {
    margin: 20px 20px;
}
#articles-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 20px 0 0 0;
    min-width: 800px;
    margin: 0 auto;
}
article {
    display: flex;
    flex-direction: column;
    min-width: 800px;
    border-bottom: 1px solid #985f27;
    padding: 9px;
    gap: 20px;
    transition: all .3s ease-in-out;
}
article:hover {
    background: #985f271a;
}
.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.date {
    font-size: 12px;
}
#article-infos p {
    color: #986027ad;
}
#article-content {
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-height: 100px;
}