html{
    font-size: 16px;
}
*{
    box-sizing: border-box;
}
body{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}
#container{
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 100vh;
    background-color: black;
    color: #ffff00;
}
#menu{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* margin: 0.4rem 0.5rem 0.7rem; */
    margin: 18px 18px 1.125rem;
    align-items: flex-start;
}
@media (min-width: 1000px){
#menu{
    /* margin: 0.7rem 0.9rem 0.9rem; */
    margin: 27px 27px 1.125rem;
    height: 1.1rem;
}
}
#menuLinks{
    display: flex;
    flex-direction: column;
}
@media (min-width: 1000px){
#menuLinks{
    flex-direction: row;
    gap: 0.9rem;
}
}
#sliderSwitch{
    display: flex;
    align-items: center;
    cursor: pointer;
}
@media (min-width: 1000px){
#sliderSwitch{
    margin-top: -0.6rem;
}
}
.smallA{
    font-size: 16px;
}
.bigA{
    font-size: 32px;
}
#fontSlider{
    width: 100%;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: black;
    box-shadow: 0px 0px 6px #00000029;
    gap: 1rem;
    padding: 0.25rem 0.5rem;
    display: none;
    z-index: 10;
    
}
@media (min-width: 1000px){
#fontSlider{
    padding: 0.1rem 0.9rem;
}
}
#fontSlider.visible{
    display: flex;
}
#fontSlider>input{
    width: 100%;
}
a{
    text-decoration: none;
    color: #ffff00;
}
a:hover, a.active{
    text-decoration: underline;
}
a:visited{
    color: #ffff00;
}
.subMenu{
    margin: 1.125rem 18px 1.125rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: white;
}
.subMenu p:last-child{
    margin-bottom: 0;
}
@media (min-width: 1000px){
.subMenu{
    margin: 1.125rem 27px 1.125rem;
    max-width: calc(50% - 33px);
}
}
@media (min-width: 1920px){
.subMenu{
    max-width: calc(33% - 18px);
}
}
.articleList{
    display: flex;
    flex-direction: column;
}
.articleContainer{
    margin: 18px 18px 2.25rem;
    
}
.articleCard, .articleDetailCard{
    display: flex;
    flex-direction: column;
}
.articleDetailCard>.cardHeading{
    color: white;
}
.articleCard{
    margin: 0.8rem 0rem 0.8rem;
}

.articleContainer{
    /* margin-top: 0; */
}
@media (min-width: 1000px){
    .articleContainer{
        margin: 1.125rem 27px 1.125rem;
        width: 50%
    }
    .articleCard{
        margin: 0.8rem 0rem 0.8rem;
        
    }
.articleContainer{
    /* margin-top: 0; */
}
}
@media (min-width: 1920px){
    .articleContainer{
        width: 33%
}
}
.articleCard>a{
    color: black;
    text-decoration: none;
    color: white;
}
.cardHeading, .articleHeading{
    font-weight: bold;
    margin-top: 0.4rem;
}
.cardAuthors{
    margin: 0 0 0.5rem;
}
.cardAuthors>a{
    text-wrap: nowrap;
}
.cardImage, .articleDetailCardImage{
    position: relative;
    cursor: pointer;
    aspect-ratio: 16 / 9;
}
.articleDetailCardImage{
    cursor: pointer;
}
.cardControls{
    position: absolute;
    bottom: 1px;
    left: 1px;
    color: white;
    display: flex;
    gap: 3px;
    align-items: center;
    width: calc(100% - 2px);
    padding: 16px 9px;
    background: linear-gradient(transparent, rgba(0,0,0,0.62));
}
.cardControls>span{
}
.cardImage>iframe, .articleImage>iframe, .articleDetailCardImage>iframe{
    display: block;
    width: 100%;
    height: 100%;
    border: 0.1rem solid black;
}
@media (min-width: 1000px){
    .articleDetailCardImage{
        height: auto;
        aspect-ratio: 16 / 9;
    }
.cardImage>iframe:hover, .articleImage>iframe:hover, .articleDetailCardImage>iframe:hover{
    border: 0.1rem solid #ffff00; 
}
}
@media (min-width: 1920px){
    .articleDetailCardImage{
    }
}
.articleImage>img{
    cursor: pointer;
}
.articleImage{
    margin-bottom: 0.5rem;
}
.cardText>p{
    margin: 0.5rem 0 0;
}

