.NewsItemListView__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.NewsItemListView__noResults {
    max-width: 21em;
    margin: 3em auto 0;
    padding: 1em;
    text-align: center;
}

.NewsItemListView__newsItem {
    position: relative;
    padding: 1.3em 0 1.3em 35px;
    background-image: linear-gradient(to right, #002b5a 20%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 5px 1px;
    background-repeat: repeat-x;
    background-color: #d9ecf3;
}

.NewsItemListView__date {
    position: relative;
    display: block;
    padding-left: 0.1em;
    font-size: 0.7em;
    font-style: italic;
    color: #0081ab;
}

.NewsItemListView__date:before {
    content: '\27a1';
    position: absolute;
    top: 0;
    left: -20px;
    font-family: 'icons', sans-serif;
    font-size: 1.4em;
    line-height: 0.9em;
    font-style: normal;
    color: #002b5d;
    transition: transform 0.2s ease;
}

.NewsItemListView__title {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    color: inherit;
}

.NewsItemListView__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-indent: -999em;
}

.NewsItemListView__newsItem:hover .NewsItemListView__date:before {
    transform: translateX(3px);
}

@media screen and (min-width: 700px) {
    .NewsItemListView {
        padding: 40px 1em 40px 20%;
    }
}