.category-banner {
    padding-top: 40px;
    padding-bottom: 30px;

    @media (min-width:768px) {
        padding-bottom: 60px;
    }

    .article {
        position: relative;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;

        &:after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            opacity: .85;
        }

        @media (max-width:767px) {
            margin-left: -15px;
            margin-right: -15px;
        }
    }

    .article__content {
        padding: 25px 15px;
        color: #fff;
        position: relative;
        z-index: 5;

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

        @media (min-width:992px) {
            padding: 60px 55px;
        }
    }

    .article__meta {
        margin-bottom: 25px;

        span {
            font-weight: 300;
        }
    }

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

        a {
            display: block;
            color: inherit;

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

        span {
            display: block;
            font-size: 24px;
        }

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

            span {
                font-size: 30px;
            }
        }

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

            span {
                margin-top: -5px;
                font-size: 36px;
            }
        }
    }

    .article__excerpt {
        margin-top: 20px;
        margin-bottom: 15px;

        p {
            margin-bottom: 0;
            font-size: 18px;
            line-height: 1.25;
            font-weight: 300;
        }

        @media (min-width:1200px) {
            width: 75%;
        }
    }

    .article__more {
        display: inline-block;
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: underline;
        color: #fff;

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

.category-banner--red {
    .article:after {
        background-color: var(--brand-primary);
    }
}

.category-banner--green {
    .article:after {
        background-color: var(--brand-green);
    }
}

.category-banner--grey-dark {
    .article:after {
        background-color: var(--brand-grey-dark);
    }
}

.category-banner--grey-light {
    .article:after {
        background-color: var(--brand-grey-light);
    }
}


.category-banner__breadcrumb {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #ff3d00;

    a {
        color: var(--brand-grey-light);
        transition: color .2s ease-in-out;

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

        &:after {
            content: '/';
            display: inline-block;
            margin-left: 12px;
            margin-right: 7px;
            font-weight: 300;
            color: #d6d7d9;
        }
    }

    @media (min-width:992px) {
        font-size: 21px;
    }
}

.category-banner__rss {
    position: absolute;
    right: 8px;
    top: 0;

    @media (max-width:767px) {
        right: 15px;
    }

    svg {

        path,
        circle {
            stroke: var(--text-color);
            transition: stroke .2s ease-in-out;
        }
    }

    &:hover,
    &:focus {
        svg {

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

.blog-category {
    padding-bottom: 40px;

    @media (min-width:768px) {
        padding-bottom: 80px;
    }
}

/* blog category content contains a partial called "article-list" found in "partials/_article-list.less" */