/**
 * Site-wide right navigation drawer (overlay — does not slide #page).
 * Panel sits above the dimmer; an inner scrollport holds tall content.
 */
:root {
    --site-drawer-width: clamp(280px, 22vw, 320px);
    --site-drawer-ease: cubic-bezier(.22, .8, .2, 1);
    /* Above newsletter modal (100080) and any guest overlays. */
    --site-drawer-z-backdrop: 2147482900;
    --site-drawer-z-panel: 2147483000;
}

html {
    /* Keeps the viewport width stable when scroll locking the open drawer. */
    scrollbar-gutter: stable;
}

body {
    overflow-x: clip;
}

/* Header: logo left, all controls flush right, hamburger last */
.header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: .75rem !important;
}
.header-container > .site-branding {
    flex: 0 0 auto !important;
    margin-right: auto !important;
}
.header-container > .header-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 0 0 auto !important;
    gap: .45rem !important;
    margin-left: auto !important;
}
.header-actions > .header-actions-icons {
    order: 1;
    display: inline-flex !important;
    align-items: center !important;
    gap: .35rem !important;
}
.header-actions > .header-login-link { order: 2; }
.header-actions > .header-register-wrap,
.header-actions > .header-register-btn { order: 3; }
.header-actions > .header-user-menu { order: 4; }
.header-actions > .site-drawer-toggle { order: 99; margin-left: .15rem; }

.header-actions .header-theme-toggle,
.header-actions .header-lang-right,
.header-actions .notification-bell,
.header-actions .header-messenger-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.site-drawer-toggle {
    display: inline-flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    color: #2f2a45;
    background: transparent;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}
