.tpj-hero {
    position: relative;
    display: flex;
    width: 100%;
    box-sizing: border-box;
    isolation: isolate;
    background-image: var(--tpj-bg-desktop);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    overflow: hidden;
}

.tpj-hero *,
.tpj-hero *::before,
.tpj-hero *::after {
    box-sizing: border-box;
}

.tpj-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.tpj-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.tpj-content-inner {
    width: 100%;
}

.tpj-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    line-height: 1.25;
    margin: 0;
    padding: 0;
}

.tpj-breadcrumb a {
    text-decoration: none;
    transition: color .2s ease;
}

.tpj-breadcrumb-separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .88em;
    opacity: .96;
}

.tpj-breadcrumb-separator svg {
    width: .72em;
    height: .72em;
}

.tpj-title {
    margin: 0;
    padding: 0;
    text-wrap: balance;
}

.tpj-separator {
    display: flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
}

.tpj-separator-diamond {
    display: block;
    flex: 0 0 auto;
    border-style: solid;
    background: transparent;
    transform: rotate(45deg);
}

.tpj-separator-line {
    display: block;
    flex: 0 1 auto;
    max-width: calc(100vw - 100px);
}

.tpj-description {
    margin: 0;
    padding: 0;
}

.tpj-description p {
    margin: 0;
    padding: 0;
}

.tpj-description p + p {
    margin-top: .7em;
}

.tpj-description a {
    text-decoration: none;
    transition: color .2s ease;
}

@media (max-width: 1024px) {
    .tpj-hero {
        background-image: var(--tpj-bg-tablet, var(--tpj-bg-desktop));
    }
}

@media (max-width: 767px) {
    .tpj-hero {
        background-image: var(--tpj-bg-mobile, var(--tpj-bg-desktop));
    }

    .tpj-separator-line {
        max-width: calc(100vw - 80px);
    }

    .tpj-title {
        text-wrap: pretty;
    }
}
