.articlesContainer {
    display: flex;
}

.articlesList {
    width: 80%;
    padding: 0 10px;
}

.articleLine {
    width: 100%;
    border-bottom: 2px solid var(--ultra-light-grey);
    padding: 8px;
}

.articleLine:last-child {
    border-bottom: none;
}

img.iconLink {
    width: 30px;
    margin-right: 15px;
}

#articleBloc .col {
    padding: 5px;
}

.articleLine a {
    color: var(--dark-grey);
    text-decoration: none;
    transition: color 0.2s ease;
}

.articleLine a:hover {
    color: var(--link-blue);
}

h2 a {
    color: var(--dark-grey);
    text-decoration: none;
    transition: color 0.2s ease;
}

h2 a:hover {
    color: var(--link-blue);
}

#articleBack a {
    color: black;
    text-decoration: none;
    transition: color 0.2s ease;
}

#articleBack a:hover {
    color: var(--link-blue);
}

img.articleIcon {
    width: 30px;
    margin-right: 15px;
}

#articleBack {
    text-align: center;
    font-weight: bold;
    background-color: var(--ultra-light-grey);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

#articleAuthor {
    text-align: center;
    background-color: var(--dark-grey);
    color: white;
}

#articleDate {
    text-align: center;
    background-color: var(--dark-grey);
    color: white;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.articlePicture {
    margin: 5px auto;
    display: block;
    position: relative;
    width: 100%;
    max-width: 900px;
    box-shadow: 3px 3px 8px var(--light-grey);
}

.articleSmallPicture {
    margin: 5px auto;
    display: block;
    position: relative;
    width: 250px;
    max-width: 80%;
    box-shadow: 3px 3px 8px var(--light-grey);
}


/* RESPONSIVE */

@media screen and (max-width: 1800px) {
    .articleLine {
        width: 80%;
    }
}

@media screen and (max-width: 1300px) {
    .articleLine {
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    .articlesList {
        width: 100%;
    }
}

@media screen and (max-width: 1000px) {
    .articleLine {
        font-size: 14px;
    }
}

@media screen and (max-width: 800px) {
    #articleBloc .col {
        font-size: 12px;
    }
}