aside {
    position: fixed;
    top: 92px;
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 232px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.16);
    background: rgba(255, 255, 255, 1);
}

.aside__policy-container {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 48px;
    gap: 16px;
    align-self: stretch;
    width: 232px;
    height: 384px;
}

.aside__link-container {
    display: none;
}


/* Media Query für Bildschirmbreite von maximal 768px */
@media(max-width: 768px) {
    aside {
        position: fixed;
        top: revert;
        bottom: 0;
        left: 0;
        width: 100vw;
        max-width: 100vw;
        height: 76px;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        background: var(--white, #FFF);
        box-shadow: 0px -1px 6px 0px rgba(0, 0, 0, 0.10);
        z-index: 999;
    }

    .aside__link-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100vw;
        height: 76px;
        margin-top: 10px;
        padding: 0px 16px;
    }

    .aside__link {
        width: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 15px 0;
        gap: 4px;
    }

    .aside__link:hover {
        background: none;
    }

    .links.active {
        color: var(--bg-color, #4589FF);
        width: auto;
        background: none;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .links {
        color: var(--menu, #42526E);
        font-size: 15px;
        font-weight: 400;
        text-decoration: none;
    }

    .aside__policy-container {
        display: none;
    }
}