#aside-desktop {
    position: sticky;
    top: 0;
    grid-column: 1/4;
    height: 100vh;
    padding: 1rem 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#aside-desktop a {
    margin-bottom: .25em;
}

body.dark #aside-desktop a {
    color: white;
}

.aside-desktop--pages:hover a,
.aside-desktop--info:hover a {
    color: gray !important;
}

.aside-desktop--pages a:hover,
.aside-desktop--info a:hover {
    color: black !important;
}

body.dark .aside-desktop--pages a:hover,
body.dark .aside-desktop--info a:hover {
    color: white !important;
}

/* PAGES */
.aside-desktop--pages a {
    color: gray;
    display: block;
}

.aside-desktop--pages__edition > a {
    grid-column: 1/2;
}

.aside-desktop--pages__edition > div {
    grid-column: 2/-1;
}


/* INFO */
body.dark .aside-desktop--info address p {
    color: white;
}

.aside-desktop--info > * {
    margin-top: 1.5rem;
}

.aside-desktop--info a {
    display: block;
}


/*
TABLET
*/
@media only screen and (max-width: 1024px) {
    #aside-desktop {
        display: none;
    }
}