.hero-banner {
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

html .page-content-area > .hero-banner.alignfull {
    padding: 0;
}

.hero-banner.has-background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

#breadcrumbs {

    > span {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        column-gap: 0.5rem;
        row-gap: 0.25rem;
    }

    a {
        opacity: 0.6;
        text-decoration: none;
        transition: opacity 0.2s ease;
    }

    a:hover {
        opacity: 1;
    }
}