/* article */
.article-title {
    font-family: var(--kmnd-body-tertiary-font-family);
    line-height: 1.033em;
    letter-spacing: .025em;
    font-size: 3.8125rem;
    margin: 0 0 30px;
}

.article-text {
    font-family: "EB Garamond";
    font-size: 20px;
    font-weight: 400;
    line-height: 1.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 30px 0;
    max-width: 1370px;
}

.article-text:last-of-type {
    margin-bottom: 0;
}

.article-text a {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--kmnd-body-tertiary-font-family);
    text-decoration: none;
    -webkit-transition: var(--kmnd-body-transition);
    -o-transition: var(--kmnd-body-transition);
    transition: var(--kmnd-body-transition);
    border-bottom: 1px solid currentColor;
}

.article-text a:hover {
    color: var(--kmnd-body-color);
}

.article-text span {
    color: var(--kmnd-body-color);
}

.article-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 30px 0;
}

.article-images img {
    margin-right: 15px;
}

.article-images img:last-of-type {
    margin-right: 0;
}

.article-quote {
    max-width: 60%;
    display: block;
    font-family: var(--kmnd-body-tertiary-font-family);
    margin: 48px 0 42px 0;
    font-size: 2.375rem;
    line-height: 1.105em;
    letter-spacing: -.01em;
    font-style: italic;
    padding-left: 89px;
    color: var(--kmnd-body-color);
    position: relative;
}

.article-quote:before {
    content: "”";
    font-size: 4.6875rem;
    height: 30px;
    width: 30px;
    display: block;
    position: absolute;
    left: 35px;
    top: 15px;
}

.article-quote:after {
    content: '';
    display: block;
    height: 100px;
    width: 100px;
    border: solid 1px var(--kmnd-body-color);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    opacity: 0.5;
    top: -30px;
    left: 0;
    position: absolute;
}

.article-list {
    margin-left: 20px;
}

.article-list li {
    font-size: 1rem;
    line-height: 1.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 10px 0;
}

.article-list li span {
    color: var(--kmnd-body-color);
}

@media (max-width: 992px) {
    .article-title {
        font-size: 2rem;
    }

    .article-quote {
        padding-left: 0;
        padding-top: 0;
        font-size: 2rem;
    }

    .article-quote:before, .article-quote:after {
        display: none;
    }

    .article-text, .article-list li {
        font-size: 1rem;
        line-height: 1.4rem;
    }

    .article-images {
        display: block;
    }

    .article-images img {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .article-images img:last-of-type {
        margin-bottom: 30px;
    }
}