#article-list-option-part {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-bottom: 40px;
    .expand-button {
        flex: 1;
        display: flex;
        &:first-child {
            flex-direction: row-reverse;
            margin-right: 10px;
        }
    }
}

#article-list {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.article-tile {
    position: relative;
    display: flex;
    column-gap: 20px;
    img {
        flex-shrink: 0;
        width: 300px;
        height: 225px;
        object-fit: cover;
    }
    &:hover {
        h2 {
            text-decoration: underline;
        }
    }
}

.article-infos {
    display: flex;
    flex-direction: column;
    h2 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 18px;
    }
}

.article-details {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-top: auto;
}

.article-details-top {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.article-category {
    font-weight: bold;
    color: var(--green);
}

.article-date {
    font-style: italic;
    color: var(--normal-text);
}

.article-intro {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--normal-text);
}

@media (max-width: 720px) {
    #article-list-option-part {
        justify-content: unset;
        flex-direction: column;
        row-gap: 10px;
        .expand-button:first-child {
            flex-direction: unset;
        }
        .right-placed {
            right: unset;
        }
    }
}
