/* Shared demo-page header. Matches the homepage header. */
/* Demo pages reset margins/padding on *, so defaults are restored explicitly. */

.site-header {
    flex: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 1rem 1.5rem;
    background-color: var(--header-bg);
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: normal;
    color: var(--header-fg);
}

.site-header h1 {
    margin: 0.67em 0;
    font-size: 2em;
    font-weight: 400;
    text-align: left;
    color: var(--header-fg);
}

.site-header a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--header-fg);
}

.site-header h1 a {
    text-decoration: underline;
    font-weight: 400;
}

.site-header a:hover {
    background-color: transparent;
}

.site-header a svg {
    width: 18px;
    height: 18px;
    flex: none;
}
