.c-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    background: var(--color-surface-primary);
    border-bottom: 1px solid var(--color-border-primary);
}

.c-header__brand {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
}

.c-header__logo-slot {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-header__logo {
    width: 30px;
    height: 20px;
    display: block;
}

.c-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-inline-end: 10px;
    flex: 0 0 auto;
}

.c-header__action {
    padding: 0;
    border: 0;
    margin: 0;
    appearance: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.c-header__action:focus-visible {
    outline: 2px solid var(--color-brand-primary);
    outline-offset: 2px;
}

.c-header__action--user {
    min-width: 32px;
    height: 32px;
    border-radius: 9999px;
    background: var(--color-brand-primary);
}

.c-header__action--auth {
    gap: 6px;
    padding-inline: 12px;
}

.c-header__action--link {
    color: inherit;
}

.c-header__action--menu {
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-border-primary);
    background: var(--color-surface-primary);
    transition: all linear 0.2s;
    display: none;
    border-radius: 6px;
}

.c-header__action--menu:hover {
    background: var(--color-surface-secondary);
}

.c-header__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.c-header__icon svg {
    display: block;
}

.c-header__auth-form {
    margin: 0;
    display: flex;
}

.c-header__action-label {
    color: var(--color-surface-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.c-header__icon--user svg {
    width: 12px;
    height: 16px;
}

.c-header__icon--user svg path {
    fill: var(--color-surface-primary);
}

.c-header__icon--menu svg {
    width: 16px;
    height: 10px;
}

.c-header__icon--menu svg path {
    fill: var(--color-text-primary);
}

@media (max-width: 768px) {
    .c-header {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 100;
    }

    .c-header__action--menu {
        display: flex;
    }
}
