/* BNP two-column utility banner */
.bnp__two-col {
    background: #161616;
    color: #fff;
}

.bnp__two-col .bnp__two-col__inner {
    display: flex;
    flex-wrap: nowrap;           /* keep two columns on mobile */
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 6px 1.2rem;         /* mobile first */
}

/* Desktop (Dawn uses 750px as the breakpoint) */
@media screen and (min-width: 750px) {
    .bnp__two-col .bnp__two-col__inner {
        padding: 6px 3rem;
    }
}

.bnp__two-col .bnp__two-col__col {
    flex: 0 0 50%;               /* two equal columns */
    min-width: 0;                /* prevent overflow */
}

.bnp__two-col .bnp__two-col__col--left {
    text-align: left;
}

.bnp__two-col .bnp__two-col__links {
    display: inline-flex;
    align-items: center;
    gap: 10px;                   /* space around the pipe */
    font-size: 14px;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.bnp__two-col .bnp__two-col__link {
    color: inherit;
    text-decoration: none;
    font-size: 10px;
}

.bnp__two-col .bnp__two-col__link:hover {
    text-decoration: underline;
}

.bnp__two-col .bnp__two-col__link:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.bnp__two-col .bnp__two-col__sep {
    opacity: .6;
}
