/* Only override Furo layout on wide viewports.
 * Below this breakpoint Furo's built-in mobile header with
 * hamburger toggle handles the sidebar automatically. */
@media (min-width: 67em) {
    /* Push sidebar to the far left and widen content area */
    .sidebar-drawer {
        left: 0;
    }

    /* Remove the centering gap that pushes sidebar inward */
    body {
        --sidebar-width: 17rem;
    }

    /* Make the content area fill available width instead of centering */
    .main {
        margin-left: 0 !important;
        max-width: none;
    }

    .content {
        max-width: 52rem;
    }
}
