body {background-color: var(--c-pink);}

header {display: none;}
@media only screen and (min-width: 1024px) {
    header {
        position: fixed;
        top: 0;
        right: 3rem;
        left: 0;
        display: flex !important;
        justify-content: space-between;
        z-index: 10;
    }

    header img {
        height: 4rem;
        width: auto;
    }
}

main {
    margin-top: 4rem;
    width: 100%;
    min-height: 100vh;
    background-color: var(--c-pink);
}
@media only screen and (min-width: 1024px) {
    main {
        min-width: calc(100vw - 3rem);
        width: calc(100vw - 3rem);
        max-width: calc(100vw - 3rem);
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        column-gap: 1rem;
        margin-top: 16rem;
    }

    main .t-body {font-size: 1rem !important;}

    .sec-page-nav {
        position: sticky;
        top: 17rem;
        align-self: flex-start;
        grid-column: 1/3;
        height: fit-content;
    }
    .sec-page-content {grid-column: 3/-3;}

    .sec-page-nav a:first-of-type {margin-bottom: 1em;}
}

footer {
    min-width: 100vw;
    width: 100vw;
    max-width: 100vw;
    padding-bottom: 3rem;
}
@media only screen and (min-width: 1024px) {
    footer {
        min-width: calc(100vw - 3rem);
        width: calc(100vw - 3rem);
        max-width: calc(100vw - 3rem);
        padding-bottom: 0;
    }
}

.sec-page-content > * {margin-bottom: 2em;}

#footer-bottom a {color: black !important;}