.section {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #dedede;
    border-radius: 8px;
}

.section .section-header {
    margin-top: 0;
    margin-bottom: 15px;
}

.section .section-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.blog-listing .article-item>a {
    display: flex;
    align-items: center;
    padding: 10px 0;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
}

.blog-listing .article-item figure {
    width: 140px;
    height: 140px;
}

figure {
    margin: 0;
    border-radius: 5px;
    overflow: hidden;
    background-color: #f1f1f1;
}

figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    border-radius: 3px;
}

.blog-listing .article-item .article-meta {
    margin-left: 15px;
    -ms-flex: 1;
    flex: 1;
    position: relative;
}

.blog-listing .article-item .article-title {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #055699;
    padding-right: 10px;
}

.blog-listing .article-item .article-summary {
    color: #8a8d91;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}