.article-list-boxed {
    margin: 0 -8px -16px -8px;

    .article {
        background-color: #fff;
        border: 1px solid #ccc;
        position: relative;
    }

    .article--cta {
        background-color: var(--brand-grey-dark);

        .article__content {
            text-align: center;
        }

        .article__title {
            margin-bottom: 20px;
            color: #fff;

            a {

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

        .article__category-icon {
            position: static;

            svg {
                width: 80px;
                height: 80px;

                path,
                circle {
                    stroke: var(--brand-green);
                }
            }
        }
    }

    .article__pic {
        display: block;
        margin: 0 0 0 0;

        +.article__content {
            padding-top: 15px;
            padding-bottom: 15px;
            padding-right: 65px;

            .article__title {
                font-size: 16px;
            }
        }

        img {
            width: 100%;
            height: auto;
        }
    }

    .article__content {
        padding: 25px;
    }

    .article__title {
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 22px;
        font-weight: 300;
        color: var(--text-color);

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

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

        @media (min-width:1200px) {
            font-size: 28px;
        }
    }

    .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 {
        position: absolute;
        bottom: 15px;
        right: 15px;

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

            path,
            circle {
                stroke: #999b9f;
            }
        }
    }
}

.featured-list__item,
.resources-list__item {
    padding: 0 8px;
    margin-bottom: 16px;

    @media (min-width:480px) {
        width: 50%;
        float: left;
    }

    @media (min-width:992px) {
        width: 25%;
    }
}