.page__container {
    width: 90%;
    margin: 0 auto 0 auto;
    padding-bottom: 3rem;
}

.page__header {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--grey-200);
    margin-bottom: 1.5rem;
}

.page__heading {
    font-size: var(--text-xl);
}

.page__description {
    margin-top: 1rem;
    color: var(--slate-700);
    font-size: var(--text-base);
    line-height: 1.5;
}

.page__subheading {
    font-size: var(--text-lg);
    /*margin-top: 1.5rem;*/
    margin-bottom: 0.5rem;
}

.page__section {
    margin-bottom: 1.5rem;
}

.page__content {
    line-height: 1.5;
    font-size: var(--text-sm);
}

.page__content p {
    margin-bottom: 0.875em;
    color: var(--slate-700);
}

.page__link {
    text-decoration: underline;
    color: #1d4ed8;
}

.page__link:hover {
    color: #2563eb;
}

@media only screen and (min-width: 993px) {
    .page__container {
        width: 60rem;
    }

    .page__header {
        width: 60rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .page__heading {
        font-size: var(--text-3xl);
    }

    .page__content {
        /*font-size: var(--text-base);*/
    }
}

/* Sidemenu Page Layout
末末末末末末末末末末末末末末末末末末末末末末末末末 */
.sidemenu-page__header {
    padding: 2rem 0 1rem 0;
    border-bottom: 1px solid var(--grey-200);
    margin-bottom: 3rem;
}

.sidemenu-page__heading {
    font-size: var(--text-lg);
    margin-bottom: 0.75rem;
}

.sidemenu-page__description {
    font-size: var(--text-sm);
    color: var(--slate-700);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}


.sidemenu-page__layout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    min-height: calc(100vh - 8.5rem);
}

.sidemenu-page__side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidemenu-page__section {
    padding-bottom: 2.5rem;
}

.sidemenu-page__section--border {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--slate-200);
}

@media only screen and (min-width: 1200px) {
    .sidemenu-page__layout {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 2.5rem;
    }

    .sidemenu-page__side {
        display: block;
        width: 20rem;
    }

    .sidemenu-page__main {
        flex: 1;
    }
}