.top {
    position:sticky;
    top:47px;
    background-color: white;
    width: calc(100% + 24px);
    transform: translateX(calc(var(--padding)*-1));
   
}

#progressContainer {
   position: absolute;
   width: 100%;
   background-color: white;
   height: 5px;
}

.whiteBg {
    position:absolute;
    width: 100%;
    background-color: black;
    height: 1px;
    transform: translateY(5px) ;
}

.progress {
    width:100%;
    height:5px;
    position: relative;
    background-color: black;
    transform: translateY(2.5px) translateX(-100%);
}

.topic__row {
    grid-column-start: 1;
    grid-column-end: 11;
}

.topic__content h2, p{
    margin-bottom: var(--padding);
}

.block {
    grid-column-start: 1;
    grid-column-end: 11;
}

.block-type-quote {
    grid-column-start: 2;
    grid-column-end: 11;
}

.topic__references {
    margin-left: 12px;
}

.topic__references li {
    list-style: disc;
}

.topic__references li::marker {
    margin-left: 0;
}

.topic__reference__title {
    font-weight: 700;
}

.topic__references li  {
    margin-bottom: 0;
}


.topic__row h1 {
    margin:0;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 128px;
}

.topic__references li span a {
    text-decoration: underline;
}

.topic__row h4 {
    font-weight: 400;
}


@media screen and (min-width: 60rem) {
    .topic__row {
        grid-column-start: 3;
        grid-column-end: 11;
    }

    .block {
        grid-column-start: 3;
        grid-column-end: 11;
    }

    .block-type-quote {
        grid-column-start: 4;
        grid-column-end: 11;
    }

    .top {
        width: calc(100% + 48px);
        transform: translateX(calc(var(--padding)*-1));
        top:64px;
    }
    
    .top {
        top: 88px;
    }
    
    
}

