.page-hero {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 75px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #00437b 0%, #3465cd 100%);
}

.page-hero--has-cover {
    min-height: 180px;
    height: clamp(180px, 27.7778vw, 560px);
}

.page-hero img.page-hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.page-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 67, 123, .78), rgba(52, 101, 205, .62));
}

.page-hero .wrapper,
.page-hero.hero-style-blog-image-background .wrapper,
.page-hero.hero-style-simple-breadcrumbs .wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    width: 100%;
    min-height: inherit;
    padding-top: 0;
    padding-bottom: 0;
    background: transparent;
}

.page-hero .breadcrumbs {
    position: relative;
    top: auto;
    left: auto;
    color: #fff;
}

.page-hero .breadcrumbs::before {
    content: none;
}

.page-hero.hero-style-simple-breadcrumbs::after {
    content: none;
}

.page-hero .breadcrumbs > span > span {
    display: flex;
}

.page-hero .breadcrumbs a,
.page-hero .breadcrumbs .breadcrumb_last {
    color: #fff;
}

.page-hero .breadcrumbs > span > span:first-of-type a {
    color: #00437b;
    background: #fff;
}

.page-hero .breadcrumbs .chevron {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    margin: 0 15px;
}

.page-hero__title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.page-content {
    min-width: 0;
    max-width: 100%;
}

.page-content img {
    display: block;
    margin-inline: auto;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
}

@media (max-width: 639px) {
    .page-hero--has-cover {
        height: auto;
    }

    .page-hero .breadcrumbs > span {
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .page-hero .breadcrumbs .breadcrumb_last {
        max-width: calc(100vw - 60px);
    }
}
