.aside {
    position: sticky;
    top: 30px;
    width: 240px;
    max-height: 100vh;
}

.policyItem {
    padding: 10px;
    border-radius: 8px;
}
.activeItem {
    background: green;
}
.asideLinkGeneral {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    padding: 8px;
    text-decoration: none;
    box-sizing: border-box;
    background-color: transparent;
    border-radius: 5px;
    transition: 150ms ease-out;
    font-size: 16px;
    font-weight: 500;
}
.asideList {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px 0;
    font-size: 14px;
}
.active {
    background: rgba(0, 240, 50, 0.23);
}
.arrow {
    min-width: 10px;
    max-width: 10px;
    height: 12px;
}
.asideLink {
    display: flex;
    align-items: center;
    gap: 5px;
    stroke-width: 4;
    font-weight: 400;
}
.asideLink path {
    stroke: #888;
    stroke-width: 4;
    transition: all 0.3s;
}

.asideLink:hover > svg path {
    stroke: var(--green);
}

.asideLink:hover a,
.asideLink:hover p {
    transition: all 0.3s;
}
.asideLink:hover > a,
.asideLink:hover > p {
    color: var(--green);
}

.asideToggle {
    display: flex;
    align-items: center;
    gap: 5px;
}
.aside {
    width: 240px;
    transition: transform 0.3s ease;
}

.burgerButton {
    background: var(--green);
    font-size: 24px;
    padding: 6px;
    color: #fff;
}

.closeButton {
    display: none;
    background: none;
    font-size: 24px;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
}
.asideLinkToogle {
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
}
.asideListLine {
    padding-left: 20px;
}

.asideList {
    margin-left: 1rem;
    display: none;
}
.asideList.open {
    display: block;
}

.asideListLine {
    margin-left: 2rem;
}
.hidden {
    display: none;
}

.asideLinkGeneral.active {
    font-weight: bold;
    color: #000;
}
.asideLink.toggle {
    cursor: pointer;
    margin: 0.5rem 0;
    font-weight: 500;
}

@media (max-width: 1120px) {
    .burgerButton {
        display: block;
    }

    .aside {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 240px;
        background: white;
        z-index: 999;
        transform: translateX(-100%);
        padding: 20px;
        overflow-y: auto;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .aside.open {
        transform: translateX(0);
    }

    .closeButton {
        display: block;
    }

    .policy {
        grid-template-columns: 1fr !important;
    }
}
