.single hr {
    margin: 4rem 0;
}

article figure {
    margin-bottom: 2rem;
    max-width: 100%;
}

article img {
    max-width: 100%;
    height: auto;
}

article table,
.section-columns table {
    border: 1px solid #eee;
    border-right: 0;
    border-bottom: 0;
    margin-bottom: 2rem;
}

article table tr,
.section-columns table tr {
    border-bottom: 1px solid #eee;
}

article table tr:nth-child(odd),
.section-columns table tr:nth-child(odd) {
    background: #f9f9f9;
}

article table td,
.section-columns table td {
    padding: .5rem;
    border-right: 1px solid #eee;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 3rem;
    color: var(--li-purple);
    font-weight: 600;
}

.article-meta span {
    color: #373737;
    font-weight: 300;
}

.article-meta .date {
    margin-right: 1rem;
}

.article-meta .author {
    margin-left: 1rem;
}

.social-shares {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.social-shares span {
    margin-right: 1rem;
    font-weight: 400;
}

.social-shares ul {
    display: flex;
    list-style: none;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    flex: 1;
}

.social-shares ul li:before {
    display: none;
}

.social-shares li {
    flex: 1;
    text-align: center;
    align-items: center;
    padding-left: 0;
}
.social-shares li a {
    width: 100%;
    display: block;
    padding: .5rem;
    color: #fff;
    font-size: 1.2rem;
    transition: all .3s;
}
.social-shares li a.licon-facebook {
    background: #3b5999;
}
.social-shares li a.licon-twitter {
    background: #373737;
}
.social-shares li a.licon-linkedin {
    background: #0077B5;
}
.social-shares li a.licon-pinterest {
    background: #bd081c;
}
.social-shares li a:hover {
    text-decoration: none;
    background: var(--li-green);
}

@media(max-width: 575px) {
    .single hr {
        margin: 2rem 0;
    }
    .article-meta {
        margin-bottom: 2rem;
    }
    .article-meta .date {
        margin-right: 0rem;
        flex-basis: 100%;
    }
    
    .article-meta .author {
        margin-left: 0rem;
        flex-basis: 100%;
    }
    .article-meta > span {
        display: none;
    }
}

section.section-generic {
    max-width: 66.666667%;
    width: 90%;
    margin: auto;
    text-align: center;
}


section.section-generic .has-text-align-left {
    text-align: left;
}
section.section-generic .has-text-align-right {
    text-align: right;
}
section.section-generic .has-text-align-center {
    text-align: center;
}