.site-drawer-toggle:hover {
    background: rgba(107, 78, 240, .08);
    color: #5b3fe0;
}
.site-drawer-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform .22s ease, opacity .18s ease;
}
body.site-drawer-open .site-drawer-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
body.site-drawer-open .site-drawer-toggle span:nth-child(2) { opacity: 0; }
body.site-drawer-open .site-drawer-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Panel shell — fixed viewport box; scrolling happens in __scroll */
.site-drawer-panel,
.header-nav-wrap.site-drawer-panel {
    position: fixed !important;
    z-index: var(--site-drawer-z-panel) !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    box-sizing: border-box;
    width: var(--site-drawer-width) !important;
    max-width: 90vw !important;
    height: 100% !important;
    height: 100dvh !important;
    max-height: 100% !important;
    max-height: 100dvh !important;
    min-height: 0 !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 0;
    border-left: 1px solid rgba(116, 95, 201, .12);
    color: #24213b;
    background: #ffffff;
    box-shadow: -18px 0 48px -28px rgba(24, 16, 72, .35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none !important;
    transform: translateX(102%);
    transition: transform .42s var(--site-drawer-ease), opacity .2s ease, visibility .42s;
    isolation: isolate;
}
body.site-drawer-open .site-drawer-panel,
body.site-drawer-open .header-nav-wrap.site-drawer-panel {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
    pointer-events: auto !important;
    overflow: visible !important; /* allow language dropdown to paint below prefs */
}

.site-drawer-panel__scroll {
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 0 1.15rem max(1.5rem, env(safe-area-inset-bottom, 0px));
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
}
.site-drawer-panel__scroll::-webkit-scrollbar {
    width: 8px;
}
.site-drawer-panel__scroll::-webkit-scrollbar-thumb {
    background: rgba(107, 78, 240, .28);
    border-radius: 99px;
}
.site-drawer-panel__scroll::-webkit-scrollbar-track {
    background: transparent;
}

/* Sticky close bar (outside the scrollport) */
.site-drawer-panel > .site-drawer-utility__top {
    position: relative;
    z-index: 5;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 44px;
    margin: 0;
    padding: max(1.1rem, env(safe-area-inset-top, 0px)) 1.15rem .35rem;
    border: 0;
    background: inherit;
    pointer-events: auto !important;
}
.site-drawer-utility__top > span { display: none; }
.site-drawer-close {
    position: relative;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 10px;
    color: #615a7c;
    background: transparent;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    pointer-events: auto !important;
    touch-action: manipulation;
}
.site-drawer-close:hover {
    color: #5b3fe0;
    background: rgba(107, 78, 240, .08);
}
/* Prefs row (language + theme) — kept outside the scrollport so dropdowns aren't clipped. */
.site-drawer-prefs {
    position: relative;
    z-index: 8;
    flex: 0 0 auto;
    display: flex;
    align-items: stretch;
    gap: .55rem;
    padding: .35rem 1.15rem .85rem;
    border-bottom: 1px solid rgba(116, 95, 201, .12);
    overflow: visible;
    pointer-events: auto !important;
}
.site-drawer-prefs__control {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: .3rem;
}
.site-drawer-prefs__label {
    padding: 0 .15rem;
    color: #6b6580;
    font-size: .68rem;
    font-weight: 750;
    letter-spacing: .02em;
    text-transform: uppercase;
}
.site-drawer-prefs .language-switcher-dropdown {
    position: relative;
    width: 100%;
}
.site-drawer-prefs .lang-dropdown-btn {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 44px;
    padding: .55rem .75rem;
    border: 1px solid rgba(116, 95, 201, .18);
    border-radius: 12px;
    background: #f7f5ff;
    color: #2f2a45;
    font-size: .9rem;
    font-weight: 750;
    cursor: pointer;
}
.site-drawer-prefs .lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 30;
    display: none;
    flex-direction: column;
    gap: .1rem;
    padding: .35rem;
    border: 1px solid rgba(116, 95, 201, .16);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 32px -16px rgba(24, 16, 72, .5);
}
.site-drawer-prefs .lang-dropdown-menu.show {
    display: flex !important;
}
.site-drawer-prefs .lang-dropdown-item {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: .45rem .7rem;
    border-radius: 9px;
    color: #3a3550;
    font-size: .88rem;
    font-weight: 650;
    text-decoration: none;
}
.site-drawer-prefs .lang-dropdown-item.active,
.site-drawer-prefs .lang-dropdown-item:hover {
    color: #5d43d3;
    background: rgba(107, 78, 240, .1);
}
.site-drawer-theme-toggle {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: .55rem;
    width: 100%;
    min-height: 44px;
    padding: .55rem .75rem;
    border: 1px solid rgba(116, 95, 201, .18);
    border-radius: 12px;
    color: #2f2a45;
    background: #f7f5ff;
    font-size: .86rem;
    font-weight: 750;
    cursor: pointer;
}
.site-drawer-theme-toggle:hover {
    border-color: rgba(107, 78, 240, .28);
    color: #5c43cf;
    background: rgba(107, 78, 240, .08);
}
.site-drawer-prefs:has(+ .site-drawer-auth) {
    border-bottom: 0;
    padding-bottom: .35rem;
}
.site-drawer-auth {
    position: relative;
    z-index: 7;
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .55rem;
    padding: .15rem 1rem .85rem;
    border: 0;
    pointer-events: auto;
}
.site-drawer-auth a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: .55rem .7rem;
    border-radius: 12px;
    font-size: .88rem;
    font-weight: 750;
    text-decoration: none;
    touch-action: manipulation;
}
.site-drawer-auth__login {
    border: 1px solid rgba(116, 95, 201, .2);
    color: #3a3550;
    background: #f7f5ff;
}
.site-drawer-auth__register {
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, #7558ec, #5d40d9);
    box-shadow: 0 10px 18px -12px rgba(80, 55, 200, .75);
}
.site-drawer-auth__login:hover {
    border-color: rgba(107, 78, 240, .28);
    color: #5c43cf;
    background: rgba(107, 78, 240, .08);
}
.site-drawer-auth__register:hover {
    color: #fff;
    filter: brightness(1.04);
}
html[data-color-scheme="dark"] .site-drawer-auth__login {
    color: #eeeaff;
    background: rgba(28, 22, 50, .85);
    border-color: rgba(167, 139, 250, .2);
}
html[data-color-scheme="dark"] .site-drawer-auth__register {
    background: linear-gradient(135deg, #9b7ef5, #6d4de0);
}

.site-drawer-utility__account {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .55rem;
    margin-top: .75rem;
    margin-bottom: .5rem;
}
.site-drawer-utility__account a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: .5rem;
    border: 1px solid rgba(116, 95, 201, .15);
    border-radius: 11px;
    color: #5e5776;
    background: rgba(255, 255, 255, .66);
    font-size: .76rem;
    font-weight: 750;
    text-decoration: none;
}
.site-drawer-utility__account .site-drawer-register {
    border-color: transparent;
    color: #fff;
    background: linear-gradient(135deg, #7558ec, #5d40d9);
}
.site-drawer-utility__account .site-drawer-logout { color: #b23b57; }

/* Menu label + nav */
.site-drawer-nav-label {
    margin: .15rem 0 .45rem;
    padding: 0 .35rem;
    color: #1f1b33;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: -.01em;
}
.site-drawer-panel .main-navigation {
    display: flex !important;
    flex: 0 0 auto;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: .2rem;
    width: 100%;
    margin: 0 0 1rem;
    min-width: 0;
    overflow: visible !important;
}
.site-drawer-panel .main-navigation .nav-link {
    display: flex;
    align-items: center;
    gap: .7rem;
    min-height: 46px;
    max-width: none;
    padding: .7rem .8rem;
    overflow: visible;
    border-radius: 12px;
    color: #3a3550;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
}
.site-drawer-panel .main-navigation .nav-link .nav-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    color: #7a70a0;
}
.site-drawer-panel .main-navigation .nav-link .nav-link-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.site-drawer-panel .main-navigation .nav-link:hover,
.site-drawer-panel .main-navigation .nav-link.current-menu-item {
    color: #5d43d3;
    background: rgba(107, 78, 240, .1);
}
.site-drawer-panel .main-navigation .nav-link.current-menu-item .nav-link-icon {
    color: #6b4ef0;
}
.site-drawer-panel .main-navigation .nav-link::after { display: none; }
.site-drawer-panel .main-navigation .nav-link.site-drawer-notifications {
    width: 100%;
    border: 0;
    background: transparent;
    /* Do not use font:inherit — it resets .nav-link font-weight/size on <button>. */
    font-family: inherit;
    font-size: .9rem;
    font-weight: 700;
    line-height: inherit;
    color: inherit;
    text-align: left;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}
.site-drawer-panel .main-navigation .nav-link.site-drawer-notifications .nav-link-text {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}
.site-drawer-panel .main-navigation .site-drawer-nav-badge {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    min-height: 1.25rem;
    padding: 0 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 750;
    line-height: 1;
}
/* Drawer already has a Premium icon — hide the tiny duplicate badge. */
.site-drawer-panel .main-navigation .nav-link-premium-badge {
    display: none !important;
}
.site-drawer-panel .main-navigation .nav-link-premium {
    padding-right: .8rem;
}
.site-drawer-panel .header-drawer-lang { display: none !important; }

/* Quick links + useful */
.site-drawer-extra {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: .15rem;
    padding: .9rem 0 0;
    border-top: 1px solid rgba(116, 95, 201, .12);
}
.site-drawer-extra__group {
    display: flex;
    flex-direction: column;
    gap: .18rem;
}
.site-drawer-extra__group h2 {
    margin: 0 0 .4rem;
    padding: 0 .35rem;
    color: #1f1b33;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: -.01em;
}
.site-drawer-extra__group a {
    display: flex;
    align-items: center;
    gap: .65rem;
    min-height: 42px;
    padding: .55rem .7rem;
    border: 1px solid rgba(116, 95, 201, .14);
    border-radius: 12px;
    color: #625b77;
    background: #faf9ff;
    font-size: .78rem;
    font-weight: 650;
    text-decoration: none;
}
.site-drawer-extra__group a:hover {
    border-color: rgba(107, 78, 240, .28);
    color: #5c43cf;
    background: rgba(107, 78, 240, .08);
}
.site-drawer-extra__group a > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 7px;
    color: #7355df;
    background: rgba(107, 78, 240, .08);
    font-size: .72rem;
}

