.article-widget-wrapper {
}

.article-widget {
    width: 800px;
    height: 170px;

    margin: 0 auto;
    margin-top: 40px;

    background-color: white;
    cursor: pointer;
}

.article-widget:hover {
    -webkit-box-shadow: 0px 0px 15px -1px rgba(255,255,255,1);
    -moz-box-shadow: 0px 0px 15px -1px rgba(255,255,255,1);
    box-shadow: 0px 0px 15px -1px rgba(255,255,255,1);
}

.article-image, .article-text {
    float: left;
    height: 100%;
}

.article-image {
    width: 170px;
    border-right: 12px solid orange;

    background-size: 100%;
}

.article-text {
    width: calc(100% - 182px);
}

.article-text span {
    display: block;
}

.article-text h2, .article-text span {
    margin: 8px;
    margin-top: 12px;
}

.article-link {
    text-decoration: none;
    color: black;
}