.site-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(var(--white-color), 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobmenu {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 280px;
    max-width: 50vw;
    width: 100%;
    z-index: 1000;
    height: 100vh;
    background-color: rgb(var(--dark-color));
    color: rgb(var(--white-color));
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}


.site-overlay--active, .mobmenu--active {
    opacity: 1;
    visibility: visible;
}

.mobmenu__wrapper {
    height: 100%;
    overflow-y: auto;
}

.mobmenu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    padding: 0;
    width: 48px;
    height: 48px;
    background-color: rgb(var(--dark-color));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border-radius: 50%;
    border: 1px solid rgb(var(--white-color), 0.1);
}

.mobmenu-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobmenu__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.mobmenu-item__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobmenu-item__more {
    background: none;
    border: none;
    width: 18px;
    height: 18px;
    display: flex;
    padding: 3px;
    transform: rotate(-90deg);
}

.mobmenu-item--open > .mobmenu-item__wrapper > .mobmenu-item__more {
    transform: rotate(0);
}

.mobmenu-item > .mobmenu-list {
    display: none;
    padding: 16px 0;
    margin: 16px 0;
    border-top: 1px solid rgb(var(--white-color), 0.1);
    border-bottom: 1px solid rgb(var(--white-color), 0.1);
}

.mobmenu-item--open > .mobmenu-list {
    display: flex
}

.mobmenu-link {
    text-decoration: none;
    font-size: 16px;
}