body {
    margin: 0;

    background-color:#f5f5f5;
    color:  #111111;

    font-family: sans-serif;
    line-height: 1.6;
}

#app {
    max-width: 960px;

    margin: 0 auto;

    padding: 48px;

    box-sizing: border-box;
}

.about-container {
    display: flex;
    flex-direction: column;

    gap: 16px;
}

.g-section-header {
    margin: 0;

    font-size: 36px;
    font-weight: bold;
}

.g-section-title {
    margin: 0;

    font-size: 28px;
    font-weight: bold;
}

.g-section-body {
    margin: 0;

    font-size: 18px;
}

.g-document {
    display: flex;
    flex-direction: column;

    gap: 24px;
}

.g-document-section {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.g-document-title {
    margin: 0;

    font-size: 32px;
    font-weight: bold;
}

.g-document-p-title {
    margin: 0;

    font-size: 22px;
    font-weight: bold;
}

.g-document-p {
    margin: 0;

    font-size: 16px;
    font-weight: normal;
}

.g-document-bold {
    margin: 0;

    font-size: 16px;
    font-weight: bold;
}

.g-document-divider {
    width: 100%;

    margin: 48px 0;

    border: none;
    border-top: 1px solid #999999;
}

.g-main-layout {
    display: flex;
    flex-direction: row;

    align-items: flex-start;

    gap: 48px;
}

.g-main-content {
    flex: 1;
    min-width: 0;
}

.g-sidebar {
    width: 240px;
    flex-shrink: 0;
}

.g-toc {
    position: fixed;

    top: 48px;
    right: 48px;

    width: 240px;

    box-sizing: border-box;
}

.g-bottom {
    margin-top: 96px;

    display: flex;
    flex-direction: row;

    justify-content: center;

    gap: 24px;
}

.g-bottom-link {
    color: inherit;

    white-space: nowrap;

    text-decoration: underline;
}

.slm-toc-pages {
    display: flex;
    flex-direction: column;

    gap: 8px;

    margin-top: 8px;
    margin-left: 16px;
}

.slm-toc-page-link {
    color: #0066cc;

    text-decoration: underline;

    white-space: nowrap;
}

@media (max-width: 1450px) {

    .g-toc {
        position: static;

        width: 100%;

        margin-top: 48px;
    }

    .slm-toc-pages {
        margin-left: 0;
    }

    .slm-toc-page-link {
        white-space: normal;
        word-break: break-word;
    }
}