html {
    scroll-behavior: smooth;
}

#page-content {
    background-color: #F6F6F6;
    color: #141414;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 1em;
}

#qsg_header {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.08px;
}

#product_description {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 116.667% */
}

#deepl-message {
    border: 1px solid black;
}

/* toc */
#mobile-toc-toggle {
    height: 60px;
    width: 60px;
    background: white;
    border-radius: 50%;
    padding: 5px;
    position: fixed;
    bottom: 10em;
    right: 2em;
    border: 1px solid #ece81a;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

#table_of_contents ol {
    list-style-type: none;
}

/* qsg content */
#page-content a {
    color: #000;
    text-decoration: underline;
}

/* the double declaration is needed due to rich text */
.streamfield h2,
.streamfield h2 p{
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 2.4px;
}

.streamfield h3,
.streamfield h3 p {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 120% */
}

/* tables */
.streamfield table td, 
.streamfield table th {
    border-top: 1px solid var(--Vivid-Grey, #5F626B);
    border-right: 1px solid var(--Vivid-Grey, #5F626B);
    border-left: 1px solid var(--Vivid-Grey, #5F626B);
}

/* table of contents section */
#table_of_contents {
    background-color: #F6F6F6;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: auto;
    z-index: 5;
    overflow-y: scroll;
    max-height: 100vh;
}

#more_articles {
    display: flex;
    height: 48px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border: 1px solid #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 1.6px;
}

@media (min-width: 1280px) {
    /* content */
    .streamfield, 
    .streamfield p {
        font-size: 18px;
    }
}
@media (min-width: 1600px) {
    /* general */
    #page-content {
        display: flex;
        gap: 32px;
        flex-direction: row;
        justify-content: center;
        padding: 0 50px;
        padding-bottom: 1em;
        padding-top: 80px;
    }

    /* table of contents */
    #table_of_contents {
        display: block !important;
        width: 100%;
        max-width: 450px;
        position: -webkit-sticky;
        position: sticky;
        top: 80px;
        align-self: flex-start;
        z-index: 0;
        max-height: 85vh;
    }

    #mobile-toc-toggle {
        display: none;
    }

    #toc-parent-list {
        padding-left: 0;
    }

    #table_of_contents .active {
        background: #D4D8DA;
    }

    #table_of_contents a {
        text-decoration: none;
    }

    .primary-toc p,
    .primary-toc a {
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

    .secondary-toc p {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    /* article */
    #article_content {
        margin: 0;
    }
}