.site-drawer-cta {
    position: relative;
    overflow: hidden;
    margin-top: .35rem;
    margin-bottom: .35rem;
    padding: 1.1rem .95rem .9rem;
    border: 1px solid rgba(107, 78, 240, .1);
    border-radius: 16px;
    background: linear-gradient(145deg, #f3f0ff, #fbfaff);
}
.site-drawer-cta__stars {
    position: absolute;
    top: .55rem;
    right: .65rem;
    color: #9a80ec;
    font-size: 1.15rem;
    opacity: .85;
    letter-spacing: .15em;
}
.site-drawer-cta strong {
    display: block;
    max-width: 12rem;
    color: #2a2540;
    font-size: .82rem;
    font-weight: 800;
    line-height: 1.35;
}
.site-drawer-cta p {
    max-width: 13rem;
    margin: .4rem 0 .85rem;
    color: #706985;
    font-size: .68rem;
    line-height: 1.45;
}
.site-drawer-cta a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .7rem .8rem;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(135deg, #7355e6, #5c3fd4);
    font-size: .72rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 18px -12px rgba(80, 55, 200, .75);
}
.site-drawer-cta a:hover { color: #fff; }

.site-drawer-backdrop {
    position: fixed !important;
    z-index: var(--site-drawer-z-backdrop) !important;
    inset: 0;
    display: block;
    pointer-events: none;
    opacity: 0;
    background: rgba(13, 10, 31, .38);
    transition: opacity .35s ease;
}
body.site-drawer-open .site-drawer-backdrop {
    pointer-events: auto;
    opacity: 1;
}

body.site-drawer-open {
    overflow: hidden;
    padding-right: var(--site-drawer-scrollbar-compensation, 0px);
}
/* Keep page in place — overlay only. Do NOT disable #page pointer-events:
   if the panel is ever still inside #page, that would make the menu untappable. */
body.site-drawer-open #page {
    transform: none !important;
}
body.site-drawer-open .site-drawer-panel,
body.site-drawer-open .site-drawer-backdrop {
    pointer-events: auto !important;
}
/* Guest overlays sit under the open drawer / are hidden while it is open. */
body.site-drawer-open .jobcv-cqp,
body.site-drawer-open #jobcv-newsletter-consent,
body.site-drawer-open #jobcv-cookie-consent {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

/* Replace three-dot sheet with drawer (keep selectors separate so minifiers
   cannot merge this with the avatar-menu display rule below). */
.header-user-menu .header-dots-btn { display: none !important; }
.header-user-menu .header-dots-dropdown { display: none !important; }
.header-user-menu .header-dots-backdrop { display: none !important; }
.header-user-menu-guest { display: none !important; }
.header-actions > .header-user-menu:not(.header-user-menu-guest) {
    display: inline-flex !important;
    align-items: center;
}

html[data-color-scheme="dark"] .site-drawer-toggle { color: #ded7ff; }
html[data-color-scheme="dark"] .site-drawer-toggle:hover {
    background: rgba(167, 139, 250, .14);
    color: #e9e2ff;
}
html[data-color-scheme="dark"] .site-drawer-panel {
    border-color: rgba(167, 139, 250, .16);
    color: #eeeaff;
    background:
        radial-gradient(circle at 92% 4%, rgba(124, 92, 246, .18), transparent 14rem),
        linear-gradient(180deg, #17132a, #110e1c);
    box-shadow: -22px 0 52px -28px rgba(0, 0, 0, .75);
}
html[data-color-scheme="dark"] .site-drawer-panel .main-navigation .nav-link {
    color: #ddd6f5;
}
html[data-color-scheme="dark"] .site-drawer-panel .main-navigation .nav-link .nav-link-icon {
    color: #9b8fd0;
}
html[data-color-scheme="dark"] .site-drawer-panel .main-navigation .nav-link:hover,
html[data-color-scheme="dark"] .site-drawer-panel .main-navigation .nav-link.current-menu-item {
    color: #d4c8ff;
    background: rgba(167, 139, 250, .16);
}
html[data-color-scheme="dark"] .site-drawer-panel .main-navigation .nav-link.current-menu-item .nav-link-icon {
    color: #c4b5fd;
}
html[data-color-scheme="dark"] .site-drawer-nav-label,
html[data-color-scheme="dark"] .site-drawer-extra__group h2,
html[data-color-scheme="dark"] .site-drawer-cta strong {
    color: #f4f1ff;
}
html[data-color-scheme="dark"] .site-drawer-extra {
    border-color: rgba(167, 139, 250, .14);
}
html[data-color-scheme="dark"] .site-drawer-extra__group a {
    color: #c8c0dd;
    border-color: rgba(167, 139, 250, .14);
    background: rgba(28, 22, 50, .72);
}
html[data-color-scheme="dark"] .site-drawer-extra__group a:hover {
    color: #e4dcff;
    border-color: rgba(167, 139, 250, .28);
    background: rgba(167, 139, 250, .12);
}
html[data-color-scheme="dark"] .site-drawer-extra__group a > span {
    color: #c4b5fd;
    background: rgba(167, 139, 250, .14);
}
html[data-color-scheme="dark"] .site-drawer-cta p {
    color: #b3acc8;
}
html[data-color-scheme="dark"] .site-drawer-cta {
    border-color: rgba(167, 139, 250, .16);
    background: linear-gradient(145deg, #261e48, #151229);
}
html[data-color-scheme="dark"] .site-drawer-cta a {
    background: linear-gradient(135deg, #9b7ef5, #6d4de0);
    box-shadow: 0 12px 22px -12px rgba(124, 92, 246, .7);
}
html[data-color-scheme="dark"] .site-drawer-cta__stars { color: #c4b5fd; }
html[data-color-scheme="dark"] .site-drawer-close {
    color: #d8d2eb;
}
html[data-color-scheme="dark"] .site-drawer-close:hover {
    color: #fff;
    background: rgba(167, 139, 250, .14);
}
html[data-color-scheme="dark"] .site-drawer-prefs {
    border-color: rgba(167, 139, 250, .16);
}
html[data-color-scheme="dark"] .site-drawer-prefs__label {
    color: #a9a3c0;
}
html[data-color-scheme="dark"] .site-drawer-prefs .lang-dropdown-btn,
html[data-color-scheme="dark"] .site-drawer-theme-toggle {
    color: #eeeaff;
    border-color: rgba(167, 139, 250, .2);
    background: rgba(28, 22, 50, .85);
}
html[data-color-scheme="dark"] .site-drawer-theme-toggle:hover {
    color: #e4dcff;
    border-color: rgba(167, 139, 250, .32);
    background: rgba(167, 139, 250, .12);
}
html[data-color-scheme="dark"] .site-drawer-prefs .lang-dropdown-menu {
    border-color: rgba(167, 139, 250, .2);
    background: #1c1730;
    box-shadow: 0 14px 32px -14px rgba(0, 0, 0, .75);
}
html[data-color-scheme="dark"] .site-drawer-prefs .lang-dropdown-item {
    color: #ddd6f5;
}
html[data-color-scheme="dark"] .site-drawer-prefs .lang-dropdown-item.active,
html[data-color-scheme="dark"] .site-drawer-prefs .lang-dropdown-item:hover {
    color: #e4dcff;
    background: rgba(167, 139, 250, .14);
}
html[data-color-scheme="dark"] .site-drawer-utility__account a {
    border-color: rgba(167, 139, 250, .16);
    color: #d8d2eb;
    background: rgba(255, 255, 255, .04);
}
html[data-color-scheme="dark"] .site-drawer-utility__account .site-drawer-register {
    color: #fff;
    background: linear-gradient(135deg, #9b7ef5, #6d4de0);
}
html[data-color-scheme="dark"] .site-drawer-backdrop {
    background: rgba(6, 4, 16, .62);
}

@media (max-width: 720px) {
    :root { --site-drawer-width: min(88vw, 320px); }
    .site-drawer-toggle { width: 40px; height: 40px; }
    .site-drawer-panel,
    .header-nav-wrap.site-drawer-panel {
        max-width: none !important;
    }
    .site-drawer-panel > .site-drawer-utility__top {
        padding: max(1rem, env(safe-area-inset-top, 0px)) 1rem .25rem;
    }
    .site-drawer-prefs {
        padding: .25rem 1rem .8rem;
    }
    .site-drawer-auth {
        padding: .1rem 1rem .8rem;
    }
    .site-drawer-panel__scroll {
        padding: 0 1rem max(1.35rem, env(safe-area-inset-bottom, 0px));
    }
}
@media (prefers-reduced-motion: reduce) {
    .site-drawer-panel,
    .site-drawer-backdrop,
    .site-drawer-toggle,
    .site-drawer-toggle span {
        transition: none !important;
    }
}
