.title-bar {
    min-height: 80px;
    background-image: url(../../../img/layout/dot-pattern.png);
}

.title-bar--grey-dark {
    background-color: var(--brand-grey-dark);
}

.title-bar--grey-light {
    background-color: var(--brand-grey-light);
}

.title-bar--red {
    background-color: var(--brand-red);
}

.title-bar--green {
    background-color: var(--brand-green);
}

.title-bar--ghost-grey {
    background-color: var(--ghost-grey);

    .title-bar__breadcrumb,
    .title-bar__title {
        color: var(--brand-grey-dark);
    }
}

.title-bar__title {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 400;
    color: #fff;

    strong {
        color: #999b9f;
        font-weight: 300;
    }

    a {
        color: inherit;

        &:after {
            content: '/';
            display: inline-block;
            padding-left: 12px;
            padding-right: 5px;
            color: #ff9e7f;
        }
    }


    &>h1 {
        color: #FFFFFF;
        font-weight: 500;
        margin-top: 0px;
        margin-bottom: 25px;
    }

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

.title-bar__breadcrumb {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 300;
    color: #fff;

    a {
        color: inherit;

        &:after {
            content: '/';
            display: inline-block;
            padding-left: 12px;
            padding-right: 5px;
            color: #ff9e7f;
        }
    }
}