.article-list-simple {
    .article {
        padding-top: 15px;
        padding-bottom: 30px;
        border-top: 1px solid #e1e1e3;
    }

    .article__pic {
        display: block;
        width: 100%;
        margin-top: 15px;
        margin-bottom: 15px;

        img {
            display: block;
            width: 100%;
        }

        @media (min-width: 600px) {
            max-width: 285px;
            /* pic size + border size (270+15) */
            border-left: 15px solid #fff;
            float: right;
        }
    }

    .article__content {
        overflow: hidden;

        @media (min-width: 600px) {
            padding-right: 20px;
        }
    }

    .article__title {
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 24px;
        font-weight: 300;

        a {
            display: block;
            color: inherit;
            transition: color .2s ease-in-out;

            &:hover,
            &:focus {
                text-decoration: none;
                color: var(--brand-primary);
            }
        }

        @media (min-width:768px) {
            font-size: 30px;
        }
    }

    .article__excerpt {
        margin-bottom: 25px;
        font-size: 16px;
        font-weight: 300;
        line-height: 1.3;
        color: var(--brand-grey-light);

        p {
            margin-bottom: 10px;

            &:last-child {
                margin-bottom: 0;
            }

            a {
                display: inline-block;
                font-size: 16px;
                font-weight: 400;
                text-transform: uppercase;
                color: var(--text-color);
                text-decoration: underline;

                &:hover,
                &:focus {
                    text-decoration: none;
                }
            }
        }

        @media (min-width:768px) {
            font-size: 18px;
        }
    }

    .article__meta {
        margin-bottom: 0;
        font-size: 12px;
        line-height: 1;
    }

    .article__timestamp {
        display: inline-block;
        font-weight: 300;

        +.article__category {
            padding-left: 10px;
            margin-left: 10px;
            border-left: 1px solid;
        }
    }

    .article__category {
        display: inline-block;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--brand-green);
        transition: color .2s ease-in-out;

        &:hover,
        &:focus {
            text-decoration: none;
            color: var(--brand-green);
        }
    }

    .article__category-icon {
        display: block;
        margin-top: -10px;
        width: 36px;
        height: 36px;
        float: right;

        svg {
            width: 36px;
            height: 36px;

            path {
                stroke: #999;
            }
        }
    }
}