.content-element__newspostlink{
    position: relative;
    display: block;
}

.content-element__newspostlink::after {
    content:"";
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    opacity: 0;
    background: rgba(227,0,12,0.8);
    transition:opacity 0.3s ease;
}

.content-element__newspostlink span{
    opacity: 0;
    position: absolute;
    z-index: 11;
    text-align: center;
    width: 100%;
    display: block;
    color:#fff;text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    transition: opacity 0.3s ease;
    margin-top: -12px;
}


.content-element__newspostlink span i{
    color:#fff;
    position: relative;
    top:12px;
    margin-right: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-element__newspost--medium:hover .content-element__newspostlink::after{
    opacity: 1;
}

.content-element__newspost--medium:hover .content-element__newspostlink span,
.content-element__newspost--medium:hover .content-element__newspostlink i{
    opacity: 1;
}

.content-element__newspost--medium a{
    text-decoration: none !important;
    color: inherit; !important
}






.content-element__newspost--small:not(:last-child){
    border-bottom: 1px solid #e5e5e5;
    padding-bottom:9px;
}

.content-element__newspost--small:not(:first-child){
    padding-top:9px;
}