.articles {
    background: white;
    font-family: "proxima-nova", sans-serif;    
}
body > .articles {
    padding: 1rem;
}
.articles a {
    color: black;
    text-decoration: none;
}

.articles .article-type {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}
.article-date {
    font-feature-settings: "onum";
}
.articles h4 {
    line-height: 1.1;
}
.articles > div:hover {
    cursor: pointer;
    border-top: 1px solid rgba(0, 0, 0, 1);
}
.articles div:hover a {
    opacity: 0.5;;
}

.articles p {
    line-height: 1.38;
    word-break: break-word;
    margin-top: 0.5em;
}

.articles > div {
    border-top: 1px solid rgba(0, 0, 0, .12);
    padding: 1rem 0 2rem 0;
}

.articles h4 {
    font-size: 1.25rem;
}
.articles time+h4 {
    margin-top: 0;
}

@media (min-width: 1200px) {
    body {
        grid-gap: 4rem;
    }
    .articles {
        grid-template-columns: 1fr;
    }

}
@media (min-width:2000px) {
    body {
        grid-gap: 1rem 4rem;
    }
    .articles {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 1rem 4rem;
        align-content: start;
        align-items: start;
    }
    article {
        font-size: 1.25rem;
        margin: 10% auto;
    }

    .articles > div {
        border-top: 1px solid rgba(0, 0, 0, .12);
        padding: 1rem 0 4rem 0;
    }
    .articles h1 + h3 {
        margin-top: 0.75rem;
        font-weight: normal;
    }
    .articles h4 {
        font-size: 1.5rem;
    }
    .articles h3 {
        margin-top: 0;
    }
    .articles div + div {
        margin-top: 0;
    }

}
.article-list__title {
    margin-top: 0.25rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    line-height: 1.2;

}
.article-list__icon {
    margin-right: 1rem;   
    opacity: 0.6;
    border-radius: 48px;
    width:48px;
    height:48px;
    flex-shrink: 0;
    align-self: flex-start;
    background: rgba(0, 0, 0, 0.05);
    padding: 0.75rem;
}

.unstyled-list {
    list-style-type: none;
}
.articles .article-excerpt {
    opacity: 0.6;
    margin-left: 4em;
    font-family: "ff-tisa-web-pro",
    serif;
}
.articles div:hover .article-excerpt {
opacity: 1;
}

.articles h4 {
    font-weight: 500;
}
