/*--------------------------------------------------------------
## date
--------------------------------------------------------------*/
.news-list-item-content-date {
    width: 64px;
    font-weight: 600;
    text-align: center;
}

.news-list-item-content-month {
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
}

.news-list-item-content-day {
    font-size: 40px;
}

/*--------------------------------------------------------------
## Single list item
--------------------------------------------------------------*/
.news-list-item-wrapper {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.news-list-item-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    padding-left: 60px;
}

.news-list-item-header {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.2;
}

.news-list-item-header-link {
    color: #76232f;
}
.news-list-item-header-link:hover {
    color: #621d27;
}

.news-list-item-categories {
    margin-bottom: 10px;
}

.news-list-item-excerpt {
    margin-bottom: 10px;
}

.news-list-item-learn-more {
    color: #686e78;
    text-decoration: underline;
    font-size: 20px;
    font-weight: 600;
}

/*--------------------------------------------------------------
## Pagination
--------------------------------------------------------------*/
.news-pagination-wrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.news-pagination-wrapper .nav-links {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

.news-pagination-wrapper .page-numbers {
    display: flex;
    width: 60px;
    height: 60px;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transition: all linear 0.2s;

    color: #041e42;
    font-weight: 600;
    font-size: 20px;
    border-radius: 60px;
    border: 2px solid rgba(74, 106, 152, 0.4);
}

.news-pagination-wrapper .page-numbers:hover {
    background-color: #76232f;
    border-color: #76232f;

    color: white;
}

.news-pagination-wrapper .page-numbers:not(:last-child) {
    margin-right: 25px;
}

.news-pagination-wrapper .page-numbers.current {
    background-color: #041e42;
    color: white;
}
