.header-sig {
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border-gray);
    box-shadow: var(--shadow-sm);
    z-index: var(--z-navbar);
    flex-shrink: 0;
}

.header-container {
    width: 100%;
    height: 100px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-logo {
    width: 300px;
    height: 100px;
    display: flex;
    align-items: center;
    border-radius: 5
}

.header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}

.header-title {
    margin: 0;
    color: var(--primary);
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
}

.header-subtitle {
    color: var(--text-gray);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 4px;
}

@media (max-width: 768px) {

    .header-sig {
        height: auto;
        padding: 12px 0;
    }

    .header-container {
        flex-direction: column;
        justify-content: center;
        padding: 0 16px;
    }

    .header-brand {
        gap: 10px;
    }

    .header-logo {
        width: 210px;
        height: 55px;
    }

    .header-title {
        font-size: 18px;
        display: none;
    }

    .header-subtitle {
        font-size: 11px;
    }

}