.cardText {
  /* display: block; /* Fallback for non-webkit */ */
  /* display: -webkit-box; */
  /* height: calc(1rem*1.3*3) ; /* Fallback for non-webkit */ */
  /* margin: 0 auto; */
  /* -webkit-line-clamp: 3; */
  /* -webkit-box-orient: vertical; */
  /* overflow: hidden; */
  /* text-overflow: ellipsis; */
}
@media (min-width: 1000px){
.cardText>p{
}
}
#jsFootnotes{
}
#jsImages{
}
.swiper {
    position: fixed !important;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: none !important;
    background-color: black;
}
.swiper.visible{
    display: block !important;
}
#swiperNext, #swiperPrev, .swiperClose{
    position: absolute;
    cursor: pointer;
    color: white;
    z-index: 10;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 1000px){
#swiperNext, #swiperPrev, .swiperClose{
    width: 4.5rem;
    height: 4.5rem;
}
}
.swiperClose{
    right: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
}
@media (min-width: 1000px){
.swiperClose{
    width: 4rem;
    height: 4rem;
}
}
#swiperPrev{
    left: 0;
    top: 50%;
    width: 3.5rem;
}
@media (min-width: 1000px){
#swiperPrev{
    width: 4.5rem;
}
}
#swiperNext{
    right: 0;
    top: 50%;
}
@media (min-width: 1000px){
#swiperNext{
    width: 3.5rem;
}
}
.swiper-slide{
    /* margin: 1rem; */
}
.swiper-slide img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
.swiper-slide-img-container{
    height: calc(100% - 1.5rem);
    flex: 1;
    /* overflow: hidden; */
    display: flex;
    align-items: flex-start;
}
/* .swiper-slide-zoomed .swiper-slide-img-container{ */
/*     overflow: visible; */
/* } */
.swiper-button-disabled{
    display: none !important;
}
.swiper-zoom-container{
    
}
.swiper-slide-content{
    flex-direction: column;
    width: 100vw;
    width: 100dvw;
    
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    padding: 0.5rem;
}
@media (min-width: 1000px){
.swiper-slide-content{
    padding: 0.9rem;
}
}
.swiper-caption{
    flex-shrink: 0;
    color: white;
    text-align: left;
    min-height: 1rem;
}
#articleContents{
    display: flex;
    flex-direction: column;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}
.citation{
    display: none;
}
fieldset {
    border: none;
    margin: 0;
    padding: 0;
}
fieldset input {
    margin: 0;
    padding: 0;
}
#citations{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    box-shadow: 0px 0px 6px #00000029;
    gap: 0.8rem;
    padding: 0.5rem 0.5rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
}
@media (min-width: 1000px){
#citations{
    padding: 0.7rem 0.9rem 1.6rem;
}
}
#citations.visible{
    display: flex;
}
.articleDate{
    margin-bottom: 0.9rem;
}
.articleExtras{
    margin-bottom: 1.5rem;
}
#citationButton{
    color: blue;
    cursor: pointer;
}
#citationButton:hover{
    text-decoration: underline;
}

.articleSubHead{
    color: blue;
    margin-top: 0rem;
    margin-bottom: 1rem;
    cursor: pointer;
    padding-top: 0.7rem;
}
.articleText{
    margin-bottom: 0.8rem;
    
}
.articleText ol{
    padding-left: 1rem;
}
.articleText>p{
    margin-bottom: 0.8rem;
}
.articleImageCaption{
    margin-top: 0rem;
    margin-bottom: 1.2rem;
}
.articleImageCaption.full{
    margin-bottom: 0.9rem;
    
}
.articleFootnotes{
    display: flex;
    flex-direction: column;
    margin-top: 1.7rem;
}
.footnoteItem{
    display: flex;
    flex-direction: row;
    width: 100%;
}
.footnoteNumber{
    flex-basis: 3rem;
    flex-shrink: 0;
}
.footnoteItem p{
    margin-top: 0;
    margin-bottom: 0;
}
#copyToClipboard{
    color: blue;
    cursor: pointer;
}
#copyToClipboard:hover{
    text-decoration: underline;
}

