/*
.main-navigation {
    border-bottom: var(--border-style);
}
nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: var(--container-padding);    
}
.sidebar {
    border-right: var(--border-style);
    background-color: var(--bg-color-side);
    justify-content: flex-start;
    position: sticky;
    top: 0;
    max-width: 260px;
    height: 100vh;
    z-index: 0;
}
.sidebar section {
    margin: 0 0 2rem;
}
.sidebar h4 {
    margin: 0 0 0.5rem;
    opacity: 0.7;
}
.sidebar ul {
    padding: 0;
    margin: 0;
}
.sidebar li {
    list-style: none;
    margin: 12px 0;
}
.sidebar a {
    text-decoration: none;
}
*/
nav.main-nav {
    position: sticky;
    top: 0;
    z-index: 12;
    background: var(--bg-color);
    border-bottom: 1px solid var(--bg-color-contrast);
}
nav.main-nav > div {
    padding: 12px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    align-items: center;
}
nav .site-title, .site-title {
    font-weight: bold;
    font-size: 1.125rem;
}
.nav-menu {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 3.5rem;
    margin: 0;
}
button#theme-toggle {
    background: none;
    color: var(--link-color);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}
button#theme-toggle:hover {
    background: var(--bg-color-contrast);
}