.p-our-team{
    .bnr.v1 {
        --bnr-tls-pd-v-tp: 150;
        --bnr-tls-pd-v-bt: 150;
    }
    @media screen and (max-width: 1279px) {
        .bg{
            img{
                opacity: 0.7;
            }
        }
    }
}

.bnr.v1 {
    --bnr-tls-pd-v-tp: 50;
    --bnr-tls-pd-v-tp-mbl: 50;
    --bnr-tls-pd-v-bt: 75;
    --bnr-tls-pd-v-bt-mbl: 30;
    --bnr-img-bg-o: 1;
    background: linear-gradient(180deg, hsl(from var(--black) h s l / .8) 11.54%, hsl(from var(--background) h s l / .8) 100%);
    


    /* Default flair color (used when there's no next panel or its theme isn't matched) */
    --bnr-v1-flair-clr: var(--accent);

    /* Match flair color to the bg of the next panel so the strip blends into it */
    &:has(+ section[data-colors="primary-light"])   { --bnr-v1-flair-clr: var(--lt-bg); }
    &:has(+ section[data-colors="alternate-light"]) { --bnr-v1-flair-clr: var(--lt-alt-bg); }
    &:has(+ section[data-colors="primary-dark"])    { --bnr-v1-flair-clr: var(--dk-bg); }
    &:has(+ section[data-colors="alternate-dark"])  { --bnr-v1-flair-clr: var(--dk-alt-bg); }

    position: relative;

    /* global.css gives PNGs in a picture:not([data-usc5]) `object-fit: contain`,
       and the `.bg img -> cover` escape hatch only exists in the [data-usc5]
       branch. Picture.html emits no data-usc5, so banner PNGs letterbox.
       Same workaround as footer-v1, contact-v1, PanelGroupV1, service-areas-v5. */
    .bg img {
        object-fit: cover !important;
    }

    .bnr-v1-cnt {
        position: relative;
        z-index: 1;
        padding-top: var(--bnr-tls-pd-v-tp-clc);
    }

    .wv-bnr {
        --shape-clr-1-dyn: var(--dk-bg);
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;

        svg {
            width: 100%;
            height: 17rem;
        }
    }

    .bnr-v1-flair {
        width: 100%;
        height: .78rem;
        background-color: var(--bnr-v1-flair-clr);
        mask-image: var(--flr-img);
        mask-repeat: repeat-x;
        mask-size: auto 100%;
        mask-position: center;
        position: absolute;
        bottom: -1px;
        left: 0;
        z-index: 1;
    }
    
}

header:has(.hdr.v1) + main .bnr.v1 {
    --bnr-tls-pd-v-tp: 127;
    --bnr-tls-pd-v-bt: 64;
}