/* MOBILE DRAWER */
@media screen and (max-width: 767px) {

    /* Скрываем sidebar на мобильном */
    .sidebar.drawer {
        position: fixed;
        top: 0;
        left: calc(-240px - 32px - 2px);
        width: 240px;
        height: 100vh;
        background: var(--on-background-color);
        border-right: 1px solid var(--border-color);
        padding: 16px;
        border-radius: 0;
        overflow-y: auto;
        transition: left 0.35s ease;
        z-index: 2000;
    }

    /* Открытое состояние */
    .sidebar.drawer.drawer-open {
        left: 0;
    }

    body.no-scroll {
        overflow: hidden;
    }

}
