.header {
    background: linear-gradient(180deg, var(--color-charcoal-darker) 0%, var(--color-charcoal-dark) 100%);
    border-bottom: solid 4px var(--color-crimson);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    color: var(--color-charcoal-lightest);
    display: block;
    font-family: var(--font-base);
    font-size: 15px;
    width: 100%;
}

.header .header-inner {
    align-items: center;
    display: flex;
    flex-direction: row;
    min-height: 74px;
    padding: 0 8px 0 20px;
}

.header .header-brand,
.header .header-brand:hover,
.header .header-brand:focus {
    align-items: center;
    color: var(--color-charcoal-lightest);
    display: flex;
    line-height: 1.2;
    margin: 0;
    padding: 8px 0;
    text-decoration: none;
}

.header .header-brand:hover,
.header .header-brand:focus {
    color: var(--color-white);
    text-decoration: none;
}

.header .header-brand-logo {
    height: 40px;
    width: auto;
}

.header .header-brand-text {
    color: var(--color-white);
    font-family: var(--font-brand);
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    margin-left: 10px;
}

.header .header-brand-tag {
    color: var(--color-charcoal-lightest);
    display: inline-block;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    margin-left: 4px;
    transform: translateY(-0.35em);
    vertical-align: baseline;
}

@media (max-width: 991px) {
    .header {
        position: relative;
        z-index: 10;
    }

    .header .header-inner {
        min-height: 66px;
    }

    .header .header-brand {
        flex: 0 1 auto;
        min-width: 0;
        padding: 8px 8px 8px 0;
    }

    .header .header-brand-logo {
        height: 38px;
    }

    .header .header-brand-text {
        font-size: 22px;
        margin-left: 8px;
    }
}
