/* ===== Opus Vitae – eigenes Off-Canvas-Menue ===== */
#ov-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(17, 17, 17, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease, visibility .5s ease;
}
#ov-menu-overlay.ov-open {
    opacity: 1;
    visibility: visible;
}

#ov-offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    width: min(90vw, 460px);
    background: #f2f2f2;
    box-shadow: -8px 0 40px rgba(0, 0, 0, .12);
    transform: translateX(100%);
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}
#ov-offcanvas.ov-open {
    transform: translateX(0);
}

#ov-menu-close {
    position: absolute;
    top: 26px;
    left: 21%;
    background: none;
    border: none;
    margin: 0;
    padding: 6px;
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
    color: #5F5B5B;
    transition: none;
}

#ov-offcanvas ul {
    list-style: none;
    margin: 0;
    padding: 40px 21%;
}
#ov-offcanvas li {
    margin: 0;
}
#ov-offcanvas a {
    display: inline-flex;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #5F5B5B;
    text-decoration: none;
    padding: 13px 0;
    transition: none;
}
#ov-offcanvas a:hover,
#ov-offcanvas a:focus {
    color: #5F5B5B;
    text-shadow: .45px 0 0 currentColor, -.45px 0 0 currentColor;
}
#ov-offcanvas li.ov-sub a::before {
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #4C7A3C;
    margin-right: 16px;
    flex: 0 0 auto;
}

