:root {
    --axcb-light-blue: var(--ax-brand-light-blue, #68c0e8);
    --axcb-navy: var(--ax-brand-navy, #0b2b5c);
    --axcb-teal: var(--ax-brand-teal, #10929c);
    --axcb-light: var(--ax-brand-pale, #dce4eb);
}

.axcb {
    color: #fff;
    width: 100%;
}

.axcb-bg-teal { background: var(--axcb-teal); }
.axcb-bg-navy { background: var(--axcb-navy); }
.axcb-bg-light { background: var(--axcb-light); color: var(--axcb-navy); }

.axcb-inner {
    align-items: center;
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1600px;
    min-height: 5rem;
    padding: .65rem 1.25rem;
}

.axcb-links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}

.axcb-item {
    align-items: center;
    color: inherit;
    display: flex;
    gap: .65rem;
    min-width: 0;
    text-decoration: none;
}

.axcb-item:hover,
.axcb-item:focus-visible {
    color: inherit;
    opacity: .82;
}

.axcb-item:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

.axcb-item img {
    flex: 0 0 auto;
    height: 3.4rem;
    width: 3.4rem;
}

.axcb-copy {
    display: grid;
    gap: .08rem;
    line-height: 1.25;
}

.axcb-copy strong {
    color: inherit;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.axcb-copy span {
    color: inherit;
    font-size: .9rem;
}

.axcb-tagline {
    color: inherit;
    font-size: clamp(1rem, 1.55vw, 1.55rem);
    line-height: 1.25;
    margin: 0;
    text-align: right;
}

.axcb-desktop-compact .axcb-copy,
.axcb-desktop-compact .axcb-tagline {
    display: none;
}

@media (max-width: 760px) {
    .axcb-mobile-hidden { display: none; }

    .axcb-inner {
        min-height: 3.5rem;
        padding: .45rem .75rem;
    }

    .axcb-mobile-compact .axcb-inner {
        justify-content: center;
    }

    .axcb-mobile-compact .axcb-links {
        flex-wrap: nowrap;
        gap: 1.15rem;
        justify-content: center;
        width: 100%;
    }

    .axcb-mobile-compact .axcb-copy,
    .axcb-mobile-compact .axcb-tagline {
        display: none;
    }

    .axcb-mobile-compact .axcb-item img {
        height: 2.75rem;
        width: 2.75rem;
    }

    .axcb-mobile-full .axcb-inner,
    .axcb-mobile-full .axcb-links {
        align-items: stretch;
        flex-direction: column;
    }

    .axcb-mobile-full .axcb-tagline {
        display: none;
    }
}
