/*--------------------------------------------------------------
Progress bar
--------------------------------------------------------------*/
.progress {
    background: linear-gradient(to right, var(--c1)  var(--scroll), transparent 0);
    background-repeat: no-repeat;
    position: fixed;
    width: 100%;
    height: .5rem;
    z-index: 99;
    top: 0;
    left: 0;
}

/*--------------------------------------------------------------
Subhero
--------------------------------------------------------------*/
.mainTop {
    padding-top: var(--mainTop);
    padding-bottom: var(--mb);
}

.mainTop .titLe {
    font-size: var(--fu);
    font-style: italic;
}

.mainTop .teaser {
    margin-bottom: 0;
}

#page .mainTop .teaser {
font-size: var(--f3);
    font-weight: bold;
    margin-bottom: 0;
}

.mainTop.page {
    padding-bottom: var(--mainBot) ;
}


/*--------------------------------------------------------------
single
--------------------------------------------------------------*/

#single .titles .teaser {
    /*  width: calc(var(--teaserWidth));*/
    display: block;
    position: relative;
    margin: 0 auto 2.4rem auto;
}

/* Text variations  */
.txt h2, .txt h3, .txt h4, .txt h5, .txt h6 {
    margin-bottom: 1.6rem;
    margin-top: 0;
}

#page .txt p {
    margin: 0 auto 2.4rem auto;
}
#single .txt p {
    display: block;
    position: relative;
    margin: 0 auto 2.4rem auto;
    line-height: var(--lhP);
}

.txt p + h2, .txt p + h3, .txt p + h4, .txt p + h5, .txt p + h6 {margin-top: 4rem}
.txt p:last-of-type, .txt.m-0 p {margin:  0 auto 0 auto}
.txt p:empty {display: none}

/* Uls */

.txt ul p {  margin: 0;}
.txt ul {
    /*   max-width: calc(var(--pWidth));*/
    margin: 0 auto 2.4rem auto;
    list-style: none;}
.txt ul li {    margin: 0 0 .4rem;
    display: flex;
    column-gap: var(--gapX);
}

.txt ul li:before {
    content:"•";
    color: var(--black)
}

.txt ul.none li:before {
    display: none;
}

.txt ul ul {
    max-width: 100%;
    margin: 0;
    padding: .8rem 0;
}


.txt ol {
    padding: 0;
    margin: var(--mb) 0 calc(var(--mb) * 2);
    list-style-type: none;
}

.txt ol li {
    column-gap: var(--gapX);
    display: flex;
    counter-increment: step-counter;
    margin: 0;
}


.txt ol li::before {
    content: counter(step-counter)'. ';
    display: inline-block;
    font-weight: bold;
    position: relative;
}

/*--------------------------------------------------------------
tables
--------------------------------------------------------------*/

table {
    font-size: var(--f5);
    max-width: -moz-fit-content;
    max-width: fit-content;
    overflow-x: auto;
    display: block;
    color: var(--black) !important;
    border: none !Important;
}
table tr th,. table tr td {
    padding: .8rem  !Important;
}


table span {
    color: var(--black) !important;
}

/*--------------------------------------------------------------
Author
--------------------------------------------------------------*/

.author {
    margin-top: calc(var(--mb) * 2);
    margin-bottom: var(--mb);
    background: var(--gray-dark);
    display: block;
    padding: var(--paD);
    border-radius: var(--roUnd-);
}

.author .titLe {
    display: block;
    font-size: var(--f3);
}