#default-page {padding: var(--size-s) var(--size);}

#default-page > * {grid-column: 1/-1;}


/* 
TITLE
*/
#default_p-title {
    position: sticky;
    top: calc(var(--size-xl) + var(--size-s));
    margin-bottom: var(--size-xxl);
    transform: translateY(-2px);
}
@media only screen and (min-width: 1096px) {
    #default_p-title {
        top: var(--size-s);
        transform: translateY(-4px);
    }
}




/* 
ANCHORS
*/
#default_p-anchors {
    position: sticky;
    top: 17.5rem;
    align-self: flex-start;
    grid-column: 1/4;
    max-width: 20rem;
    padding-right: var(--size-m);
}
@media only screen and (min-width: 1096px) {
    #default_p-anchors {
        top: 12.5rem;
    }
}

#default_p-anchors button {
    margin-bottom: var(--size-s);
    transition: color 200ms ease-in-out;
}

@media (hover: hover) {
    #default_p-anchors button:hover {color: var(--color);}
}




/* 
FEED
*/
@media only screen and (min-width: 768px) {
    #default_p-feed {grid-column: 4/-1;}
}