/* SalesOS standard application header */
.brandbar.os-standard-header {
    display:grid;
    grid-template-columns:auto 1px minmax(0,1fr);
    align-items:center;
    gap:18px;
    min-height:78px;
    margin-bottom:18px;
    padding:10px 16px;
    background:linear-gradient(90deg,#d6e8ff,#eef5ff);
    border:1px solid #c7d8ee;
    border-radius:14px;
    box-shadow:0 10px 28px rgba(15,23,42,.08);
}

.os-standard-header .suite-brand {
    display:flex;
    align-items:center;
    gap:12px;
    min-width:0;
}

.os-standard-header .suite-mark {
    width:52px;
    height:52px;
    flex:0 0 52px;
    border:4px solid #2563eb;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#2563eb;
    font-size:31px;
    font-weight:950;
    line-height:1;
}

.os-standard-header .suite-brand-text {
    display:flex;
    flex-direction:column;
    min-width:0;
}

.os-standard-header .suite-wordmark {
    font-size:28px;
    line-height:1;
    font-weight:950;
    letter-spacing:-.045em;
    color:#2563eb;
    white-space:nowrap;
}

.os-standard-header .suite-tagline {
    margin-top:5px;
    font-size:10px;
    line-height:1;
    font-weight:950;
    letter-spacing:.22em;
    color:#415879;
    white-space:nowrap;
}

.os-standard-header .suite-version {
    margin-top:4px;
    font-size:10px;
    line-height:1;
    color:#64748b;
    font-weight:800;
}

.os-standard-header .header-divider {
    width:1px;
    height:50px;
    background:#93c5fd;
}

.os-standard-header .header-context {
    display:flex;
    flex-direction:column;
    gap:4px;
    min-width:0;
}

.os-standard-header .header-title {
    font-size:20px;
    font-weight:950;
    letter-spacing:-.025em;
    color:#0f172a;
}

.os-standard-header .header-subtitle {
    font-size:12px;
    color:#64748b;
    font-weight:700;
    white-space:normal;
}

@media(max-width:800px){
    .brandbar.os-standard-header {
        grid-template-columns:auto minmax(0,1fr);
        gap:12px;
    }

    .os-standard-header .header-divider {
        display:none;
    }

    .os-standard-header .suite-mark {
        width:44px;
        height:44px;
        flex-basis:44px;
        font-size:26px;
    }

    .os-standard-header .suite-wordmark {
        font-size:23px;
    }

    .os-standard-header .suite-tagline {
        font-size:8px;
        letter-spacing:.15em;
    }
}
