.featured-banner {
    display: flex;
    flex-direction: column-reverse;
    border-bottom: 4px solid #fff;
}

@media (min-width: 980px) {
    .featured-banner {
        flex-direction: row;
    }
}

.featured-banner .breadcrumb-container {
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
}

.featured-banner .breadcrumb {
    margin: 0 auto;
    padding: 0 35px;
    max-width: 596px;
    box-sizing: content-box;
}

@media (min-width: 980px) {
    .featured-banner .breadcrumb {
        padding: 0 84px;
    }
}

.featured-banner .breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.featured-banner .breadcrumb li {
    display: inline-flex;
    align-items: center;
}

.featured-banner .breadcrumb li + li::before {
    content: "›";
    display: inline-block;
    margin-top: -4px;
    padding: 0 8px;
}

.featured-banner .breadcrumb a {
    font-size: 13px;
    font-weight: 700;
    color: inherit;
}

.featured-banner .breadcrumb a:hover {
    text-decoration: underline;
}

.featured-banner .text-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 0;
    background-color: #00A4EF;
    color: #fff;
}

@media (min-width: 980px) {
    .featured-banner .text-container {
        flex: 2;
        padding: 141px 0;
        border-right: 2px solid #fff;
    }
}

.featured-banner .text-container .inner {
    padding: 0 35px;
    max-width: 596px;
    box-sizing: content-box;
}

@media (min-width: 980px) {
    .featured-banner .text-container .inner {
        padding: 0 84px;
    }
}

.featured-banner h1 {
    margin-bottom: 0;
    font-size: 30px;
    font-weight: 100;
}

.featured-banner h1 small {
    display: block;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (min-width: 980px) {
    .featured-banner h1 {
        font-size: 56px;
    }
    
    .featured-banner h1 small {
        font-size: 20px;
    }   
}

.featured-banner .img-container .background {
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 980px) {
    .featured-banner .img-container {
        flex: 3;
        border-left: 2px solid #fff;
    }

    .featured-banner .img-container .background {
        height: 100%;
    }
}