.jsFootnotes{
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: white;
    box-shadow: 0px 0px 6px #00000029;
    gap: 1rem;
    padding: 0.5rem 0.5rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
}
@media (min-width: 1000px){
    .jsFootnotes{
        padding: 0.7rem 0.9rem 1.6rem;
    }
    .jsFootnotes>.footnoteItem{
        width: calc(66% + 2rem);
    }

}
.jsFootnotes.visible{
    display: flex;
}


input[type=range] {
  -webkit-appearance: none;
  margin: 18px 0;
  width: 100%;
    background-color: black;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  background: #ffff00;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 2px #ffff00;
  border: 1px solid #ffff00;
  height: 12px;
  width: 12px;
  border-radius: 12px;
  background: #000;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -6px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #ffff00;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  background: #ffff00;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 2px #ffff00;
  border: 1px solid #ffff00;
  height: 12px;
  width: 12px;
  border-radius: 12px;
  background: #000;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #ffff00;
}
input[type=range]::-ms-fill-upper {
  background: #ffff00;
}
input[type=range]::-ms-thumb {
  box-shadow: 0px 0px 2px #ffff00;
  border: 1px solid #ffff00;
  height: 12px;
  width: 12px;
  border-radius: 12px;
  background: #000;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #ffff00;
}
input[type=range]:focus::-ms-fill-upper {
  background: #ffff00;
}

.jsContents{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    box-shadow: 0px 0px 6px #00000029;
    padding: 0.5rem 0.5rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
}
@media (min-width: 1000px){
    .jsContents{
        padding: 0.7rem 0.9rem 1.6rem;
    }
    .jsContents>.footnoteItem{
        width: calc(66% + 2rem);
    }

}
.jsContents.visible{
    display: flex;
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 40;
    font-size: 1.5rem !important;
}

.cardText, .videoText{
    color: white;
}
@media (min-width: 1000px){
.videoText{
}
}

.vimeoOverlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    display: none;
    z-index: 2;
}
.vimeoOverlay.visible{
    display: block;
}
.vimeoContainer{
    position: absolute;
    width: 100%;
    height: 100%;
}
@media (min-width: 1000px){
.vimeoContainer{
}
}
#listGrid{
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-template-columns: 1fr;
    grid-gap: 0.5rem;
    margin: 18px 18px 1.125rem;
}
@media (min-width: 1000px){
#listGrid{
    grid-gap: 0.6rem;
    margin: 27px 27px 1.125rem;
    grid-template-columns: 1fr 1fr;
}
}
@media (min-width: 1920px){
#listGrid{
    grid-template-columns: 1fr 1fr 1fr;
}
}


.aboutContainer{
    display: flex;
    flex-direction: column;
}
#aboutText>p, #imprintText>p, #privacyText>p{
    margin-top: 0;
}
#aboutText{
    margin: 0 0 1.125rem;
    color: white;
}
#aboutText>a{
    color: #ffff00;
}
@media (min-width: 1000px){
#aboutText{
}
}
#imprintText, #privacyText{
    display: none;
    margin: 1.125rem 0 1.125rem;
    color: white;
}
#imprintText>a, #privacyText>a{
    color: #ffff00;
}
#imprintText.visible, #privacyText.visible{
    display: block;
}
@media (min-width: 1000px){
#imprintText, #privacyText{
}
}
.aboutLink{
    color: #ffff00;
    cursor: pointer;
}
.aboutLink.active, .aboutLink:hover{
    text-decoration: underline;
}
#aboutLinkContainer{
    display: flex;
    gap: 0.9rem;
    margin: 0 0 1.125rem;
}

#footer{
    margin: 18px;
}
@media (min-width: 1000px){
#footer{
    margin: 1.125rem 27px 27px;
}
}
#footerLinks{
    display: flex;
    gap: 0.9rem;
}

