tr {
    border-bottom: var(--border);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: calc(var(--m)* 2);
    height: 100px;

}

.table-row:hover {
    background-color: rgba(var(--fg), 0.1);
}
.table-rowtags a {
    width: 100%;
    display: block;
    position: relative;
    /* background-color: red; */
    height: 100px;
    display: flex;
    align-items: center;
}
.table-header {
    pointer-events: none;
    min-height: 50px;
    height: auto;
    position: sticky;
    top: 0;
    background: rgb(var(--bg));
    z-index: 200;
}

.table-header .tag {
    pointer-events: auto;
}


td, th {
    width: 16.67%;
}
td.title, th.title  {
    width: 50%;
    flex-grow: 2;
}

.interview-preview-image {
    width: 200px;
    height: auto;
    transition: 0.35s all ease-out;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    pointer-events: none;
}

.window .type-xl {
    max-width: 100%;
    position: relative;
    
}
.interview-person {
    user-select: none;
    width: 30px;
    display: block;
    float: left;
    /* margin-right: 1rem; */
    margin-left: calc(100vw/24 * -1);
    line-height: calc(var(--font-p) * 1.3);
    
}
.interview-answer .interview-person  {
    /* color: var(--purple); */

    /* position: sticky;
    display: block;
    top: 0; */
}
.interview-question .interview-person  {
    /* color: var(--red); */
    color: inherit;

}
.interview-question {
    /* color: var(--red); */
    opacity: 0.5;
    /* background-color: var(--highlight); */
    /* background-color: var(--red); */
    /* border-bottom: 1px solid var(--red); */
}
.paragraph {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: stretch;
    border-right: var(--border);

    /* margin-bottom: calc( var(--font-p) * 1.3); */
}
.paragraph .paragraph-text {
    /* width: calc(100% / 8*6); */
    text-indent: calc(100vw/24);
    margin-bottom: 0;

}
.paragraph aside {
    color: inherit;
    background-color: transparent;
    border-radius: 0;
    border-right: var(--border);

    /* width: calc(100% / 8*2); */
    /* background-color: rebeccapurple; */
}
.paragraph a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgb(var(--fg));
}
.paragraph u {
    text-decoration: none;
}
aside * {
    display: block;
    position: sticky;
    top: calc(var(--header) + var(--m));
    /* background: yellow; */
}

.interview strong {
    /* background: var(--gradient); */
    /* color: rgb(var(--bg));
    border-radius: 10px;
    padding: 0 5px; */
    /* border-bottom: 1px solid var(--purple); */
    /* color: var(--gradient); */
    color: var(--purple);
    
    /* line-height: calc(var(--font-p) * 1.3); */
    /* font-size: var(--font-h2);
    line-height: 1.0;
    position: relative;
    width: 100%;
    display: block; */
    /* text-decoration: underline; */
}
/* .interview > p:nth-of-type(2n) u {
    color: red;
} */
.introduction {
    /* background-color: red; */
    padding: calc(100vw/12);
    font-family: 'Suisse Intl Mono';
    font-size: var(--font-caption);
    text-indent: 0px !important;
}
.interview-side-img {
   position: sticky;
   width: 100%;
   top: calc( var(--header) + var(--m));
}
.interview-side-img.animation {
    width: 100%;
}

.interview strong::selection {
	background-color: var(--purple);
	color: rgb(var(--bg));
}

iframe.inline-text {
    width: 100%;
    position: relative;
    float: left;
    display: block;
    height: 500px;
    margin: calc(var(--font-p) * 1.3) 0;
}


.interview-image {
    position: relative;
    width: 100%;
    display: block;
    float: left;
    height: auto;
    margin-bottom: var(--m);
}
.interview-image:last-of-type {
    margin-bottom: 0;
}

/* Width and height */

.interview {
    width: calc(100% / 12 * 8);
 
}
.interview-images {
    padding-top: var(--m);
    width: calc(100% / 12 * 4);
    /* display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: var(--m);*/
    position: sticky; 
    float: right;
    display: block;
    margin: 0 auto;
    top: calc(var(--header) );
    /* margin-right: calc(100vw/12* 2); */
}

.paragraph-text {
    width: calc(100% / 8 * 6);
}
.paragraph-details {
    width: calc(100% / 8 * 2);
}

.paragraph:last-of-type .paragraph-text {
    padding-bottom: calc(var(--font-p)  * 1.3);
}

.interview code {
    color: inherit;
}
.red-bg {
    background-color: rgb(var(--red));
}
.pink-bg {
    background-color: var(--pink);
    color: rgb(var(--red));
}