.news-container {
    display: flex;
    width: 100%;

    flex-direction: column;
}

@media screen and (min-width: 1024px) {
    .news-container {
        flex-direction: row;
    }
}

/*--------------------------------------------------------------
## Navigation
--------------------------------------------------------------*/
.news-navigation {
    display: flex;
    width: 100%;
    max-width: 380px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: #f0f0f1;
    border-radius: 8px;
    padding: 50px;
    order: 2;
}

@media screen and (min-width: 1024px) {
    .news-navigation {
        order: 1;
    }
}

.news-navigation-header {
    margin-bottom: 40px;
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #041e42;
}

.news-navigation-list-item {
    margin-bottom: 20px;
}

.news-navigation-link {
    color: #19262d;
}

.news-navigation-link:hover {
    color: #041e42;
}

/*--------------------------------------------------------------
## Content
--------------------------------------------------------------*/
.news-content-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    font-family: "Poppins", sans-serif;
    color: #041e42;
}

@media screen and (min-width: 1024px) {
    .news-content-container {
        order: 2;
        margin-left: 120px;
    }
}
