/**
 * Generic newslist styling
 */

.newslistitem,
.newslist li a {
    position: relative;
    display: block; /** the a element must be a block to cover the entire li */
    padding: 2.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;
}

.newslistitem:last-of-type,
.newslist li:last-child a {
    background-image: none;
}

.newslistitem .newsitemtitle,
.newslistitem .introduction,
.newslist li,
.news-link-to-archive,
.newsitem,
.newsitem-back,
.newsarchive {
    width: 92%;
    max-width: 35em;
    margin: auto;
}

.newsitemtitle a,
.newslist a {
    margin: 0;
    font-family: 'Futurapt Book', Helvetica, Arial, sans-serif;
    font-weight: normal;
    letter-spacing: inherit;
    text-decoration: none;
    color: #002c59;
}

.newslistitem .date,
.newslist .date {
    position: absolute;
    display: block;
    padding-left: 0.1em;
    font-size: 0.7em;
    font-style: italic;
    color: #0081ab;
    top: 2em;
}

.newslistitem .date:before,
.newslist .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: left 0.2s ease;
}

.newslistitem:hover .date:before,
.newslist li:hover .date:before {
    left: -15px;
}

.news-link-to-archive {
    margin-top: 1em;
    margin-bottom: 1em;
}

/**
 * newslistitem
 */

.newslistitem .introduction a {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-indent: -999em;
}

/**
 * .newslist
 */

.newslist {
    padding: 0;
    list-style: none;
    background-color: #d9ecf3;

}

.newslist .sep {
    display: none;
}