/* Minification failed. Returning unminified contents.
(19,28): run-time error CSS1039: Token not allowed after unary operator: '-footer-background'
(28,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-normal'
(33,17): run-time error CSS1039: Token not allowed after unary operator: '-black-title'
(34,23): run-time error CSS1039: Token not allowed after unary operator: '-font-title'
(35,23): run-time error CSS1039: Token not allowed after unary operator: '-font-semi-bold'
 */
#news {
    padding: 150px 0;
}
#news .news-box {
    align-items: center;
    display:flex;
    justify-content: start;
    height: 450px;
    margin-bottom: 150px;
}
#news .news-box:nth-child(even) {
    flex-flow: row-reverse;
}
#news .news-box:last-child {
    margin-bottom: 100px;
}
#news .news-box .news-details {
    align-items: start;
    background-color: var(--footer-background);
    display: flex;
    flex-flow: column;
    height: 100%;
    justify-content: center;
    padding: 50px 80px;
    width: 40%;
}
#news .news-box .news-details .news-details-date {
    color: var(--primary-normal);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}
#news .news-box .news-details .news-details-title {
    color: var(--black-title);
    font-family: var(--font-title);
    font-weight: var(--font-semi-bold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
#news .news-box .news-details .news-details-description {
    font-size: 1.125rem;
    margin-bottom: 4rem;
}
#news .news-box .news-details .news-details-description > * {
    margin-bottom: 0;
}
#news .news-box .news-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 60%
}
/*EMPTY STATE*/
#news #list .empty-state {
    align-items: center;
    display: flex;
    flex-flow: column;
    height: 100%;
    justify-content: center;
}
#news #list .empty-state .empty-state-image {
    width: auto;
    max-height: 100px;
}
#news #list .empty-state .empty-state-text {
    font-size: 1rem;
    font-weight: 400;
    margin: 2rem 0 0 0;
    text-align: center;
}
/*END EMPTY STATE*/
@media (max-width: 991px) {
    #news .news-box {
        height: 600px;
        margin-bottom: 2rem;
    }
    #news .news-box,
    #news .news-box:nth-child(even) {
        flex-flow: column-reverse;
    }
    #news .news-box:last-child {
        margin-bottom: 2rem;
    }
    #news .news-box .news-image,
    #news .news-box .news-details {
        width: 100%;
    }
    #news .news-box .news-details {
        padding: 1.25rem;
    }
    #news .news-box .news-details .news-details-date,
    #news .news-box .news-details .news-details-description {
        margin-bottom: 1rem;
    }
    #news .news-box .news-image {
        
    }
}
