@charset "UTF-8";
@-webkit-keyframes hideshow {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hideshow {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes animatedBackground {
  0% {
    background-position: 0;
  }
  40% {
    background-position: 0;
  }
  50% {
    background-position: 10px;
  }
  60% {
    background-position: 0;
  }
  100% {
    background-position: 0;
  }
}

@keyframes animatedBackground {
  0% {
    background-position: 0;
  }
  40% {
    background-position: 0;
  }
  50% {
    background-position: 10px;
  }
  60% {
    background-position: 0;
  }
  100% {
    background-position: 0;
  }
}

@keyframes hideshow {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

ul {
  padding: 0;
  margin: 0;
}

ul li ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  position: absolute;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: 0.4s cubic-bezier(0, -0.55, 0.265, 1);
  transition: 0.4s cubic-bezier(0, -0.55, 0.265, 1);
  -webkit-transform-origin: top;
  transform-origin: top;
}

ul li:hover ul {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

ul li {
  display: inline-block;
  margin: 0;
  padding: 0 1vw 0 0;
  margin-bottom: 1vh;
}

.site-header {
  left: 0;
  right: 0;
  z-index: 5001;
  height: 0;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.site-header .icons {
  position: fixed;
  /* top: 2vh;
  right: 2vw; */
  top: 1rem;
  right: 1rem;
  z-index: 9000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.site-header .icons .header-icon {
  width: 70px;
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin: 0 20px;
  cursor: pointer;
  text-align: center;
}


@media (max-width: 599px) {
  .site-header .icons .header-icon {
    width: 50px;
    margin: 0 10px 0 0;
  }
}

.site-header .icons .header-icon:hover .hidden {
  opacity: 1;
  -webkit-transition: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin-top: 0;
}

.site-header .icons .header-icon svg {
  width: 70px;
}

@media (max-width: 599px) {
  .site-header .icons .header-icon svg {
    width: 40px;
  }
}

.site-header .icons .header-icon .hidden {
  text-align: center;
  opacity: 0;
  margin-top: -10px;
  -webkit-transition: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.site-header .icons .header-icon .collection-number {
  background-color: whitesmoke;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: black;
  border: 2px solid black;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: -10px;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  font-family: "ModeratBold", sans-serif;
}

@media (max-width: 599px) {
  .site-header .icons .header-icon .collection-number {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }
}

.logo {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 8000;
}

.site-header .logo {
  mix-blend-mode: difference;
}

.logo .logocontainer a .letter svg path {
  fill: #fff;
}

.logo .logocontainer {
  height: 60px;
  padding: 10px;
  -webkit-transition: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 320px;
}

@media (max-width: 599px) {
  .logo .logocontainer {
    height: 50px;
    padding: 0;
    width: 150px;
  }
}

.logo .logocontainer .letter {
  -webkit-transition: 0.33s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.33s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo .logocontainer:hover .letter {
  width: 48px;
}

.logo .logocontainer a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.logo .logocontainer a .letter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 599px) {
  .logo .logocontainer a .letter {
    width: 30px;
  }
}

.logo .logocontainer a .letter > * {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
  height: 30px;
}

@media (max-width: 599px) {
  .logo .logocontainer a .letter > * {
    height: 15px;
  }
}

.search-pane {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  padding: 200px 1rem;
  z-index: 500;
}

.search-pane input {
  width: 80%;
  border: none;
  border-bottom: 1px solid black;
  background-color: transparent;
  font-size: 1.4rem;
  padding: 1rem;
  border-radius: 0;
}

.search-pane .search-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 0;
}

.search-pane .search-result .search-title {
  margin: 0;
  font-size: 1.4rem;
}

.search-pane .search-result .search-title a {
  padding: 0 0 0 2rem;
  text-decoration: none;
}

.header-nav {
  background-color: white;
  z-index: 400;
  overflow: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
}

.header-nav a {
  position: absolute;
  color: black;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  padding: 0 2rem;
  -webkit-transition: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header-nav a:hover {
  color: darkgrey;
  padding: 0 0 0 7rem;
}

.header-nav a:hover:before {
  opacity: 1;
  -webkit-transform: scale(0.6) translateX(2rem);
  transform: scale(0.6) translateX(2rem);
}

.header-nav a:before {
  content: "";
  background: url("../i/icons/SVG/return.svg") no-repeat;
  background-position: center bottom;
  width: 80px;
  height: 30px;
  position: absolute;
  left: 0;
  bottom: 10px;
  opacity: 0;
  -webkit-transform: scale(0.5) translateX(0);
  transform: scale(0.5) translateX(0);
  -webkit-transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header-nav nav {
  background-color: whitesmoke;
  width: 40vw;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.header-nav nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  text-align: left;
  margin-bottom: 2em;
}

.header-nav nav li {
  position: relative;
  padding: 0;
  font-size: 3rem;
  height: 70px;
}

@media (max-width: 599px) {
  .header-nav nav li {
    font-size: 2rem;
    height: 50px;
  }
}

.header-nav nav:nth-of-type(2) {
  background-color: #e8e8e8;
}

@media (max-width: 599px) {
  .header-nav nav {
    width: 100vw;
    height: 50vh;
    padding-top: 50px;
  }
}

.side-pane {
  background-color: white;
  position: fixed;
  right: -60vw;
  top: 0;
  bottom: 0;
  width: 60vw;
  z-index: 400;
  overflow: visible;
  -webkit-transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@media (max-width: 599px) {
  .side-pane {
    width: 100vw;
    right: -100vw;
  }
}

.side-pane.active {
  right: -10vw;
}

@media (max-width: 599px) {
  .side-pane.active {
    right: 0;
  }
}

.side-pane .close {
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: calc(10vw + 9rem);
}

@media (max-width: 599px) {
  .side-pane .close {
    right: calc(10vw + 3.5rem);
  }
}

.site-footer {
  background-color: #e8e8e8;
  padding: 0;
  display: -ms-grid;
  display: grid;
  position: relative;
  min-height: 25vh;
}

.site-footer .about {
  background-color: rgb(238, 238, 238);
  grid-area: logo;
  padding: 1rem;
  font-size: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
}

.site-footer .about svg {
  fill: #383838;
  width: 200px;
  margin-top: auto;
  margin-right: 2rem;
  padding-bottom: 0.4rem;
}

.site-footer .about p {
  margin-top: auto;
  margin-bottom: 0;
}

@media (max-width: 599px) {
  .site-footer .about {
    padding: 2rem;
  }
}

.site-footer .footer-nav {
  grid-area: nav;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.site-footer .footer-nav nav {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.site-footer .footer-nav nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.site-footer .footer-nav nav li {
  margin: 0.5rem 0 0 0;
}

.site-footer .footer-nav nav li.social ul {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  position: relative;
  display: flex;
  flex-direction: row;
  margin-left: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
}

.site-footer .footer-nav nav li.social ul li:not(:first-child) {
  margin-left: 0.5rem;
}

@media (max-width: 599px) {
  .site-footer .footer-nav nav li {
    margin: 0;
  }
}

@media (max-width: 599px) {
  .site-footer .footer-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 599px) {
  .site-footer {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    grid-template-areas: "logo" "nav";
  }
}

@media (min-width: 600px) {
  .site-footer {
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "logo   nav   nav";
  }
}

@media (min-width: 1200px) {
  .site-footer {
    width: auto;
    -ms-grid-columns: (1fr) [4];
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "logo logo nav nav";
  }
}

@keyframes hideshow {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

@keyframes animatedBackground {
  0% {
    background-position: 0;
  }
  40% {
    background-position: 0;
  }
  50% {
    background-position: 10px;
  }
  60% {
    background-position: 0;
  }
  100% {
    background-position: 0;
  }
}

@keyframes hideshow {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.issue {
  padding: 2rem 10vw;
  position: relative;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  height: 10vh;
  width: 100vw;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 800;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

body.logged-in .issue {
  width: auto;
}

.issue {
  width: auto; /* 100vh makes pages overflow */
}

@media (min-width: 1200px) {
  .issue {
    padding: 2rem 20vw 0;
  }
}

@media (min-width: 1800px) {
  .issue {
    padding: 2rem 20vw 0;
  }
}

@media (max-width: 599px) {
  .issue {
    padding: 1rem 1vw 0;
  }
}

.issue:first-of-type {
  height: 15vh;
  padding-top: calc(2rem + 5vh);
}

@media (min-width: 600px) {
  .issue:first-of-type {
    height: 18vh;
    padding-top: calc(2rem + 8vh);
  }
}

@media (min-width: 1200px) {
  .issue:first-of-type {
    height: 15vh;
    padding-top: calc(2rem + 5vh);
  }
}

.issue:hover {
  -webkit-transition: 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  height: 20vh;
}

@media (max-width: 599px) {
  .issues .issue-inner .issue:first-of-type:not(.open) {
    height: 12rem;
    padding-top: calc(2rem + 5vh);
  }

  .issues .issue-inner .issue:not(.open) {
    height: 8rem;
  }
}

.issue .issue-header {
  margin-top: 0;
  cursor: pointer;
  color: black;
  z-index: 500;
  padding: 1vh 0 0 0;
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-gap: clamp(40px, calc(2em + 2vmin), 80px);
}

@media (max-width: 599px) {
  .issue .issue-header {
    padding: 0.4rem;
    grid-template-columns: 1fr;
    grid-gap: 12px;
  }
}

.issue .issue-header::after {
  background: none;
}

.issue .issue-header.single {
  padding: 50vw;
}

.issue .issue-header.single .inner {
  background: navajowhite;
  padding-top: 80px;
}

.issue .issue-header .title {
  margin: -20px 0;
  line-height: 1.35;
}

@media (max-width: 599px) {
  .issue .issue-header .title {
    margin: 0;
    grid-row: 2;
    grid-column: 1;
  }
}

.issue .issue-header .number {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 200px;
  margin: 0;
  font-size: clamp(16px, calc(0.5em + 0.88vmin), 24px);
  justify-content: flex-start;
}

@media (max-width: 599px) {
  .issue .issue-header .number {
    min-width: 0;
    grid-row: 1;
    grid-column: 1;
    padding: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.issue .issue-content {
  display: -ms-grid;
  display: grid;
  grid-template-areas: "cover    editorial" "articles articles";
  -webkit-column-gap: 2rem;
  column-gap: 2rem;
  row-gap: 10rem;
  width: 95%;
  max-width: 5000px;
  -ms-grid-row-align: center;
  align-self: center;
}

@media (min-width: 600px) {
  .issue .issue-content {
    grid-template-areas: "cover cover  editorial" "articles articles articles";
  }
}

@media (min-width: 1200px) {
  .issue .issue-content {
    grid-template-areas: "cover cover  editorial" "articles articles articles";
  }
}

@media (max-width: 599px) {
  .issue .issue-content {
    padding: 2rem 0;
    row-gap: 1em;
    grid-template-areas: "cover" "editorial" "articles";
  }
}

.issue .issue-content .issue-image {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: cover;
}

.issue .issue-content .editorial {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: editorial;
}

.issue .issue-content .articles {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: articles;
}

.issue .issue-content .issue-image {
  -ms-grid-row: 1;
  grid-row: 1;
  -o-object-position: top;
  object-position: top;
  background-color: transparent;
  z-index: 499;
  top: 5vh;
  top: 4rem;
  position: relative;
}

@media (max-width: 599px) {
  .issue .issue-content .issue-image {
    padding: 1vh 0;
    position: static;
  }
}

.issue .issue-content .issue-image .cover {
  position: relative;
  display: flex;
  flex-direction: column;
}

.issue .issue-content .issue-image .cover header {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
  z-index: 3;
  padding: 1rem;
  color: white;
  display: none;
}

.issue.light-text .issue-content .issue-image .cover header {
  text-shadow: rgba(30, 30, 30, 0.666) 0 0 20px;
}

@media (max-width: 599px) {
  .issue .issue-content .issue-image .cover header {
    padding: 0.4rem;
    bottom: 1rem;
  }
}

.issue .issue-content .issue-image .cover header h2 {
  font-size: calc(12px + 0.4vmax);
}

.issue .issue-content .issue-image .cover header h1 {
  font-size: calc(1em + 2vmax);
  margin: 0;
}

.issue .issue-content .issue-image .cover img {
  object-fit: cover;
  display: block;
}

.issue-image .cover .header-position-wrap {
  position: relative;
}

.issue .issue-content .issue-image .caption {
  margin: 0.5rem 0 0 0;
  font-size: 0.7em;
  z-index: 2;
}
.issue .issue-content .editorial {
  padding-top: 4rem;
}

@media (max-width: 599px) {
  .issue .issue-content .editorial {
    font-size: 0.8rem;
    padding-top: 2rem;
  }
}

@media (min-width: 600px) {
  .issue .issue-content .editorial {
    font-size: 1rem;
  }
}

.issue .issue-content .editorial > *:first-child {
  margin-top: 0;
}

.issue .issue-content .editorial .editor h3 {
  display: inline;
}

.issue .issue-content .editorial .editor:after {
  content: ", ";
}

.issue .issue-content .editorial .editor:last-child::after {
  content: "";
}

.issue .issue-content .issue-info {
  -ms-grid-column: 3;
  -ms-grid-column-span: 3;
  grid-column: 3/6;
  -ms-grid-row: 1;
  grid-row: 1;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 2em 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 500;
}

.issue .issue-content .issue-info .button.go {
  background: none;
  color: black;
  max-width: 800px;
  text-align: end;
}

.issue .issue-content .articles {
  -webkit-column-gap: 3rem;
  column-gap: 3rem;
  row-gap: 2rem;
}

.issue.close .issue-content {
  height: 0;
  -webkit-transition: height 1s linear;
  transition: height 1s linear;
}

.issue.open {
  height: auto;
  min-height: 98vh;
  overflow: hidden;
  margin: 0;
}

.issue.open .issue-header {
  cursor: normal;
  -webkit-transform: translateY(-50vh);
  transform: translateY(-50vh);
  -webkit-transition: 0.1s linear;
  transition: 0.1s linear;
  -webkit-transform-origin: top;
  transform-origin: top;
}

.issue.open .issue-content {
  height: auto;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.issue.open .issue-content .cover header {
  display: block;
}

.issue .desc {
  border-top: 1px solid;
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
}

.issue h1,
.issue h2 {
  margin: 0;
  z-index: 2;
}

.issue h1.title {
  /* -ms-grid-column: 2;
  -ms-grid-column-span: 2; */
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  font-size: clamp(20px, calc(18px + 2.3vw), 60px); /* calc(2em + 4vmin); */
  /* adjusted title size on issue main page */
}

.editorial-view-more {
  /* padding: 0.7rem 0.9rem;
  background-color: rgba(255,255,255,0.25); */
  border-bottom: 1px solid currentcolor;
  position: relative;
}

.editorial-view-more::after {
  content: "";
  position: absolute;
  background-image: url("../i/icons/SVG/r-arrow.svg");
  background-repeat: no-repeat;
  /* background-position-x: 0%; */
  /* background-position-y: 0%; */
  /* background-size: auto; */
  /* background-size: 70px; */
  background-position: bottom;
  width: 30px;
  height: 17px;
  right: -40px;
}

.light-text .editorial-view-more::after {
  filter: invert(1);
}

.issue-post-item .issue.open .issue-content {
  -webkit-transform: none;
  transform: none;
}

.issue-post-item .issue .issue-content .issue-image .caption {
  color: #000;
}

@keyframes hideshow {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

.issue-contributors {
  width: 95%;
  margin-bottom: 8rem;
  align-self: center;
}

@keyframes animatedBackground {
  0% {
    background-position: 0;
  }
  40% {
    background-position: 0;
  }
  50% {
    background-position: 10px;
  }
  60% {
    background-position: 0;
  }
  100% {
    background-position: 0;
  }
}

@keyframes hideshow {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.hero {
  height: 100vh;
  position: fixed;
  padding: 0;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hero .title {
  font-size: calc(1rem + 6vmin);
  padding: 0;
  color: white;
}

.hero .title h2 {
  padding: 0;
  position: absolute;
  top: 0vh;
  left: 5vw;
  max-width: 50vw;
}

.hero .article-card {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 50px 1fr 100px;
  grid-template-rows: 50px 1fr 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 4vmin;
  width: 25%;
  position: absolute;
  min-height: 50vh;
  top: 10%;
  background: gainsboro;
}

.hero .article-card .small-icon {
  display: none;
}

.hero .article-card h1 {
  font-size: calc(0.8em + 1vmin);
  -ms-grid-column-align: center;
  justify-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  text-align: left;
  width: 100%;
}

.hero .article-card header {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4fr;
  grid-template-columns: 1fr 4fr;
  margin: -4vmin;
  padding: 2vmin 4vmin 0vmin;
}

.hero .article-card header h3 {
  top: 0;
  margin: 0;
}

.hero .article-card header h4 {
  font-size: 2em;
  margin: 0;
}

.hero .article-card header h4.number {
  color: white;
}

.hero .article-card footer {
  padding: 0;
  background: transparent;
  color: black;
  -ms-flex-item-align: end;
  align-self: flex-end;
  justify-self: flex-start;
}

.hero .article-card footer p {
  font-size: 1em;
  margin: 0.1em;
  display: inline-block;
}

.hero .article-card:hover {
  z-index: 8001;
  -webkit-transform: rotate(2deg);
  transform: rotate(2deg);
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.hero .article-card:nth-of-type(5n + 1) {
  left: 30%;
  margin-top: 2%;
  z-index: 1;
}

.hero .article-card:nth-of-type(5n + 1):hover {
  z-index: 8001;
}

.hero .article-card:nth-of-type(5n + 2) {
  left: 40%;
  margin-top: 4%;
  z-index: 2;
}

.hero .article-card:nth-of-type(5n + 2):hover {
  z-index: 8001;
}

.hero .article-card:nth-of-type(5n + 3) {
  left: 50%;
  margin-top: 6%;
  z-index: 3;
}

.hero .article-card:nth-of-type(5n + 3):hover {
  z-index: 8001;
}

.hero .article-card:nth-of-type(5n + 4) {
  left: 60%;
  margin-top: 8%;
  z-index: 4;
}

.hero .article-card:nth-of-type(5n + 4):hover {
  z-index: 8001;
}

.hero .article-card:nth-of-type(5n + 5) {
  left: 70%;
  margin-top: 10%;
  z-index: 5;
}

.hero .article-card:nth-of-type(5n + 5):hover {
  z-index: 8001;
}

.home-slide {
  width: 100%;
}

.home-slide section h2 {
  font-size: calc(2rem + 1vmax);
  padding: 0 0 0 5vw;
  z-index: 0;
}

@media (max-width: 599px) {
  .home-slide section h2 {
    position: relative;
    top: 10px;
    padding: 0 0 0 3vw;
  }
}

.home-slide section.home-about {
  position: relative;
  z-index: 800;
  background-color: white;
}

.home-slide section.home-about .about-fan {
  z-index: 500;
  top: 0;
  display: -ms-grid;
  display: grid;
  padding: 0;
  grid-row-gap: 0;
  grid-column-gap: 0;
}

@media (max-width: 599px) {
  .home-slide section.home-about .about-fan {
    -ms-grid-columns: 100vw;
    grid-template-columns: 100vw;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    grid-template-areas: "hbs" "cb" "upcoming" "journal" "cb1" "hi2" "media1" "cb9" "hi5" "cb2" "herotext" "media2" "hi4" "hi3" "cb5" "hi6" "cb4" "cb7" "hi1" "hi7" "media3" "hi8" "cb6" "cb8";
  }
}

@media (min-width: 600px) {
  .home-slide section.home-about .about-fan {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(16, minmax(24vh, -webkit-min-content));
    grid-template-rows: repeat(16, minmax(24vh, min-content));
    grid-template-areas: "cb       hbs       hbs" "upcoming hbs       hbs" "upcoming hbs       hbs" "journal  journal   journal" "hi2      hi2       cb1" "herotext herotext  herotext" "media1   media1    cb2" "hi4      hi4       hi4" "cb7      cb3       cb3" "hi3      media2    media2" "cb4      cb9       cb9" "cb4      hi6       hi6" "cb11     hi6       hi6" "hi7      cb6       cb6" "cb8      media3    media3" "cb5      cb5       cb5";
  }
}

@media (min-width: 1200px) {
  .home-slide section.home-about .about-fan {
    width: auto;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(15, minmax(31vh, -webkit-min-content));
    grid-template-rows: repeat(15, minmax(31vh, min-content));
    grid-column-gap: 0;
    grid-row-gap: 0;
    grid-template-areas: "cb         cb       hbs      hbs" "upcoming   upcoming hbs      hbs" "upcoming   upcoming hbs      hbs" "journal    journal  journal  journal" "journal    journal  journal  journal" "hi1        cb1      hi4      hi4" "hi3        hi3      hi4      hi4" "hi3        hi3      cb9      cb9" "cb4        hi6      hi6      cb5" "hi2        hi6      hi6      media2" "hi8        hi8      cb8      hi5" "hi8        hi8      cb8      cb11" "cb6        cb6      cb6      media1" "hi7        hi7      cb10     cb10" "hi7        hi7      cb7      media3";
  }
}

@media (max-width: 599px) {
  .home-slide section.home-about .about-fan .fan-item,
  .home-slide section.home-about .about-fan .video-card.home {
    min-height: 40vh;
  }
}

@media (max-width: 599px) {
  .home-slide section.home-about .about-fan .issue-hero-image {
    height: 80vh;
  }
}

@media (max-width: 599px) {
  .home-slide section.home-about .about-fan .cb1,
  .home-slide section.home-about .about-fan .cb2,
  .home-slide section.home-about .about-fan .cb3,
  .home-slide section.home-about .about-fan .cb4,
  .home-slide section.home-about .about-fan .cb5,
  .home-slide section.home-about .about-fan .cb6,
  .home-slide section.home-about .about-fan .cb7,
  .home-slide section.home-about .about-fan .cb8,
  .home-slide section.home-about .about-fan .cb9,
  .home-slide section.home-about .about-fan .cb10,
  .home-slide section.home-about .about-fan .cb11 {
    min-height: 2vh;
  }
}

.home-slide section.home-about .about-fan .cb {
  grid-area: cb;
  background-color: #feb2b4;
  text-align: bottom;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 599px) {
  .home-slide section.home-about .about-fan .cb {
    padding: 1rem;
  }
}

.home-slide section.home-about .about-fan .cb .now {
  margin-top: auto;
}

.home-slide section.home-about .about-fan .cb .now p {
  margin: 0;
}

@media (max-width: 599px) {
  .home-slide section.home-about .about-fan .cb .now p {
    margin: 5vh 0 0 0;
    font-size: 0.8rem;
  }
}

.home-slide section.home-about .about-fan .cb1 {
  grid-area: cb1;
  background-color: #3375ce;
}

@media (max-width: 599px) {
  .home-slide section.home-about .about-fan .cb1 {
    height: 20vh;
  }
}

.home-slide section.home-about .about-fan .cb2 {
  grid-area: cb2;
  background-color: #85ade2;
}

@media (max-width: 599px) {
  .home-slide section.home-about .about-fan .cb2 {
    height: 10vh;
  }
}

.home-slide section.home-about .about-fan .cb3 {
  grid-area: cb3;
  background-color: #fabf9e;
}

.home-slide section.home-about .about-fan .cb4 {
  grid-area: cb4;
  background-color: #f8de92;
}

.home-slide section.home-about .about-fan .cb5 {
  grid-area: cb5;
  background-color: #f8e1d4;
}

.home-slide section.home-about .about-fan .cb6 {
  grid-area: cb6;
  background-color: #b1d7bc;
}

.home-slide section.home-about .about-fan .cb7 {
  grid-area: cb7;
  background-color: #feb2b4;
}

.home-slide section.home-about .about-fan .cb8 {
  grid-area: cb8;
  background-color: #fbedc2;
}

.home-slide section.home-about .about-fan .cb9 {
  grid-area: cb9;
  background-color: #feb2b4;
}

.home-slide section.home-about .about-fan .cb10 {
  grid-area: cb10;
  background-color: #8fc59f;
}

.home-slide section.home-about .about-fan .cb11 {
  grid-area: cb11;
  background-color: #fbedc2;
}

.home-slide section.home-about .about-fan .home-buttons {
  grid-area: hbs;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.home-slide section.home-about .about-fan .home-buttons .home-button {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  padding: 2rem;
  -webkit-transition: 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.home-slide section.home-about .about-fan .home-buttons .home-button h3 {
  font-size: 3rem;
  font-size: clamp(16px, calc(1.5vmax + 0.75rem), 40px);
  margin: 0;
}

.home-slide section.home-about .about-fan .home-buttons .home-button p {
  opacity: 0;
}

.home-slide section.home-about .about-fan .home-buttons .home-button p:empty {
  display: none;
  border: 1px solid black;
}

.home-slide section.home-about .about-fan .home-buttons .home-button a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  text-transform: capitalize;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.home-slide section.home-about .about-fan .home-buttons .home-button a:after {
  content: "";
  background-image: url("../i/icons/SVG/return.svg");
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -2rem;
  right: 2rem;
  width: 70px;
  height: 50px;
  opacity: 0;
}

.home-slide
  section.home-about
  .about-fan
  .home-buttons
  .home-button:nth-of-type(1) {
  background: hsl(0, 0%, 85%);
}

@media (max-width: 599px) {
  .home-slide
    section.home-about
    .about-fan
    .home-buttons
    .home-button:nth-of-type(1) {
    min-height: 70px;
  }
}

.home-slide
  section.home-about
  .about-fan
  .home-buttons
  .home-button:nth-of-type(1)
  a {
  color: #285ea6;
}

.home-slide
  section.home-about
  .about-fan
  .home-buttons
  .home-button:nth-of-type(1)
  a:after {
  filter: invert(0.5) sepia(1) hue-rotate(180deg) saturate(6) brightness(0.6);
}

.home-slide
  section.home-about
  .about-fan
  .home-buttons
  .home-button:nth-of-type(2) {
  background: #285ea6;
}

.home-slide
  section.home-about
  .about-fan
  .home-buttons
  .home-button:nth-of-type(3) {
  background: #f1c133;
}

.home-slide
  section.home-about
  .about-fan
  .home-buttons
  .home-button:nth-of-type(4) {
  background: #ffffe0;
}

.home-slide
  section.home-about
  .about-fan
  .home-buttons
  .home-button:nth-of-type(5) {
  background: #f0c2a8;
}

.home-slide
  section.home-about
  .about-fan
  .home-buttons
  .home-button:nth-of-type(6) {
  background: #e3565a;
}

.home-slide
  section.home-about
  .about-fan
  .home-buttons
  .home-button:nth-of-type(7) {
  background: #519d68;
}

@media (max-width: 599px) {
  .home-slide section.home-about .about-fan .home-buttons .home-button {
    min-height: 20vh;
    padding: 1rem;
  }
}

.home-slide section.home-about .about-fan .home-buttons .home-button:hover {
  -webkit-box-flex: 5;
  -ms-flex: 5;
  flex: 5;
  cursor: pointer;
}

.home-slide section.home-about .about-fan .home-buttons .home-button:hover a {
  margin-bottom: 2rem;
  -webkit-transition: 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.home-slide
  section.home-about
  .about-fan
  .home-buttons
  .home-button:hover
  a:after {
  opacity: 1;
  /*bottom: 0;*/
  -webkit-transition: 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.home-slide section.home-about .about-fan .home-buttons .home-button:hover a p {
  opacity: 1;
  -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

@media (max-width: 599px) {
  .home-slide
    section.home-about
    .about-fan
    .home-buttons
    .home-button:hover
    a
    p {
    font-size: 0.8rem;
  }
}

.home-buttons-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.home-buttons-wrap:hover .home-button:hover {
  padding: 2rem 0 6rem !important;
}

.home-slide section.home-about .about-fan .fan-item {
  position: relative;
  overflow: hidden;
}

.home-slide section.home-about .about-fan .fan-item a {
  color: black;
}

.home-slide section.home-about .about-fan .fan-item figure {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.home-slide section.home-about .about-fan .fan-item figure img.home-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
  -webkit-transition: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.home-slide section.home-about .about-fan .fan-item figure figcaption {
  position: absolute;
  padding: 2rem;
  top: -1rem;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: opacity 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.home-slide section.home-about .about-fan .fan-item figure figcaption .snippet {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.home-slide
  section.home-about
  .about-fan
  .fan-item
  figure
  figcaption
  .snippet
  a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 2rem;
}

.home-slide section.home-about .about-fan .fan-item figure:hover {
  -webkit-transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.15);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.15);
}

.home-slide section.home-about .about-fan .fan-item figure:hover img.home-img {
  opacity: 0.4;
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

.home-slide section.home-about .about-fan .fan-item figure:hover figcaption {
  /* top: 0; */
  opacity: 1;
}

.home-slide section.home-about .about-fan .fan-item:nth-of-type(8n + 1) {
  grid-area: hi1;
}

.home-slide section.home-about .about-fan .fan-item:nth-of-type(8n + 2) {
  grid-area: hi2;
}

.home-slide section.home-about .about-fan .fan-item:nth-of-type(8n + 3) {
  grid-area: hi3;
}

.home-slide section.home-about .about-fan .fan-item:nth-of-type(8n + 4) {
  grid-area: hi4;
}

.home-slide section.home-about .about-fan .fan-item:nth-of-type(8n + 5) {
  grid-area: hi5;
}

.home-slide section.home-about .about-fan .fan-item:nth-of-type(8n + 6) {
  grid-area: hi6;
}

.home-slide section.home-about .about-fan .fan-item:nth-of-type(8n + 7) {
  grid-area: hi7;
}

.home-slide section.home-about .about-fan .fan-item:nth-of-type(8n + 8) {
  grid-area: hi8;
}

.home-slide section.home-about .about-fan .hero-text {
  background-color: #e8e8e8;
  font-size: calc(1rem + 1vmin);
  padding: 0;
  color: #285ea6;
  grid-area: herotext;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  z-index: 800;
}

.home-slide section.home-about .about-fan .hero-text p {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
  padding: 1rem;
}

.home-slide section.home-about .about-fan .hero-text .button {
  background: #a2a2a2;
  color: white;
  margin-top: auto;
  font-size: 1rem;
  margin: 0;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}

.home-slide section.home-about .about-fan .latest-card {
  background-color: white;
  display: none;
  padding: 1rem;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 400;
}

.home-slide section.home-about .about-fan .latest-card .snippet {
  position: relative;
}

.home-slide section.home-about .about-fan .latest-card .snippet a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.home-slide section.home-about .about-fan .latest-card:hover {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
  -webkit-transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.home-slide section.home-about .about-fan .upcoming {
  padding: 0;
  background-color: #fe7f82;
  grid-area: upcoming;
  padding: 2rem;
  display: -ms-grid;
  display: grid;
  grid-template-areas: "title" "inner";
  grid-template-rows: 2.5rem auto;
  row-gap: 2rem;
}

@media (max-width: 599px) {
  .home-slide section.home-about .about-fan .upcoming {
    -ms-grid-rows: 2rem auto auto;
    grid-template-rows: 2rem auto auto;
  }
}

.home-slide section.home-about .about-fan .upcoming > h3 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: title;
  margin: 0;
  line-height: 1;
  font-size: calc(1rem + 1vmin);
}

.home-slide section.home-about .about-fan .upcoming .items {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: inner;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
}

.home-slide section.home-about .about-fan .upcoming .items .snippet {
  margin: 0 0 3rem;
  max-width: none;
  /* background-color: rgba(255,255,255,0.075);
  padding: .5rem;
  margin-bottom: 1.5rem; */
}

.home-slide section.home-about .about-fan .upcoming .items .snippet .tip {
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 80px;
}

@media (max-width: 599px) {
  .home-slide section.home-about .about-fan .upcoming .items .snippet .tip {
    left: 50px;
  }
}

.home-slide section.home-about .about-fan .upcoming .items .snippet h3 {
  font-size: calc(0.66rem + 1vmin);
  margin-top: 0.5rem;
  line-height: 1.25;
}

.home-slide section.home-about .about-fan .upcoming .items .authors {
  display: none;
}

.home-slide section.home-about .about-fan .upcoming .social {
  /* margin-top: auto; */
  background: rgba(255, 255, 255, 0.05);
  margin: auto -2rem -2rem;
  padding: 0 2rem 1rem;
}

/* .home-slide section.home-about .about-fan .upcoming .social .social-button {
  border: none;
}

.home-slide section.home-about .about-fan .upcoming .social p {
  margin-bottom: 0;
} */

@media (max-width: 599px) {
  .home-slide section.home-about .about-fan .upcoming {
    padding: 1rem;
  }
  .home-slide section.home-about .about-fan .upcoming .social {
    margin: auto -1rem -1rem;
    padding: 0 1rem 0.5rem;
  }
}

.about-fan .upcoming .social h4 {
  margin: 1rem 0 0.5em 0;
  font-size: 1.075rem;
}

.upcoming .home-follow-section {
  display: inline;
}

.upcoming .home-follow-section li {
  padding: 10px 0;
  margin-right: 0.05em;
  margin-bottom: 0.35em;
}

.upcoming .home-follow-section li.link {
  padding: 0;
}
.upcoming .home-follow-section li.link a {
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05); /* #fe898c; */
}

@media screen and (max-width: 1025px) {
  .upcoming .home-follow-section li {
    padding: 5px 0;
  }

  .upcoming .home-follow-section li.link a {
    padding: 5px;
  }
}

.upcoming .home-follow-section li.link a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.home-slide section.home-about .logo {
  display: none;
  background-image: url("../i/SVG/jumblelogo5layers.svg");
  position: absolute;
  height: 20vh;
  width: 20vw;
  top: 40vh;
  left: 2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20vw;
  z-index: 6000;
}

.home-slide section.home-about .inner {
  min-height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -ms-flex-line-pack: center;
  align-content: center;
  width: 45vw;
  margin-left: 50vw;
  font-size: calc(1em + 2vmin);
}

.home-slide .journal-block {
  grid-area: journal;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
}

@media (max-width: 599px) {
  .home-slide .journal-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}

.home-slide .journal-block .upcoming-issue {
  background-color: white;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  padding: 1rem;
}

.home-slide .journal-block .upcoming-issue h2 {
  font-size: 2rem;
  padding: 0;
  margin: 0;
}

.home-slide .journal-block .upcoming-issue div {
  margin-top: auto;
}

.home-slide .journal-block .upcoming-issue div h3 {
  margin: 0;
}

.home-slide .journal-block .issue-hero {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  -o-object-position: top;
  object-position: top;
  background-color: transparent;
  z-index: 499;
  position: relative;
  overflow: hidden;
  padding: 5vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.home-slide .journal-block .issue-hero:hover .cover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.home-slide .journal-block .issue-hero .cover {
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  position: relative;
  height: 100%;
  max-width: 500px;
}

.home-slide .journal-block .issue-hero .cover header {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
  z-index: 3;
  padding: 1rem;
  color: white;
}

.home-slide .journal-block .issue-hero .cover header h2 {
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

.home-slide .journal-block .issue-hero .cover header h1 {
  font-size: calc(1rem + 2vmax);
  margin: 0;
}

.home-slide .journal-block .issue-hero .cover img {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
  z-index: 1;
  bottom: 0;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  opacity: 0.9;
}

.home-archives {
  position: relative;
  background: whitesmoke;
  padding: 0 0 10vh 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

@media (max-width: 599px) {
  .home-archives {
    padding: 3vw;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
  }
}

.home-archives .archive-holder {
  z-index: 1;
  width: 80vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-item-align: center;
  align-self: center;
}

@media (max-width: 599px) {
  .home-archives .archive-holder {
    width: 100%;
  }
}

.home-archives .archive-holder .article-card {
  position: relative;
  width: 24vw;
  margin: 1rem;
}

@media (max-width: 599px) {
  .home-archives .archive-holder .article-card {
    width: 100%;
    margin: 1rem 0 0;
  }
}

@media (min-width: 600px) {
  .home-archives .archive-holder .article-card {
    width: calc(100% - 2rem);
  }
}

@media (min-width: 900px) {
  .home-archives .archive-holder .article-card {
    width: calc(50% - 2rem);
  }
}

@media (min-width: 1200px) {
  .home-archives .archive-holder .article-card {
    width: calc(33% - 2rem);
  }
}

.home-archives .archive-holder .article-card .article-header {
  min-height: 400px;
}

.home-archives .archive-holder .article-card:hover {
  z-index: 500;
}

.home-archives .archive-holder .article-card:hover .issue-header {
  -webkit-transform: scaleX(1) translateY(-100px);
  transform: scaleX(1) translateY(-100px);
  -webkit-transition: 0.3s cubic-bezier(0, 0.4, 0.07, 1);
  transition: 0.3s cubic-bezier(0, 0.4, 0.07, 1);
}

@media (max-width: 599px) {
  .home-archives .archive-holder .article-card:hover .issue-header {
    display: none;
  }
}

.home-archives .archive-holder .article-card .post-type-image {
  margin-bottom: 1em;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}

.home-archives .archive-holder .article-card .post-type-image svg {
  width: 70px;
}

.home-archives .archive-holder .article-card header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  grid-gap: 0;
}

.home-archives .archive-holder .article-card header.article-header h1 {
  margin: 1em 0 0;
}

.home-archives .archive-holder .article-card header p {
  margin-top: auto;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}

.home-archives .archive-holder .article-card header.issue-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transform: scaley(0);
  transform: scaley(0);
  -webkit-transition: 0.2s cubic-bezier(0, 0, 0.07, 1);
  transition: 0.2s cubic-bezier(0, 0, 0.07, 1);
}

.home-archives .archive-holder .article-card header h3,
.home-archives .archive-holder .article-card header h4 {
  margin: 0;
  padding: 0;
}

.home-archives .archive-holder .article-card header h4 {
  font-size: 0.8rem;
  color: white;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.home-archives .archive-holder .article-card header h3 {
  font-size: 1.4rem;
  -webkit-box-flex: 4;
  -ms-flex: 4;
  flex: 4;
}

.home-archives .archive-holder .article-card footer {
  margin: 0 0 0 20px;
}

.video-card.home {
  min-width: 100%;
}

.video-card.home:nth-of-type(3n + 1) {
  grid-area: media1;
}

.video-card.home:nth-of-type(3n + 2) {
  grid-area: media2;
}

.video-card.home:nth-of-type(3n + 3) {
  grid-area: media3;
}

.home-tags {
  padding: 5vh 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  background: #263238;
  color: white;
  position: relative;
  z-index: 500;
}

.home-tags h2 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
}

.home-tags .post-tags {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  padding: 0 10vw;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [4];
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 1rem;
  column-gap: 1rem;
  row-gap: 1rem;
}

.home-tags .post-tags p {
  font-size: 1.4rem;
  line-height: auto;
  margin: 0;
}

.home-tags .post-tags .tag {
  border: 0;
}

.home-journal {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(grey),
    to(silver)
  );
  background: linear-gradient(grey, silver);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
  z-index: 4;
  position: relative;
}

.home-journal aside {
  -ms-flex-item-align: end;
  align-self: flex-end;
  justify-self: flex-end;
  padding: 2rem 10vw;
}

.home-journal h2 {
  width: 100vw;
}

.home-journal .latest-issue {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [5];
  grid-template-columns: repeat(5, 1fr);
  margin: 0 0 4vh;
}

.home-journal .latest-issue .issue-hero-image {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -o-object-position: top;
  object-position: top;
  background-color: transparent;
  z-index: 499;
}

@media (max-width: 599px) {
  .home-journal .latest-issue .issue-hero-image {
    margin: 2vh 0;
    position: relative;
  }
}

.home-journal .latest-issue .issue-hero-image .cover {
  position: relative;
  width: 80%;
  margin: auto;
}

@media (max-width: 599px) {
  .home-journal .latest-issue .issue-hero-image .cover {
    top: 2vh;
    position: relative;
  }
}

.home-journal .latest-issue .issue-hero-image .cover header {
  position: absolute;
  mix-blend-mode: multiply;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 3;
  padding: 60% 20px 20px;
  color: black;
  vertical-align: bottom;
}

.home-journal .latest-issue .issue-hero-image .cover header h2 {
  font-size: calc(12px + 0.4vmax);
  margin: 0;
  padding: 0;
}

.home-journal .latest-issue .issue-hero-image .cover header h1 {
  font-size: calc(2rem + 2vmax);
  margin: 0;
}

.home-journal .latest-issue .issue-hero-image .cover header img {
  position: absolute;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
  z-index: 1;
  bottom: 0;
  -o-object-fit: cover;
  object-fit: cover;
  min-width: 100%;
  opacity: 0.4;
}

.home-journal .latest-issue .issue-hero-image .cover header .caption {
  margin: 0;
  font-size: 0.7em;
  position: absolute;
  color: white;
  bottom: -20px;
  left: 0;
  z-index: 2;
}

.home-journal .latest-issue .issue-hero {
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3/5;
  -ms-grid-row: 2;
  grid-row: 2;
}

@media (max-width: 599px) {
  .home-journal .latest-issue .issue-hero {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 0 3vw;
  }
}

.home-journal .latest-issue .issue-hero .articles {
  position: relative;
  z-index: 500;
  padding: 5vh 2vh 0;
  width: 100%;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3/5;
  margin-bottom: 5vh;
}

@media (max-width: 599px) {
  .home-journal .latest-issue .issue-hero .articles {
    padding: 0 0 10vh;
  }
}

.home-journal .latest-issue .issue-hero .articles .editorial {
  margin-bottom: 1vh;
  font-size: 1.2rem;
}

.home-journal .latest-issue .issue-hero .articles .editorial p {
  margin: 0 0 1rem;
  padding: 0;
}

.home-journal .issue-content {
  position: relative;
  z-index: 500;
  -ms-grid-row: 1;
  grid-row: 1;
  z-index: 500;
}

@media (max-width: 599px) {
  .home-journal .issue-content {
    -ms-grid-row: 2;
    grid-row: 2;
  }
}

.home-journal .journal-link {
  position: absolute;
  margin-top: 5vh;
  bottom: 2vh;
  right: 2vw;
  z-index: 500;
}

@media (max-width: 599px) {
  .home-journal .journal-link {
    left: 2vw;
    right: 2vw;
    text-align: end;
  }
}

.latest-news {
  background-color: #e4a934;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.latest-news .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
}

@media (max-width: 599px) {
  .latest-news .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    overflow: visible;
  }
}

.latest-news .inner .latest-card {
  background-color: whitesmoke;
  mix-blend-mode: multiply;
  -webkit-box-flex: 0.4;
  -ms-flex: 0.4;
  flex: 0.4;
  overflow: hidden;
  height: 80vh;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.latest-news .inner .latest-card h3 {
  font-size: calc(2rem + 5vmin);
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

@media (max-width: 599px) {
  .latest-news .inner .latest-card h3 {
    font-size: calc(1rem + 5vmin);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.latest-news .inner .latest-card .authors,
.latest-news .inner .latest-card .dates {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

@media (max-width: 599px) {
  .latest-news .inner .latest-card .authors,
  .latest-news .inner .latest-card .dates {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.latest-news .inner .latest-card.active {
  background-color: white;
  mix-blend-mode: normal;
  -webkit-box-flex: 5;
  -ms-flex: 5;
  flex: 5;
  -webkit-transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.latest-news .inner .latest-card.active h3 {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.2s cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}

.latest-news .inner .latest-card.active .authors,
.latest-news .inner .latest-card.active .dates {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.2s cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}

.latest-news .inner .latest-card svg {
  fill: black;
  width: 70px;
  margin-right: 20px;
}

.link-section {
  height: 8vh;
  margin: 1rem 5rem;
  position: relative;
  text-transform: capitalize;
}

.link-section a.home-link {
  font-size: calc(1rem + 1.8vmin);
  background: white;
  position: absolute;
  padding: 3vh 5vw;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.link-section a.home-link:hover {
  background-color: #285ea6;
  color: white;
}

@keyframes hideshow {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

@keyframes animatedBackground {
  0% {
    background-position: 0;
  }
  40% {
    background-position: 0;
  }
  50% {
    background-position: 10px;
  }
  60% {
    background-position: 0;
  }
  100% {
    background-position: 0;
  }
}

@keyframes hideshow {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.theme-home {
  background-color: whitesmoke;
  overflow: hidden;
}

.themes-page-header {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background-color: #f1c133;
  height: fit-content;
  padding-top: 10vh;
  padding-bottom: 5vh;
}

.themes-page-header-inner {
  width: 25%;
  margin-top: auto; /* Pushes the content to the bottom */
}
@media (max-width: 599px) {
  .themes-page-header-inner {
    width: 100%;
    padding: 1%;
  }
}

#theme-page-switch {
  text-decoration: underline;
}

#theme-page-switch-error {
  width: 10%;
}

.themes {
  display: flex;
  flex-wrap: wrap;
}

.theme-item-home {
  width: 25%;
  height: 500px;
  overflow: hidden;
  display: flex;
}

@media (max-width: 599px) {
  .theme-item-home {
    width: 100%;
    height: 200px;
  }
}

.clickable-themes-theme-page {
  flex: 1;
}

/* this creates a white image with 30% opacity that lies 
on top of the background-color but not the text when the mouse hovers over. */
.theme-item-home:hover {
  background: linear-gradient(
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.1)
  );
}

#theme-item-home-content {
  margin: 6%;
}

/* Tabs in research-theme view */
.issue.light-text div,
.tab.light-text div {
  color: rgb(230, 230, 230);
}

.tab.light-text + div .theme-header > *,
.tab.light-text + div .theme-information > * {
  color: rgb(230, 230, 230);
}

/* this sets the open call text color on the single-parse-opencalls.php */
.light-text {
  color: rgb(230, 230, 230);
}

.theme-page-content {
  padding-top: 4%;
}

.author-page {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.author-head {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-bottom: 3em;
  background-color: #cfd8dc;
}

.author-head .inner h1 {
  font-size: calc(2em + 4vmin);
}

.author-posts {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  background-color: #b0bec5;
}

.author-posts .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
}

.single-author {
  margin-bottom: 1em;
}

.authors-wrap .single-author {
  margin-bottom: 0.75rem;
}

.authors-wrap .single-author h2 {
  margin-bottom: 0;
}

.authors-wrap > h4 {
  margin: 0 0 -1rem;
  /* border-top: 1px dotted rgba(40,40,40,0.5); */
  border-top: 1px dotted currentColor;
  font-size: 1.2rem;
  text-align: right;
  opacity: 0.4;
}

.single-author .more {
  /* -webkit-transform: scale(0.4);
          transform: scale(0.4); */
  /* padding: 0; */
  text-decoration: underline;
  position: relative;
}

.single-author .more::after {
  content: "";
  position: absolute;
  background-image: url("../i/icons/SVG/r-arrow.svg");
  background-repeat: no-repeat;
  /* background-position-x: 0%; */
  /* background-position-y: 0%; */
  /* background-size: auto; */
  /* background-size: 70px; */
  background-position: bottom;
  width: 30px;
  height: 17px;
  right: -40px;
}

.single-author header {
  position: relative;
  cursor: pointer;
}

.single-author header h2 {
  font-size: 1.4em;
  position: relative;
  margin: 0 0 0.5em;
}

.single-author header::after {
  content: "+";
  font-size: 1.4em;
  line-height: 0.4;
  position: relative;
  right: -0.6em;
  width: 0.53571429em;
  height: 0.53571429em;
  transform: translateY(80%);
  transform-origin: center bottom;
  -webkit-transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.single-author header.active::after {
  -webkit-transform: rotate(-45deg) translateY(80%);
  transform: rotate(-45deg) translateY(80%);
}

.single-author .single-author-bio {
  font-size: 1em;
  display: none;
  margin-bottom: 3rem;
  margin-top: 0.5rem;
}

.single-author .single-author-bio.closed {
  display: block;
}

.single-author-bio p {
  margin: 0 0 1em;
}

.article-body {
  width: 100%;
  font-size: 22px;
  line-height: 38px;
}

@media (max-width: 599px) {
  .article-body {
    font-size: 16px;
    line-height: 30px;
  }
}

.article-body .abstract {
  height: auto;
  font-size: 0.9em;
  color: #4d4d4d;
  padding: 0;
  list-style: disc;
}

.article-body .abstract .button {
  font-size: 0.8rem;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 2;
  grid-column: 2;
  margin: 1rem 0;
}

.abstract .button.open-abstract::after {
  content: "+";
  margin-left: 0.75rem;
  display: inline-block;
  font-size: 1.3em;
  line-height: 1;
  -webkit-transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.abstract .button.open-abstract.active::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.article-body .abstract .inner {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 2;
  grid-column: 2;
  -webkit-transform-origin: top;
  transform-origin: top;
  height: auto;
  display: block;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.article-body .abstract .inner.closed {
  display: none;
  height: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}

.article-body .text-body .editors-note {
  -ms-grid-column: 2;
  grid-column: 2;
}

.article-body .text-body .main-text {
  -ms-grid-column: 2;
  grid-column: 2;
}

.article-body .text-body .footnotes {
  -ms-grid-column: 2;
  grid-column: 2;
}

.article-body .text-body .references {
  -ms-grid-column: 2;
  grid-column: 2;
}

.article-body .text-body .article-bios {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 4;
  grid-row: 4;
  padding: 1rem;
  margin: 2rem 0;
}

.article-body p {
  max-width: 800px;
  line-height: 1.8rem;
  margin: 0 0 1.8rem;
  text-align: left;
  /* word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto; */
  /* text-wrap: balance; */
}

.article-body .underline {
  text-decoration: underline;
}

.article-body ol,
.article-body ul {
  margin: 0;
}

.article-body blockquote {
  font-size: 1rem;
  line-height: 1.8rem;
  padding: 0 2rem;
  color: #1a1a1a;
  font-style: normal;
  margin: 1.8rem 0;
  max-width: 800px;
}

@media (max-width: 599px) {
  .article-body blockquote {
    padding: 0 1rem;
  }
}

.article-body blockquote p {
  max-width: 10000px;
}

.article-body blockquote i {
  font-style: normal;
}

.article-body .text-body {
  padding: 3.6rem 0;
}

.article-body .text-body h1,
.article-body .text-body h2,
.article-body .text-body h3,
.article-body .text-body h4,
.article-body .text-body h5,
.article-body .text-body h6 {
  max-width: 750px;
  text-align: left;
  padding: 0;
  margin: 1rem 0 1rem 2rem;
}

.article-body .text-body strong,
.article-body .text-body em,
.article-body .text-body b {
  font-weight: normal;
}

.article-body .text-body .iframe-holder {
  position: relative;
  overflow: visible;
  padding-top: 56.25%;
  width: 100%;
  display: block;
}

.article-body .text-body .iframe-holder.fourthree {
  padding-top: 75%;
}

.article-body .text-body .iframe-holder iframe {
  margin-bottom: 5rem;
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.article-body .text-body .iframe-holder figcaption {
  margin-top: 4rem;
}

.article-body .text-body a {
  border: none;
}

.article-body .text-body sup {
  color: #3d3d3d;
  margin-bottom: 1ex;
}

.article-body .text-body sup a {
  border-bottom: none;
}

.article-body .text-body img {
  width: calc(100% + 2vmin);
  max-height: 80%;
}

.article-body .text-body figure {
  margin: 1em 0 2em;
  width: 800px;
  position: relative;
}

.article-body .text-body figure img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.article-grid .inner figure figcaption,
.article-body .text-body .custom-caption,
.article-body .text-body figure figcaption {
  /* margin: .5rem 5rem 1rem 3rem; */
  margin: 0.5rem 0 1rem 0;
  text-align: left;
  /* font-size: 16px;
  line-height: 22px; */
  font-size: 14px;
  font-weight: normal;
  color: #656565;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.article-body .text-body .footnotes,
.article-body .text-body .references {
  color: #4d4d4d;
  margin-top: 2em;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.article-body .text-body .footnotes:empty,
.article-body .text-body .references:empty {
  border-top: none;
}

.article-body .text-body .footnotes p,
.article-body .text-body .references p {
  margin-bottom: 0.8rem;
  line-height: 1.9rem;
}

.article-body .text-body .footnotes p sup,
.article-body .text-body .references p sup {
  margin-right: 5em;
}

.article-body .footnotes:empty {
  border-top: none;
}

.article-body .footnotes h4 {
  margin: 2rem 0;
}

.article-body .footnotes ol {
  list-style: decimal;
  padding: 0 0 0 4rem;
  counter-reset: my-counter;
}

@media (max-width: 599px) {
  .article-body .footnotes ol {
    padding: 0 0 0 1rem;
  }
}

.article-body .footnotes ol li {
  counter-increment: my-counter;
  position: relative;
}

.article-body .footnotes ol li::before {
  content: counter(my-counter);
  color: grey;
  position: absolute;
  font-size: 0.8rem;
  left: -4rem;
  top: 0;
}

@media (max-width: 599px) {
  .article-body .footnotes ol li::before {
    left: -1rem;
  }
}

.article-body .editors-note {
  font-size: 0.9em;
  border-top: 1px solid darkgray;
  border-bottom: 1px solid darkgray;
  margin-bottom: 2em;
}

.article-bios {
  padding: 1rem 0;
  font-size: 0.9em;
  width: 100%;
}

.article-bios header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* margin-bottom: 1rem; */
}

.article-bios header .small-icon {
  margin-right: 1rem;
}

.article-related {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100vh;
}

.article-slider {
  position: relative;
  max-width: 100vw;
  min-height: 100vh;
  margin-left: 0;
  z-index: 10000;
  scroll-snap-align: start;
}

@media (max-width: 599px) {
  .article-slider .flickity-prev-next-button {
    position: absolute;
    top: 15px;
    margin: 0;
    padding: 0;
  }
}

.article-slider .flickity-prev-next-button .next {
  right: 10px;
}

.article-slider .flickity-prev-next-button .previous {
  left: 10px;
}

.article-slider figcaption {
  font-style: italic;
  font-size: 0.8em;
  width: 60%;
  padding: 0 0 0 50px;
}

.article-slider .slide {
  background: white;
  width: 100%;
  height: 100vh;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

@media (max-width: 599px) {
  .article-slider .slide {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}

.article-slider .slide:focus {
  outline: none;
}

.article-slider .slide.article-bios {
  width: 100%;
  max-width: 100vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
}

@media (max-width: 599px) {
  .article-slider .slide.article-bios {
    padding: 100px 0;
  }
}

.article-slider .slide.article-bios .single-author {
  min-width: 800px;
}

@media (max-width: 599px) {
  .article-slider .slide.article-bios .single-author {
    min-width: 90vw;
  }
}

.article-slider .slide.fullbleed figure {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}

.article-slider .slide.fullbleed figure img {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.article-slider .slide.two-images {
  background-color: white;
}

.article-slider .slide.two-images div {
  width: 45vw;
  padding: 2vw;
}

.article-slider .slide.title .article-head {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
}

@media (max-width: 599px) {
  .article-slider .slide.title .article-head {
    position: relative;
    height: 100vh;
  }
}

.article-slider .slide.title .article-head .inner {
  -webkit-box-flex: 8;
  -ms-flex: 8;
  flex: 8;
  min-height: 30vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
}

@media (max-width: 599px) {
  .article-slider .slide.title .article-head .inner {
    padding: 1rem;
  }
}

.article-slider .slide.title .article-head .inner .authors {
  margin: auto 0 2rem;
  width: 100%;
}

.article-slider .slide.title .article-head .buttons {
  padding: 2vh 20vw;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 599px) {
  .article-slider .slide.title .article-head .buttons {
    padding: 1rem;
  }
}

.article-slider .slide.title .article-head .buttons ul {
  width: 50%;
}

.article-slider .slide.title .article-head h1 {
  font-size: calc(2rem + 4vmin);
  margin: 0;
}

.article-slider .slide.title .issue-header {
  padding: 2vh 20vw;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 599px) {
  .article-slider .slide.title .issue-header {
    padding: 1rem;
  }
}

.article-slider .slide.title .issue-header .number {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.article-slider .slide.title .issue-header .title {
  -webkit-box-flex: 8;
  -ms-flex: 8;
  flex: 8;
  margin: 0;
  font-size: calc(2rem + 1vmin);
}

@media (max-width: 599px) {
  .article-slider .slide.title .issue-header .title {
    font-size: 2rem;
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
  }
}

.article-slider .slide.foot {
  background-color: whitesmoke;
  position: relative;
}

.article-slider .slide.foot .article-foot {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

@media (max-width: 599px) {
  .article-slider .slide.foot .article-foot {
    position: relative;
  }
}

.article-slider .slide.foot .article-foot .article-bios {
  padding-top: 3rem;
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

.article-slider .slide.foot .article-foot .article-prevnext {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.article-slider .slide.large-title {
  font-size: calc(2em + 3vmin);
}

@media (max-width: 599px) {
  .article-slider .slide.large-title {
    font-size: 4rem;
  }
}

.article-slider .slide.large-title div {
  max-width: 900px;
  text-align: center;
}

.article-slider .slide.video {
  background-color: #3d3d3d;
}

.article-slider .slide.text-text {
  padding: 300px auto 200px;
}

.article-slider .slide.text-text div {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-flow: nowrap;
  flex-flow: nowrap;
}

@media (min-width: 1200px) {
  .article-slider .slide.text-text div {
    width: 40vw;
    padding: 3vmin;
  }
}

@media (min-width: 1800px) {
  .article-slider .slide.text-text div {
    width: 40vw;
    padding: 5vmin;
  }
}

@media (max-width: 599px) {
  .article-slider .slide.text-text div {
    width: 80vw;
    padding: 1rem;
  }
}

.article-slider .slide.image-text {
  background: white;
}

.article-slider .slide.image-text div {
  width: 30vw;
  margin: 0 4vw;
}

.article-slider .slide.image-text div.image {
  width: 40vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.article-slider .slide.image-text div.image img {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
  max-height: 60vh;
  width: auto;
}

@media (max-width: 599px) {
  .article-slider .slide.image-text div.image {
    width: 90vw;
    padding: 1rem;
  }
}

.article-slider .slide.image-text div.text {
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.article-slider .slide.image-text div.text div {
  padding: 10%;
}

@media (max-width: 599px) {
  .article-slider .slide.image-text div.text div {
    padding: 0;
  }
}

@media (max-width: 599px) {
  .article-slider .slide.image-text div {
    width: 90vw;
    padding: 1rem;
  }
}

.article-slider .slide.image-text.text-position-above {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.article-slider .slide.image-text.text-position-below {
  display: flex;
  align-items: center;
}

.article-slider .slide.image-text.text-position-below > .text,
.article-slider .slide.image-text.text-position-above > .text {
  flex-direction: column;
  align-items: center;
}

.article-slider .slide.image-text.text-position-above > .image,
.article-slider .slide.image-text.text-position-above > .text,
.article-slider .slide.image-text.text-position-below > .image,
.article-slider .slide.image-text.text-position-below > .text {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0;
}

.article-slider .slide.image {
  min-height: 100vh;
  background: white;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 599px) {
  .article-slider .slide.image {
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.article-slider .slide.image img {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
  max-height: 80vh;
  width: auto;
}

@media (max-width: 599px) {
  .article-slider .slide.image img {
    max-height: 90vh;
    padding: 0;
  }
}

.article-slider .slide.text > div {
  padding: 5vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 50vh;
}

@media (max-width: 599px) {
  .article-slider .slide.text div {
    /* width: 80vw; */
    padding: 1rem;
  }
}

.article-slider .slide.text .horizontal-position-left {
  align-items: flex-start;
}

.article-slider .slide.text .horizontal-position-center {
  align-items: center;
}

.article-slider .slide.text .horizontal-position-right {
  align-items: flex-end;
}

.article-slider .slide.text .vertical-position-left {
  justify-content: flex-start;
}

.article-slider .slide.text .vertical-position-center {
  justify-content: center;
}

.article-slider .slide.text .vertical-position-right {
  justify-content: flex-end;
}

.article-slider .slide.audio {
  background-color: silver;
  padding: 400px auto 200px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .article-slider .slide.audio {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 599px) {
  .article-slider .slide.audio {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.article-slider .slide.audio .notes {
  font-size: 0.8rem;
}

.article-slider .slide.audio .text {
  font-size: 1rem;
  padding: 2rem;
}

.article-slider .slide.audio .text h2 {
  max-width: 600px;
}

@media (max-width: 599px) {
  .article-slider .slide.audio .text {
    margin-top: 50px;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}

.article-slider .slide.audio figure {
  position: -webkit-sticky;
  position: sticky;
  top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.article-slider .slide.audio .player {
  max-width: 700px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
}

.article-slider .slide.audio .player audio {
  width: 100%;
}

.article-slider .slide.audio .player .player__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.article-slider .slide.audio .player .player__controls h2 {
  -webkit-box-flex: 4;
  -ms-flex: 4;
  flex: 4;
  margin-left: 2rem;
}

.article-slider .slide.audio .player .player__controls .player__button {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
  font-size: 5em;
  padding: 1rem 0;
  background-color: transparent;
}

.article-slider .slide.audio .player .player__controls .player__button:focus {
  outline: none;
}

.article-slider .slide.audio .player .player__controls .progress {
  -webkit-box-flex: 10;
  -ms-flex: 10;
  flex: 10;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin: 1rem 0;
  height: 2px;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
  background: rgba(0, 0, 0, 0.1);
  cursor: ew-resize;
}

.article-slider .slide.audio .player .player__controls .progress__filled {
  width: 50%;
  background: black;
  -webkit-box-flex: 0;
  -ms-flex: 0;
  flex: 0;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.article-slider .slide.audio .player .player__controls .length {
  font-size: 0.8rem;
  margin: 0 0 1rem;
  -ms-flex-item-align: end;
  align-self: flex-end;
  justify-self: flex-end;
}

.article-prevnext {
  padding: 4rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 200px;
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -ms-flex-line-pack: center;
      align-content: center; */
}

@media (max-width: 799px) {
  .article-prevnext {
    grid-gap: 50px;
  }
}

@media (max-width: 599px) {
  .article-prevnext {
    grid-template-columns: 1fr;
    grid-gap: 0;
    padding: 2rem 0;
    /* -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column; */
  }
}

.article-prevnext .snippet {
  /* max-width: 600px; */
  margin: 0;
}

.article-prevnext .prev,
.article-prevnext .next {
  /* -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; */
  padding: 1rem;
  /* min-width: 400px; */
  position: relative;
}

@media (max-width: 599px) {
  .article-prevnext .prev,
  .article-prevnext .next {
    min-width: 100px;
    margin: 0;
  }
}

/* .article-prevnext .prev:hover, .article-prevnext .next:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
} */

.article-prevnext .prev {
  margin-left: 100px;
  /* margin-right: 200px; */
}

@media (max-width: 599px) {
  .article-prevnext .prev {
    margin: 0;
  }
}

/* .article-prevnext .prev:hover {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
  -webkit-transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
} */

.article-prevnext .prev:hover::before {
  left: -90px;
}

@media (max-width: 599px) {
  .article-prevnext .prev:hover::before {
    left: -5px;
  }
}

.article-prevnext .prev:before {
  content: "";
  position: absolute;
  background: url("../i/icons/SVG/l-arrow.svg") no-repeat;
  background-position: center;
  background-size: 70px;
  width: 100px;
  height: 40px;
  left: -100px;
  /* -webkit-transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
          transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); */
  -webkit-transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1);
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1);
}

@media (max-width: 599px) {
  .article-prevnext .prev:before {
    left: 0;
    top: -20px;
    background-size: 40px;
  }
}

.article-prevnext .next {
  margin-right: 100px;
  grid-column: 2;
  /* margin-left: 200px; */
}

@media (max-width: 599px) {
  .article-prevnext .next {
    margin: 0; /* 1rem 0; */
    grid-column: 1;
  }
}

.article-prevnext .next::before {
  content: "";
  position: absolute;
  background: url("../i/icons/SVG/r-arrow.svg") no-repeat;
  background-size: 70px;
  background-position: center;
  width: 100px;
  height: 40px;
  right: -100px;
  /* -webkit-transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
         transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); */
  -webkit-transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1);
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1);
}

@media (max-width: 599px) {
  .article-prevnext .next::before {
    right: 0;
    bottom: -20px;
    background-size: 40px;
  }
}

/* .article-prevnext .next:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
} */

.article-prevnext .next:hover::before {
  right: -90px;
}

@media (max-width: 599px) {
  .article-prevnext .next:hover::before {
    right: -5px;
  }
}

.previous-events {
  max-width: 800px;
  margin: auto;
  padding: 0 0 10vh 0;
}

.loc-chair {
  font-size: 0.8em;
  margin-bottom: 1em;
  margin-bottom: 0;
}

.loc-chair p {
  margin: 0;
}

.grid-with-nav section.event-schedule {
  padding: 0;
}

.grid-with-nav section.event-schedule > h3 {
  padding: 1em 1em 0 1em;
}

.schedule-header {
  padding: 1rem;
}

.schedule-header p {
  padding: 0 0 1rem 0;
  margin: 0;
}

.schedule-header.preliminary h3 {
  margin: 0;
}

.schedule-header.has-download-link {
  position: relative;
}

.schedule-header.has-download-link .file-link {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0;
  margin: 0;
}

.event-schedule-day {
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.9); /* white; */
  /* margin: 1em 0 0 0; */
  padding: 0;
  border-bottom: 1px solid #e8e8e8;
}

.event-schedule-day .keynote {
  background-color: hsla(60, 100%, 90%, 0.7);
}

.event-schedule-day .keynote .loc-chair {
  margin-top: 1em;
}

.event-schedule-day .keynote .loc-chair p {
  margin: 0;
}

.event-schedule-day .keynote .stream-title .loc-chair {
  margin-top: 0;
}

.event-schedule-day h3 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 1.7em 1em 0.5em 1em;
  color: #090909; /* #767676; */
  background: #fff; /* rgb(245,245,245); */ /* #e8e8e8; */
  z-index: 500;
  margin: 0;
  border-bottom: 0.15em solid currentColor;
  font-family: "ModeratBold", sans-serif;
  font-weight: 400;
}

@media screen and (max-width: 599px) {
  .event-schedule-day h3 {
    padding-top: 2em;
  }
}

.event-schedule-day .event-schedule-item {
  position: relative;
  margin: 0;
  width: 100%;
  /* padding: 0 1em; */
  display: -ms-grid;
  display: grid;
  /* -ms-grid-columns: clamp(100px, calc(50px + 5vw), 120px) auto;
  grid-template-columns: clamp(100px, calc(50px + 5vw), 120px) auto; */
  /* -ms-grid-columns: clamp(95px, calc(50px + 5vw), 115px) auto;
  grid-template-columns: clamp(95px, calc(50px + 5vw), 115px) auto; */
  -ms-grid-columns: 96px auto;
  grid-template-columns: 96px auto;
  /* grid-gap: 1em; */
  border-top: 1px solid silver;
}

@media (max-width: 599px) {
  .event-schedule-day .event-schedule-item {
    max-width: 100vw;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.event-schedule-day .event-schedule-item header.open-abstract {
  cursor: pointer;
  position: relative;
}

.event-schedule-day .event-schedule-item.break {
  /* padding: 0 1em; */
  color: #8f8f8f;
  /* background-image: linear-gradient(45deg, transparent 25%, #e6ffe6 25%, #e6ffe6 50%, transparent 50%, transparent 75%, #e6ffe6 75%, #e6ffe6 100%);
  background-size: 28.28px 28.28px; */
  background-color: #e6ffe6;
  /* Hoeftade fram detta verde. */
}

.event-schedule-day .event-schedule-item.external {
  color: #8f8f8f;
  background-color: #cfd3ff;
}

.event-schedule-day .event-schedule-item.registration {
  color: #8f8f8f;
  background-color: #d9fcff;
  /* background-image: linear-gradient(45deg, transparent 25%, #d9fcff 25%, #d9fcff 50%, transparent 50%, transparent 75%, #d9fcff 75%, #d9fcff 100%);
  background-size: 28.28px 28.28px; */
}

.event-schedule-day .event-schedule-item.registration.full {
  color: #8f8f8f;
  background-color: #ffb8b8;
}

.event-schedule-day .event-schedule-item .time {
  font-size: 0.9em;
  padding: 1em 0 1em 1em;
}

@media (max-width: 599px) {
  .event-schedule-day .event-schedule-item .time {
    border-right: none;
    padding: 0.75em 0 0 1em;
  }
}

.event-schedule-day .event-schedule-item .time p {
  position: -webkit-sticky;
  position: sticky;
  top: 5em;
  padding: 0;
  margin: 0;
}

.event-schedule-day .event-schedule-item .abstract {
  opacity: 1;
  padding: 1em;
  font-size: 0.9em;
  /* -webkit-transition: .3s linear;
  transition: .3s linear; */
  overflow: hidden;
  height: auto;
  z-index: 0;
  position: relative;
  /* -webkit-transition-delay: .2s;
          transition-delay: .2s; */
}

.event-schedule-day .event-schedule-item .abstract.closed {
  /* -webkit-transition-delay: .2s;
          transition-delay: .2s; */
  padding: 0;
  opacity: 0;
  overflow: hidden;
  height: 0;
}

.event-schedule-day .event-schedule-item div .open-abstract {
  cursor: pointer;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.event-schedule-day .event-schedule-item div .open-abstract::after {
  font-size: 1.4em;
  content: "+";
  position: absolute;
  right: 1.5rem;
  bottom: 0.5rem;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  height: 1.5rem;
  width: 1rem;
  text-align: center;
  line-height: 1;
}

.event-schedule-day .event-schedule-item div .open-abstract.active::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.event-schedule-day .event-schedule-item div .open-abstract:hover {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  background: rgba(241, 241, 241, 0.65); /* #f0f0f0; */
}

.event-schedule-day .event-schedule-item .details {
  padding: 0; /* 0 1em */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-items: center;
}

.event-schedule-day .event-schedule-item .details h4 {
  font-size: 1.2em;
  line-height: 1.22;
  margin: -0.05em 0 0 0;
  /* margin: 1em 0 0; */
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
}

.event-schedule-day .event-schedule-item .details .open-abstract h4 {
  margin: 0;
}

@media screen and (max-width: 599px) {
  .event-schedule-day .event-schedule-item .details h4 {
    margin: 0;
  }
}

@media screen and (max-width: 599px) {
  .event-schedule-day .event-schedule-item .details .small-icon {
    margin: 0.25em 0 0.5em 0;
  }
}

.event-schedule-day .event-schedule-item .details > * {
  padding-left: 1em;
}

.event-schedule-day .event-schedule-item .details > header {
  padding-top: 1em;
  padding-right: 1em;
  padding-bottom: 1em;
}

.event-schedule-day .event-schedule-item .details.has-loc > header {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 1rem;
  /* outline: 2px dashed red; */
}

@media (max-width: 599px) {
  .event-schedule-day .event-schedule-item .details.has-loc > header {
    grid-template-columns: 1fr;
  }
}

.event-schedule-day .event-schedule-item .details.has-loc > header .loc-chair {
  text-align: right;
  margin: 0;
  color: #5c5c5c;
}

.event-schedule-day
  .event-schedule-item
  .details.has-loc
  > header.open-abstract
  .loc-chair {
  margin-bottom: 1rem;
}

@media (max-width: 599px) {
  .event-schedule-day
    .event-schedule-item
    .details.has-loc
    > header
    .loc-chair {
    text-align: left;
  }
}

@media (max-width: 599px) {
  .event-schedule-day .event-schedule-item .details > header {
    padding: 0.75em 1em;
  }
}

.event-schedule-day .event-schedule-item p.participant {
  margin: 0;
  font-size: 0.8em;
  color: #767676;
}

.event-schedule-day .event-schedule-item p.participant span::after {
  content: ", ";
}

.event-schedule-day
  .event-schedule-item
  p.participant
  span:last-of-type::after {
  content: "";
}

.event-schedule-day .event-schedule-item .event-schedule-stream-item-holder {
  /* display: -webkit-box;
  display: -ms-flexbox; */
  display: flex;
  /* -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column; */
  flex-direction: column;
  /* margin: 2em -2em 0; */
  /* padding: 0; */
  /* margin-left: 1rem; */
}

.event-schedule-day
  .event-schedule-item
  .event-schedule-stream-item-holder
  .event-schedule-stream-item {
  border-top: 1px solid darkgray;
  border-left: 1px solid darkgray;
  background-color: rgba(250, 250, 250, 1); /* #f4f4f4; */
  margin: 0;
  padding: 0; /* 0 0 2em; */
  /* padding: 0 2rem; */
  width: 100%;
  position: relative;
}

@media (max-width: 599px) {
  .event-schedule-day
    .event-schedule-item
    .event-schedule-stream-item-holder
    .event-schedule-stream-item {
    max-width: 100vw;
  }
}

.event-schedule-day
  .event-schedule-item
  .event-schedule-stream-item-holder
  .event-schedule-stream-item
  header {
  border-top: 1px dashed #c2c2c2;
  padding: 0.75em 1em;
  /* margin: 0 -2em; */
  /* padding: 1em 2em; */
}

@media (max-width: 599px) {
  .event-schedule-day
    .event-schedule-item
    .event-schedule-stream-item-holder
    .event-schedule-stream-item
    header {
    padding: 0.5rem 1rem;
  }
}

.event-schedule-day
  .event-schedule-item
  .event-schedule-stream-item-holder
  .event-schedule-stream-item
  header.stream-title {
  padding: 0.75em 1em 0.75em 1em;
  background-color: rgba(230, 230, 230, 0.5); /*#e8e8e8; */
  border-top: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media (max-width: 599px) {
  .event-schedule-day
    .event-schedule-item
    .event-schedule-stream-item-holder
    .event-schedule-stream-item
    header.stream-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.event-schedule-day
  .event-schedule-item
  .event-schedule-stream-item-holder
  .event-schedule-stream-item
  header.stream-title
  h5 {
  -webkit-box-flex: 6;
  -ms-flex: 6;
  flex: 6;
  margin-bottom: 0.4em;
  margin-bottom: 0;
}

.event-schedule-day
  .event-schedule-item
  .event-schedule-stream-item-holder
  .event-schedule-stream-item
  header.stream-title
  .loc-chair {
  font-size: 1em;
  text-align: end;
  -webkit-box-flex: 4;
  -ms-flex: 4;
  flex: 4;
  /* margin: 0; */
}

@media (max-width: 599px) {
  .event-schedule-day
    .event-schedule-item
    .event-schedule-stream-item-holder
    .event-schedule-stream-item
    header.stream-title
    .loc-chair {
    text-align: left;
  }
}

.event-schedule-day
  .event-schedule-item
  .event-schedule-stream-item-holder
  .event-schedule-stream-item
  header
  p,
.event-schedule-day
  .event-schedule-item
  .event-schedule-stream-item-holder
  .event-schedule-stream-item
  header
  h5 {
  margin: 0;
}

.event-schedule-day
  .event-schedule-item
  .event-schedule-stream-item-holder
  .event-schedule-stream-item
  header
  h5 {
  padding-right: 2rem;
}

.event-schedule-day
  .event-schedule-item
  .event-schedule-stream-item-holder
  .event-schedule-stream-item
  header
  p {
  font-size: 0.8em;
  color: #5c5c5c;
}

.event-schedule-day
  .event-schedule-item
  .event-schedule-stream-item-holder
  .event-schedule-stream-item
  header
  h5 {
  font-size: 1em;
}

.event-schedule-day
  .event-schedule-item
  .event-schedule-stream-item-holder
  .event-schedule-stream-item
  h5 {
  font-size: 1.2em;
  margin: 1em 0;
}

.venue-maps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 599px) {
  .venue-maps {
    grid-template-columns: 1fr;
  }
}

.venue-map {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: equally-spaced;
}

.venue-map .map-thumb {
  object-fit: cover;
  aspect-ratio: 1;
}

.venue-map a {
  display: flex;
  height: 90%;
  width: 100%;
  flex-wrap: wrap;
}

.venue-map label {
  position: relative;
  height: 85%;
}

.venue-map img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}

.venue-map input:checked + img {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  background: white;
  object-fit: contain;
  aspect-ratio: unset;
}

.venue-map input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
}

.venue-map input:checked {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}

.event-head {
  max-height: 80vh;
  overflow: hidden;
}

.event-head.documentation-post {
  max-height: none;
}

.event-head.documentation-post .inner.event {
  min-height: 100px;
}

.documentation .video-wrapper {
  margin: 0;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* aspect ration for 16:9 */
  /*padding-top: 20px;*/ /* you can add padding-top if needed */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.event-head .conference-hero-image {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
  -ms-grid-row: 1;
  grid-row: 1;
  width: 100%;
  width: 100vw;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: 0.5;
  z-index: 0;
  mix-blend-mode: multiply;
  max-width: none;
}

@media (max-width: 599px) {
  .event-head .conference-hero-image {
    height: 100vh;
    width: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.event-head .inner.event {
  margin-top: 5vh;
  margin-bottom: 5vh;
  padding: 1rem;
  -ms-grid-row: 1;
  grid-row: 1;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.event-head .inner.strand-event {
  margin-top: 5vh;
  padding: 1rem;
}

.event-head .inner.event h1 {
  margin: 1rem 0; /* 1rem; */
}

.event-head .inner.event h3,
.event-head .inner.event h4 {
  padding: 0;
  margin: 0; /* 0 0 0 1rem; */
}

.event-head .inner.event a.tickets {
  margin: 2em 0 0;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.5em 0.7em;
  width: 230px;
}

.event-head .inner.event a.tickets .small-icon {
  width: 35px;
  margin-left: 1em;
}

@media (max-width: 599px) {
  .event-head .inner.event {
    margin-top: 10vh;
    padding: 10px;
    max-width: 100vw;
  }
}

.bios header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bios header .small-icon {
  margin-right: 1rem;
}

.bios .single-author header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0.5rem;
}

@keyframes hideshow {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

@keyframes animatedBackground {
  0% {
    background-position: 0;
  }
  40% {
    background-position: 0;
  }
  50% {
    background-position: 10px;
  }
  60% {
    background-position: 0;
  }
  100% {
    background-position: 0;
  }
}

@keyframes hideshow {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.media {
  background-color: #e8e8e8;
  padding: 5vh 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

@media (max-width: 599px) {
  .media {
    padding: 5vh 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
  }
}

@media (min-width: 600px) {
  .media {
    padding: 8vh 3vw;
  }
}

@media (min-width: 1200px) {
  .media {
    padding: 5vh 2rem;
  }
}

.media .video-card {
  width: calc(25vw - 3rem);
  height: 24vh;
}

@media (max-width: 599px) {
  .media .video-card {
    width: 100%;
    height: 33vh;
    padding: 0;
    margin: 1rem 0 0;
  }
}

@media (min-width: 600px) {
  .media .video-card {
    width: calc(100% - 1rem);
  }
}

@media (min-width: 900px) {
  .media .video-card {
    width: calc(50% - 1rem);
  }
}

@media (min-width: 1200px) {
  .media .video-card {
    width: calc(25% - 2rem);
  }
}

.video-card {
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  position: relative;
}

.video-card .audio {
  padding: 5vh 0 0 0;
}

.video-card .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.video-card .image img.ytthumb {
  width: 120%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.video-card footer {
  margin-top: auto;
}

.video-card {
  padding: 0;
  margin: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
}

.video-card.home {
  margin: 0;
}

.video-card .authors .author::after {
  content: ", ";
}

.video-card .authors .author:last-child::after {
  content: "";
}

.video-card .authors .author:nth-last-child(2)::after {
  content: " & ";
}

.video-card .authors .author:only-child::before {
  content: "";
}

.video-card .authors .author:only-child::after {
  content: "";
}

@media (max-width: 599px) {
  .video-card .authors {
    margin: 0;
    padding: 0.5rem;
    font-size: 0.8rem;
  }
}

.video-card .small-icon {
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 70px;
  z-index: 3;
}

@media (max-width: 599px) {
  .video-card .small-icon {
    width: 40px;
    left: 0.5rem;
    top: 0.5rem;
  }
}

.video-card header,
.video-card footer {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  padding: 1rem;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (max-width: 599px) {
  .video-card header,
  .video-card footer {
    opacity: 1;
    padding: 0;
  }
}

.video-card header {
  padding-top: 2rem;
}

.video-card:not(.home) header {
  top: 2rem;
}

@media (max-width: 599px) {
  .video-card header {
    padding: 2rem 0.5rem 0;
  }
  .video-card:not(.home) header {
    top: 0;
  }
}

@media (max-width: 599px) {
  .video-card header h1 {
    font-size: 1.2rem;
    padding: 0;
    margin: 0;
  }
}

.video-card footer {
  bottom: -2rem;
}

@media (max-width: 599px) {
  .video-card footer {
    bottom: 0;
  }
}

@media (max-width: 599px) {
  .video-card .image img.ytthumb {
    opacity: 0.2;
  }
}

.video-card:hover .image img.ytthumb {
  opacity: 0.2;
  -webkit-transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-card:hover header,
.video-card:hover footer {
  opacity: 1;
}

.video-card:hover header {
  top: 0;
}

.video-card:hover footer {
  bottom: -2rem;
}

.video-player-frame {
  min-height: 105vh;
  background-color: #3d3d3d;
  color: white;
  padding: 5vh 15vw;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 6001;
}

@media (max-width: 599px) {
  .video-player-frame {
    padding: 1rem;
    min-height: 20vh;
    height: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
}

.video-player-frame .button-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 1em;
}

.video-player-frame .button-holder h4 {
  padding: 0 0 10px 0;
  margin: 0 1em 0 0;
}

.video-player-frame .button-holder button {
  color: white;
  background: none;
  text-align: left;
  padding: 0 0 10px 0;
  margin: 0 1em 0 0;
}

.video-player-frame .button-holder button:hover {
  border-bottom: 1px solid;
}

.video-player-frame p,
.video-player-frame div {
  color: #fff;
}

.vimeo-wrap {
  width: 100%;
}

.vimeo-wrap iframe {
  width: 100%;
  max-width: none;
}

.audio-player-frame {
  /* width: 100vw;
  padding: 5vh 15vw; */
  margin: 0;
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; */
  background-color: #3d3d3d;
  color: white;
  display: grid;
  grid-template-columns: 20vw minmax(20vw, 1000px) minmax(200px, 20vw);
  padding: 5vh 0 5vh 0;
}

.audio-player-frame figure {
  grid-column: 2;
}

.audio-player-frame a {
  color: white;
  text-decoration: underline;
}

@media (max-width: 599px) {
  .audio-player-frame {
    padding: 1rem;
    min-height: 20vh;
    height: auto;
    grid-template-columns: 1fr;
    /* -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center; */
  }
}

.audio-player-frame audio {
  width: 100%;
  margin-bottom: 1rem;
}

.video-header {
  padding-top: 5vh;
}

.single-media .video-header {
  padding-bottom: 2rem;
}

.video-header .inner {
  -ms-grid-column: 2;
  grid-column: 2;
}

.video-header .share-strip {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
}

.image-slideshow-frame .slider-wrap {
  height: 100vh;
}

.image-slideshow-frame .flickity-viewport {
  max-height: 100vh;
  height: 100% !important;
}

.image-slideshow-frame figure {
  margin: 0;
  width: 100%;
  height: 100%;
}

.image-slideshow-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-slideshow-frame .article-grid .inner {
  padding: 0;
}

.image-slideshow-frame .gallery-caption p {
  margin-bottom: 0;
  margin-top: 1rem;
}

.collection {
  padding: 4rem 10vw 4rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  background-color: white;
  overflow: auto;
}

.collection input {
  position: absolute;
  background: transparent;
  border: 0;
  font-size: 1.4rem;
  width: 60%;
  bottom: 1rem;
  left: 1rem;
  text-align: left;
  padding: 0;
}

.collection .collection-holder {
  background-color: #8fc59f;
}

.collection .collection-item {
  border-bottom: black 1px solid;
  padding: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
}

.collection .collection-item .title {
  -webkit-box-flex: 5;
  -ms-flex: 5;
  flex: 5;
  font-size: 1.4rem;
}

.collection .collection-item .delete {
  font-size: 0.8rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: end;
}

@media (max-width: 599px) {
  .collection .collection-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 90%;
    font-size: 0.8rem;
    padding: 0.4rem 0;
  }
}

.alert {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  font-size: 2rem;
  padding: 1rem;
}

.alert.success {
  background: green;
}

.alert.fail {
  background: red;
}

.collaborators-head,
.about-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  padding: 0;
  min-height: 90vh;
  background-color: black;
  position: relative;
}

@media (max-width: 599px) {
  .collaborators-head,
  .about-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
  }
}

.about-head:not(.practitioners-head) h2 {
  display: none;
}

.collaborators-head .collaborators-logo,
.about-head .about-logo,
.practitioners-head .practitioners-logo,
.about-head .inner {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* Ensure the list is styled properly */
.former-practitioners-list ul {
  list-style: disc; /* Displays bullets */
  padding-left: 20px; /* Indentation */
}

.former-practitioners-list li {
  margin-bottom: 10px; /* Space between list items */
}

.former-practitioners-list a {
  color: #0073aa; /* Link color */
  text-decoration: none; /* Remove underline from links */
}

.former-practitioners-list a:hover {
  text-decoration: underline; /* Underline on hover */
}

.about-head .about-logo {
  background-color: #f8e1d4;
  background-image: url("../i/SVG/jumblelogo5layers.svg");
  background-attachment: fixed;
  background-position: 5% 40%;
  background-size: 45%;
  background-repeat: no-repeat;
}

.about-head .inner {
  background-color: #f4d1be;
  font-size: calc(1rem + 1vmin);
  padding: 5rem 2rem;
}

.about section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  padding: 0;
  margin: 0;
}

.about section.contact {
  background-color: #85ade2;
}

.about section.contact .inner {
  padding: 0 1rem;
}

.about section.colophon {
  background-color: #b1d7bc;
}

.about section h2 {
  -webkit-box-flex: 100%;
  -ms-flex: 100%;
  flex: 100%;
  background-color: white;
  padding: 1rem 5rem;
  text-align: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  margin: 0;
}

.about section .person {
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 50%;
  -ms-flex: 50%;
  flex: 50%;
  padding: 2rem;
}

.about section .person:nth-of-type(4n + 1) {
  background-color: #b1d7bc;
}

.about section .person:nth-of-type(4n + 2) {
  background-color: #f8de92;
}

.about section .person:nth-of-type(4n + 3) {
  background-color: #85ade2;
}

.about section .person:nth-of-type(4n + 4) {
  background-color: #f4d1be;
}

@media (max-width: 599px) {
  .about section .person {
    -webkit-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
  }
}

.about section .inner {
  max-width: 800px;
  min-width: 50%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
  margin: 5rem auto;
}

.about nav {
  background-color: #f3c84b;
}

.about nav ul {
  padding: 1rem;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.about nav ul li {
  padding: 0;
  margin: 0;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1875);
  border-radius: 0.75rem;
}

.about nav ul li a {
  padding: 0.7rem 0.9rem;
  display: block;
}

.about nav ul li:hover {
  background: rgba(255, 255, 255, 0.333);
}

.practitioners-head .practitioners-logo {
  background-color: #e3565a;
  background-image: url(//parsejournal.com/wp-content/themes/playground/css/../i/SVG/sh.svg);
  background-attachment: fixed;
  background-position: 5% 40%;
  background-size: 45%;
  background-repeat: no-repeat;
}

.about section.current-practitioner h2 {
  padding: 0;
  background: transparent;
  text-align: left;
  font-size: calc(1em + 4vmin); /* Same as h1 on articles */
}

@media (max-width: 830px) {
  .current-practitioner .inner {
    padding: 0 1rem 0 1rem;
  }
}

.collaborators-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 599px) {
  .collaborators-head {
    grid-template-columns: 1fr;
  }
}

.collaborators-head .collaborators-logo {
  background-color: hsl(138, 32%, 57%);
  /* background-image: url("../i/SVG/Asset 83.svg"); */
  background-image: url("../i/icons/SVG/collabs.svg");
  background-attachment: fixed;
  background-position: 8vw center;
  background-size: 34vw;
  background-repeat: no-repeat;
}
@media (max-width: 599px) {
  .collaborators-head .collaborators-logo {
    background-position: center 10vh;
    background-size: 75vw;
  }
}

.collaborators-head .inner {
  background-color: hsl(138, 32%, 52%);
  font-size: calc(1rem + 1vmin);
  padding: 5rem 2rem;
}

.collaboration-rows {
  background-color: #fff; /* #f3c84b; */
}

.collaboration-rows > h3 {
  margin: 0;
  padding: 1rem;
  text-align: center;
  top: 0;
  position: sticky;
  background-color: #fff; /* #f3c84b; */
  z-index: 999;
}

.collaborator-cards {
  display: grid;
  /* grid-gap: 1rem; */
  grid-gap: 0;
  grid-template-columns: 1fr;
  padding: 0;
}
@media (min-width: 600px) {
  .collaborator-cards {
    grid-template-columns: 1fr 1fr;
  }
}
/* @media (min-width: 860px) {
  .collaborator-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
} */

.collaborator-card {
  background-color: #fff;
  padding: 2rem;
}

.collaborator-card:nth-child(4n + 1) {
  background-color: #b1d7bc;
}

.collaborator-card:nth-child(4n + 2) {
  background-color: #f8de92;
}

.collaborator-card:nth-child(4n + 3) {
  background-color: #85ade2;
}

.collaborator-card:nth-child(4n + 4) {
  background-color: #f4d1be;
}

.collaborator-card p a {
  word-break: break-word;
}

.collaborator-card .image {
  object-fit: contain;
}

.collaborator-card .image img {
  mix-blend-mode: multiply;
  width: 100%;
}

@media (min-width: 960px) {
  .collaborator-card {
    display: flex;
    flex-direction: row-reverse;
  }
}

@media (min-width: 960px) {
  .collaborator-card .image {
    width: 34%;
  }
}

@media (min-width: 960px) {
  .collaborator-card .image img {
    transform: rotate(90deg);
    transform-origin: bottom;
  }
}

@media (min-width: 960px) {
  .collaborator-card .texts-wrap {
    width: 66%;
    padding-right: 1em;
  }
}

.collaborator-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.collaborator-images img {
  opacity: 0.5;
  mix-blend-mode: multiply;
  width: 100%;
}

.research-drawer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  padding-bottom: 4rem;
  position: relative;
  -webkit-transform: translate(0);
  transform: translate(0);


  /* GPU compositing to avoid flicker/bleed */
  will-change: transform;
  transform: translateZ(0);
}

.research-drawer:hover {
  -webkit-transform: translate(0);
  transform: translate(0);
}

.research-drawer.article-grid .inner {
  padding: 0;
}

.research-drawer.article-grid .inner .snippet:last-child {
  margin-bottom: 0;
}

.research-drawer header h2 {
  border-bottom: 1px dotted rgba(40, 40, 40, 0.5);
  max-width: 765px;
  width: 100%;
}

.content-area.light-text div .side-nav a,
.content-area.light-text .theme-item-home div,
.content-area.light-text .theme-item-home p,
.content-area.light-text .theme-item-home h1,
.content-area.light-text .theme-item-home h2,
.content-area.light-text .theme-item-home h3,
.content-area.light-text .theme-item-home h4,
.content-area.light-text .theme-item-home h5 {
  color: rgb(230, 230, 230);
}

.content-area.light-text .theme-item-home a:hover {
  color: rgb(240, 240, 240);
}

.content-area.light-text .event-head > div > *,
.content-area.light-text .event-head > * {
  color: rgb(230, 230, 230);
}

.conference,
.event {
  padding: 0;
  display: -ms-grid;
  display: grid;
  grid-column-gap: 4em;
  min-height: 100vh;
  background-color: whitesmoke;
}

.site-main.event {
  min-height: 100%;
}

.conference h1,
.event h1 {
  font-size: clamp(25px, calc(1.5rem + 2vmin), 50px); /* calc(2rem + 4vmin); */
  line-height: 1.15;
}

.conference p,
.event p {
  max-width: 700px;
}

.conference .information,
.event .information {
  min-height: 15vh;
  padding: 5vh calc(1vw + 25vw);
}

.conference-item {
  min-height: 100vh;
  width: 100vw;
  padding: 10vh 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  justify-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: black;
  /* position: -webkit-sticky; position: sticky; */
  position: relative !important;
  top: 0;
}

.conference-item h1,
.conference-item h3,
.conference-item h4 {
  margin: 0;
}

.conference-item .conference-date h2 {
  /* font-size: calc(.6em + .2vmax); */
  font-size: calc(1rem + 0.2vmax);
  margin: 0;
  line-height: 1;
}

.conference-item .image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  mix-blend-mode: multiply;
}

.conference-item .image img {
  opacity: 0.4;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
}

/* Specific exception for conference items with background-color #ff3c00 */
.conference-item[style*="background-color: #ff3c00"] .image {
  mix-blend-mode: normal !important;
  -webkit-filter: none !important;
  filter: none !important;
}

.conference-item[style*="background-color: #ff3c00"] .image img {
  opacity: 1 !important;
}

.conference-item header {
  width: 50vw;
  padding: 1em;
  margin: 0 25vw;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
  z-index: 1;
}

.conference-item header h1 {
  margin: 0 0 0.25em 0;
}

body.page-id-6001 .conference-item {
  font-size: 16px;
}

.hero-text-wrap {
  padding: 0.5rem;
  /* opacity: 0.825; */
  position: relative;
}

.hero-text-wrap .bg-color {
  opacity: 0.825;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.hero-text-wrap .texts {
  z-index: 1;
  position: relative;
}

.hero-text-wrap h1.title {
  font-size: clamp(20px, calc(2em + 2vmin), 50px);
}

.hero-text-wrap h2 {
  margin: 0 0 0.2em 0;
  font-size: 1.1rem;
}

.plenary-contributors-list {
  margin-top: 1rem;
}

.plenary-contributors-list > li,
.plenary-contributors-wrap > * {
  font-size: 1rem;
  display: block;
}

.plenary-contributors-list > li::before,
.plenary-contributors-wrap > *::before {
  content: "—";
  padding: 0 0.25rem 0 0;
}

.conference-item header .button {
  margin-top: 2em;
  margin-left: -0.6rem;
  padding: 0.6rem 0.7rem;
  color: #000;
  position: absolute;
  border: 0;
}

.conference-item header .button::after {
  content: "";
  background-image: url("../i/icons/SVG/return.svg");
  background-position: 20px 15px;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -2rem;
  right: 2rem;
  width: 70px;
  height: 100%;
  opacity: 1;
  background-color: inherit;
  top: 0;
  right: -70px;
  background-size: 35px 20px;
}

@media (max-width: 805px) {
  .conference-item {
    min-height: 100vh;
    width: 100vw;
    padding: 2vmin;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: black;
    position: relative;
    top: 0;
  }
  .conference-item .image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    mix-blend-mode: multiply;
  }
  .conference-item .image img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 180vh;
    width: auto;
  }
  .conference-item header {
    width: 98vw;
    margin: 1vw;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -ms-grid-column-align: center;
    justify-self: center;
    z-index: 1;
  }
  .conference-item header h1 {
    margin: 0 0 0.25em 0;
  }
  .conference-item header .button {
    position: relative;
    z-index: 2;
    background-color: transparent !important;
  }
}

::-webkit-scrollbar {
  margin-left: 5px;
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: black;
}

progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.15rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: black;
  /* color: red; */
  mix-blend-mode: difference;
  border-radius: 0.5rem;
}

progress::-webkit-progress-bar {
  background-color: transparent;
}

progress::-webkit-progress-value {
  background-color: #fff;
}

progress::-moz-progress-value {
  background-color: #fff;
}

progress::-moz-progress-bar {
  background-color: #fff;
}

.site-main {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "ModeratLight", sans-serif;
  font-weight: normal;
  line-height: 1.275;
}

.small-icon {
  width: 70px;
}

@media (max-width: 599px) {
  .small-icon {
    width: 40px;
  }
}

.post-type-image {
  position: relative;
}

.post-type-image .tip {
  position: absolute;
  left: 50px;
  right: 0;
  top: 0;
  bottom: 0;
  width: 200px;
  opacity: 0;
  -webkit-transition: 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.post-type-image:hover .tip {
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 80px;
  -webkit-transition: 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

button {
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border: 0;
  font-size: 1.1em;
  padding: 0.8em;
  border-radius: 0;
  position: relative;
  width: auto;
}

button a {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

button.question {
  width: auto;
  padding-left: 50px;
}

button.question::before {
  content: "?";
  position: absolute;
  left: 20px;
}

button.pdf {
  width: auto;
  padding-left: 50px;
}

button.pdf::before {
  content: url("/wp-content/themes/transition/i/SVG/file-pdf.svg");
  position: absolute;
  left: 20px;
}

button.go {
  padding-right: 50px;
}

button.go::before {
  content: " →";
  position: absolute;
  right: 20px;
}

.button.pdf p.tip {
  margin: 0;
}

.pdf-buttons .audio-link.button p.tip {
  left: 70px !important;
  opacity: 1 !important;
  width: 170px !important;
}

.pdf-buttons .pdf-link.button p.tip {
  /* left: 70px!important; */
  /* opacity: 1!important; */
  width: 200px !important;
}

.pdf-buttons .generated.button p.tip {
  /* left: 70px!important; */
  /* opacity: 1!important; */
  width: 150px !important;
}

.pdf-buttons .generate.button p.tip {
  /* left: 70px!important; */
  /* opacity: 1!important; */
  text-decoration: underline;
}

body {
  font-family: "Moderat", sans-serif;
  font-size: 18px;
}

p,
ul,
ol,
li {
  max-width: 800px;
}

.grid-with-nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20vw minmax(20vw, 1000px) minmax(150px, 20vw);
  grid-template-columns: 20vw minmax(20vw, 1000px) minmax(150px, 20vw);
  background-color: whitesmoke;
  padding: 0;
  position: relative;
  z-index: 800;
}

.grid-with-nav .side-nav ul {
  top: 10vh;
  padding: 4rem 0 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.grid-with-nav .side-nav > ul {
  position: -webkit-sticky;
  position: sticky;
}

@media (max-width: 599px) {
  .grid-with-nav .side-nav ul {
    padding: 1rem;
  }
}

.grid-with-nav .side-nav ul li {
  display: block;
  margin: 0;
}

.grid-with-nav .side-nav ul ul {
  padding: 0 0 0 1rem;
}

@media (max-width: 599px) {
  .grid-with-nav {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.grid-with-nav section {
  padding: 1rem;
  margin: 4em 0;
  max-width: 1000px;
  background-color: rgba(240, 240, 240, 0.65); /*#e8e8e8; */
}

@media (max-width: 599px) {
  .grid-with-nav section {
    padding: 1rem;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.grid-with-nav section ol,
.grid-with-nav section ul {
  padding: 0;
}

.grid-with-nav section:not(.event-schedule):focus {
  outline: none;
  background-color: white;
}

.grid-with-nav section h2.title {
  margin-bottom: 4rem;
}

.grid-with-nav section h3 {
  margin: 0 0 2em;
}

.grid-with-nav section h3.date {
  margin: 0;
  display: flex;
  align-items: flex-end;
}

.grid-with-nav section h3.date .daycount {
  flex: 1;
}

.grid-with-nav section h3.date .date-string {
  font-size: 1rem;
  font-family: "ModeratLight", sans-serif;
  font-weight: 400;
}

.grid-with-nav section h3.date .weekday {
  font-size: 1rem;
  margin-right: 0.2rem;
}

.article-grid {
  display: -ms-grid;
  display: grid;
}

.article-grid header {
  -ms-grid-column: 2;
  grid-column: 2;
}

.article-grid .inner {
  -ms-grid-column: 2;
  grid-column: 2;
  padding: 1rem 0;
}

.article-grid.issue-header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.article-grid .large {
  font-size: calc(2rem + 2vmin);
}

.article-grid .article-bios {
  -ms-grid-column: 2;
  grid-column: 2;
}

@media (max-width: 599px) {
  .article-grid {
    -ms-grid-columns: 3vw minmax(20vw, 1000px) 3vw;
    grid-template-columns: 3vw minmax(20vw, 1000px) 3vw;
  }
}

@media (min-width: 600px) {
  .article-grid {
    -ms-grid-columns: 10vw minmax(20vw, 1000px) minmax(200px, 20vw);
    grid-template-columns: 10vw minmax(20vw, 1000px) minmax(200px, 20vw);
  }
}

@media (min-width: 1200px) {
  .article-grid {
    -ms-grid-columns: 20vw minmax(20vw, 1000px) minmax(200px, 20vw);
    grid-template-columns: 20vw minmax(20vw, 1000px) minmax(200px, 20vw);
  }
}

.article-head.light-text .issue-header > *,
.article-head.light-text .front-matter > *,
.video-header.light-text .front-matter > * {
  color: rgb(230, 230, 230);
}

.article-head .issue-header .number,
.video-header .issue-header .number {
  margin-right: 3rem;
  padding: 0;
}

@media (max-width: 599px) {
  .article-head .issue-header .number,
  .video-header .issue-header .number {
    margin-right: 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 599px) {
  .article-head .issue-header,
  .video-header .issue-header {
    padding-top: 20px;
  }
}

@media (max-width: 599px) {
  .article-head .issue-header .inner,
  .video-header .issue-header .inner {
    padding: 1rem 0;
  }
}

.article-head .inner,
.video-header .inner {
  width: 100%;
  padding: 2rem 0;
}

.article-head .inner .title,
.video-header .inner .title {
  margin: 0;
}

.article-head .inner .front-matter,
.article-head .inner .buttons,
.video-header .inner .front-matter,
.video-header .inner .buttons {
  -ms-grid-column: 2;
  grid-column: 2;
  max-width: 765px;
}

.article-head .inner h1,
.article-head .inner h2,
.video-header .inner h1,
.video-header .inner h2 {
  max-width: 1000px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin: 0;
}

.article-head .inner h1,
.video-header .inner h1 {
  font-size: calc(1em + 4vmin);
  line-height: 1.33;
}

.article-head .inner h2,
.video-header .inner h2 {
  font-size: calc(1em + 2vmin);
  margin: 0 0 1em 0;
}

.article-head .inner .authors,
.video-header .inner .authors {
  font-size: 1.2em;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.article-head .inner button,
.video-header .inner button {
  margin: 4em 0;
  width: auto;
  max-width: 300px;
}

.article-head .buttons .inner,
.video-header .buttons .inner {
  margin: 0;
  padding: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.article-head .buttons .inner ul,
.video-header .buttons .inner ul {
  margin: 0;
  padding: 0;
}

.article-head .buttons .pdf-buttons,
.video-header .buttons .pdf-buttons {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  justify-self: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.article-head .buttons .pdf-buttons .button,
.video-header .buttons .pdf-buttons .button {
  font-size: 0.8rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 40px;
  position: relative;
}

.article-head .buttons .pdf-buttons .button .tip,
.video-header .buttons .pdf-buttons .button .tip {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  /* text-align: center; */
  -webkit-transition: 0.2s cubic-bezier(0.6, -0.28, 0.735, 0.045);
  transition: 0.2s cubic-bezier(0.6, -0.28, 0.735, 0.045);
  width: 100px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  margin: 0;
}

.article-head .buttons .pdf-buttons .button svg,
.video-header .buttons .pdf-buttons .button svg {
  width: 50px;
  /* margin-right: 10px; */
}

@media (max-width: 599px) {
  .article-head .buttons .pdf-buttons .button svg,
  .video-header .buttons .pdf-buttons .button svg {
    width: 30px;
  }
}

.article-head .buttons .pdf-buttons .button:hover .tip,
.video-header .buttons .pdf-buttons .button:hover .tip {
  left: 70px;
  opacity: 1;
}

.notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 10vh 2.5vw;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.notice .inner {
  max-width: 50vw;
  min-width: 400px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
}

@media (max-width: 599px) {
  .notice .inner {
    min-width: 100px;
    width: 100%;
  }
}

.notice.red {
  background: #fe7f82;
}

.snippet {
  grid-gap: 0;
  margin: 0;
  position: relative;
  background-color: none;
  margin-bottom: 3rem;
  padding: 0;
  width: 100%;
  max-width: 765px;
}

body.logged-in .snippet.journal {
  outline: 2px dashed greenyellow;
}

.snippet a {
  display: -ms-grid;
  display: grid;
  /* -ms-grid-columns: 100px 1fr .2fr;
      grid-template-columns: 100px 1fr .2fr; */
  -ms-grid-rows: 24px auto;
  grid-template-rows: 24px auto;
  grid-gap: 0;
}

.snippet a .dates {
  text-align: end;
  justify-self: end;
  grid-column: 3;
}

.snippet p {
  grid-column: 0;
  -ms-grid-row: 5;
  grid-row: 5;
  font-size: 0.9em;
}

.snippet button {
  margin-top: 1em;
  -ms-grid-column: 3;
  grid-column: 3;
  -ms-grid-row: 1;
  grid-row: 1;
  justify-self: flex-end;
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: auto;
  font-size: 0.8em;
}

.snippet header {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
}

.snippet header h3 {
  margin: 1rem 0 0 0;
  font-size: calc(1rem + 1.2vmin);
}

.snippet header h4 {
  font-size: calc(1rem + 0.8vmin);
  margin-bottom: 2rem;
}

.snippet .authors {
  margin-top: 0.5rem;
}

.snippet .authors .author::after {
  content: ", ";
}

.snippet .authors .author:last-child::after {
  content: "";
}

.snippet .authors .author:nth-last-child(2)::after {
  content: " & ";
}

.snippet .authors .author:only-child::before {
  content: "";
}

.snippet .authors .author:only-child::after {
  content: "";
}

.snippet .small-icon {
  -ms-grid-row: 1;
  grid-row: 1;
  width: 70px;
  padding: 0;
}

@media (max-width: 599px) {
  .snippet .small-icon {
    width: 40px;
  }
}

.snippet p,
.snippet h4 {
  margin: 0;
}

.snippet p {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
}

.button {
  color: #2c2d2c;
  cursor: pointer;
}

/* .button:hover {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
  -webkit-transition: 0.3s cubic-bezier(0.6, -0.28, 0.735, 0.045);
  transition: 0.3s cubic-bezier(0.6, -0.28, 0.735, 0.045);
} */

ul.share-buttons {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0;
  padding: 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

ul.share-buttons p {
  margin: 0 1rem 0 0;
  padding: 0;
  width: 50px;
}

ul.share-buttons p svg {
  width: 50px;
  height: 18px;
}

ul.share-buttons ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: top left;
  transform-origin: top left;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

ul.share-buttons:hover ul {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

ul.share-buttons li {
  display: block;
  padding: 0 10px;
  margin: 0;
}

ul.share-buttons li svg {
  fill: black;
  height: 18px;
  width: 18px;
}

ul.share-buttons li svg:hover {
  fill: grey;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.authors {
  margin-top: 0.5rem;
}

.authors .author::after {
  content: ", ";
}

.authors .author:last-child::after {
  content: "";
}

.authors .author:nth-last-child(2)::after {
  content: " & ";
}

.authors .author:only-child::before {
  content: "";
}

.authors .author:only-child::after {
  content: "";
}

.editors {
  margin-top: 0.5rem;
}

.editors .editor::after {
  content: ", ";
}

.editors .editor:last-child::after {
  content: "";
}

.editors .editor:nth-last-child(2)::after {
  content: " & ";
}

.editors .editor:only-child::before {
  content: "";
}

.editors .editor:only-child::after {
  content: "";
}

.section-title {
  padding: 2vh 5vh;
}

ul {
  max-width: 700px;
  padding: 0;
}

ul li {
  padding: 0;
}

.event-body section ul {
  padding-left: 1rem;
}

.event-body section ul li {
  display: list-item;
}

.related {
  background: white;
}

.iframe-holder {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  width: 100%;
}

.iframe-holder iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.cls-2 {
  -webkit-animation: hideshow 10s ease infinite;
  animation: hideshow 10s ease infinite;
}

p.underline {
  border-bottom: 1px solid;
}

p a {
  border-bottom: 1px solid currentColor; /* silver */
}

.holder.issues {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
}

.single-issue {
  padding: 5vh 10vw;
}

.single-issue .full.image {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.single-issue .full.image img {
  max-width: 80vh;
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  mix-blend-mode: multiply;
}

.single-issue .full.image img:hover {
  -webkit-filter: none;
  filter: none;
  mix-blend-mode: normal;
}

.single-issue .full.image:hover .credit {
  opacity: 1;
}

.single-issue .full.image .credit {
  opacity: 0;
}

.single-issue .full.image .articles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.single-issue .full.image .articles .article-card {
  width: 50%;
}

.single-issue .journal-content {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
}

.single-issue .journal-content li {
  display: block;
  padding: 2vh 0;
  border-top: 1px solid;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
  grid-gap: 2em;
}

.single-issue .journal-content li div span {
  display: block;
  clear: both;
}

.single-issue .contribute-information {
  margin: 0 5vw;
  padding: 2.5vw 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
}

.single-issue .contribute-information section {
  padding: 5vh 0 10vh;
}

.single-issue .contribute-information h1 {
  padding: 0;
  margin: 0;
}

.single-issue .contribute-information ol {
  padding: 0;
}

.single-issue .contribute-information ol li {
  margin-bottom: 2 0px;
}

.single-issue .news-item {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}

.single-issue .news-item p {
  margin: 0;
}

.single-issue .section-header {
  position: fixed;
  z-index: -4;
  padding: 4vh 2.5vw 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5001;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single-issue .section-header h1 {
  font-size: calc(5em + 2vmin);
  text-align: left;
  margin: 0;
}

.search-results {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
}

.search-results .search-header {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 10vh 0 2vh;
  min-height: 300px;
  background-color: #e8e8e8;
}

.search-results main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 5vh 0;
}

.search-results article {
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.33);
  border: 1px solid rgba(0, 0, 0, 0.05);
  max-width: 765px;
}

.search-results article.light-text * {
  color: #fff;
  fill: currentColor;
}

.search-results article .snippet {
  margin-bottom: 0;
}

.search-results article header h3 {
  margin-top: 0.5rem;
}

/* Search result page */
.search-result-pagination .nav-links {
  width: 100%;
  max-width: 765px;
  display: flex;
  flex-direction: row;
  flex-flow: row-reverse;
  justify-content: center;
  gap: 1rem;
}

.error404 .site-content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: 100%;
}

.error404 .site-content .content-area {
  flex: 1;
  display: grid;
  grid-template-columns: 20vw minmax(20vw, 1000px) minmax(200px, 20vw);
  padding: 12rem 0 2rem 0;
}

@media (max-width: 599px) {
  .error404 .site-content .content-area {
    grid-template-columns: 1fr;
    padding: 6rem 2rem 2rem 2rem;
  }
}

.error404 .site-content .content-area .site-main {
  grid-column: 2;
}

@media (max-width: 599px) {
  .error404 .site-content .content-area .site-main {
    grid-column: 1;
  }
}
.error404 .site-content .site-footer {
  min-height: unset;
  max-height: 20vh;
}

@media (max-width: 599px) {
  .error404 .site-content .site-footer {
    min-height: 25vh;
    max-height: none;
  }
}
/*# sourceMappingURL=styles.css.map */

.index-top {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "v2-col2"
    "v2-upcoming"
    "v2-current";
  overflow: hidden;

  --side-distance-hh: 1.5rem;
  --side-distance-dt: 2rem;
  --nav-items: 7;
  --nav-item-height: 4.5rem;
  --nav-item-height-hover: 8rem;
  --nav-height: calc(var(--nav-items) * var(--nav-item-height));
  --nav-height-without-active: calc(
    var(--nav-height) - var(--nav-item-height-hover)
  );
  --nav-item-height-not-hover: calc(
    var(--nav-height-without-active) / (var(--nav-items) - 1)
  );

  --hh-nav-item-height: 4rem;
  --hh-nav-item-height-hover: 7rem;
  --hh-nav-height: calc(var(--nav-items) * var(--hh-nav-item-height));
  --hh-nav-height-without-active: calc(
    var(--hh-nav-height) - var(--hh-nav-item-height-hover)
  );
  --hh-nav-item-height-not-hover: calc(
    var(--hh-nav-height-without-active) / (var(--nav-items) - 1)
  );
}

@media screen and (min-width: 900px) {
  .index-top {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "v2-current v2-col2"
      "v2-upcoming v2-col2";
  }
}

.index-top > * > h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  margin: -0.5rem 0 2rem 0;
  padding: 0 var(--side-distance-hh);
}
@media screen and (min-width: 900px) {
  .index-top > * > h3 {
    padding: 0 var(--side-distance-dt);
  }
}
.index-top > * > h3 svg {
  width: 3rem;
  height: 1rem;
  margin-right: 0.5rem;
}

.index-top .currently {
  grid-area: v2-current;
  background-color: #feb2b4;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  min-height: 9rem;
}
@media screen and (min-width: 900px) {
  .index-top .currently {
    padding: 1rem 2rem;
    min-height: 15rem;
  }
}

.index-top .currently p {
  margin: 0;
}

.index-top .upcoming {
  grid-area: v2-upcoming;
  background-color: #fe7f82;
  padding: var(--side-distance-hh) 0 0 0;
}
@media screen and (min-width: 900px) {
  .index-top .upcoming {
    padding: var(--side-distance-dt) 0 0 0;
  }
}

.index-top .col-2 {
  grid-area: v2-col2;
}

.index-top .upcoming .items {
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
}
@media screen and (min-width: 900px) {
  .index-top .upcoming .items {
    height: calc(100% - 56px);
  }
}

.index-top .upcoming .snippet {
  max-width: none;
  margin-bottom: 0;
}
/* .index-top .upcoming .snippet:nth-child(even) {
  background-color: rgba(0,0,0,0.05);
}
.index-top .upcoming .snippet:nth-child(odd) {
  background-color: rgba(255,255,255,0.1);
} */

.index-top .upcoming .snippet:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.index-top .upcoming .snippet h3 {
  font-size: 1.25rem;
  line-height: 1.33;
  margin-top: 0.5rem;
}

.index-top .upcoming .snippet a {
  padding: 1rem var(--side-distance-hh);
  padding: 1rem;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1rem auto;
}
@media screen and (min-width: 900px) {
  .index-top .upcoming .snippet a {
    padding: 1rem var(--side-distance-dt);
    padding: 1rem;
  }
}

.index-top .upcoming .snippet .dates {
  line-height: 1;
  font-size: 0.9rem;
}

.index-top .upcoming .snippet .authors {
  line-height: 1.33;
  margin-top: 0.25rem;
}

.index-top .upcoming .snippet div.small-icon {
  width: 100%;
  height: 1rem;
  display: flex;
}

.index-top .upcoming .snippet .small-icon > svg {
  width: 3rem;
  height: 1rem;
}

.index-top .upcoming .snippet .tip {
  line-height: 1;
  left: 3.75rem;
  width: auto;
  opacity: 1;
}

.index-top .social {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1rem var(--side-distance-hh);
  margin: auto -1rem 0 -1rem;
}
@media screen and (min-width: 900px) {
  .index-top .social {
    padding: 1rem var(--side-distance-dt);
  }
}

.index-top .social h4 {
  margin: 0 0 10px 0;
}

.index-top .about {
  grid-area: v2-about;
  background-color: #e8e8e8;
  color: #285ea6;
  font-size: calc(1rem + 1vmin);
  font-size: clamp(1rem, calc(1vw + 0.5rem), 1.66rem);
  padding: 2rem 1.5rem;

  height: calc(100% - var(--hh-nav-height));
}
@media screen and (min-width: 900px) {
  .index-top .about {
    height: calc(100% - var(--nav-height));
  }
}

.index-top .about p {
  margin: 0;
  max-width: 50ch;
}

.index-top .nav {
  grid-area: v2-navigation;
  display: flex;
  flex-direction: column;
  background-color: #519d68; /* Last item fallback while transitioning. */

  --inner-padding: 1.5rem;

  height: var(--hh-nav-height);
}
@media screen and (min-width: 900px) {
  .index-top .nav {
    height: var(--nav-height);
  }
}
.index-top .nav > a {
  position: relative;
  height: var(--hh-nav-item-height);
  transition: 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media screen and (min-width: 900px) {
  .index-top .nav > a {
    height: var(--nav-item-height);
  }
}

.index-top .nav > a:hover {
  height: var(--hh-nav-item-height-hover);
}
@media screen and (min-width: 900px) {
  .index-top .nav > a:hover {
    height: var(--nav-item-height-hover);
  }
}

.index-top .nav:hover > a:not(:hover) {
  height: var(--hh-nav-item-height-not-hover);
}
@media screen and (min-width: 900px) {
  .index-top .nav:hover > a:not(:hover) {
    height: var(--nav-item-height-not-hover);
  }
}

.index-top .nav > a > * {
  padding: 1rem var(--inner-padding) 0 var(--inner-padding);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.index-top .nav a h3 {
  font-size: clamp(1.5rem, calc(1.5vw + 0.85rem), 2rem);
}

.index-top .nav a svg,
.index-top .nav a p {
  opacity: 0;
}

.index-top .nav a svg {
  position: absolute;
  right: 1rem;
  top: 5.5rem;
  height: 1.25rem;
}
@media screen and (min-width: 900px) {
  .index-top .nav a svg {
    top: 5.5rem;
  }
}
.index-top .nav a:hover svg,
.index-top .nav a:hover p {
  opacity: 1;
}

.index-top .nav > *:nth-of-type(1) div {
  background-color: #d9d9d9;
  color: #285ea6;
}

.index-top .nav > *:nth-of-type(2) div {
  background-color: #285ea6;
  color: #fff;
}

.index-top .nav > *:nth-of-type(3) div {
  background-color: #f1c133;
}

.index-top .nav > *:nth-of-type(4) div {
  background-color: #ffffe0;
}

.index-top .nav > *:nth-of-type(5) div {
  background-color: #f0c2a8;
}

.index-top .nav > *:nth-of-type(6) div {
  background-color: #e3565a;
}

.index-top .nav > *:nth-of-type(7) div {
  background-color: #519d68;
}

.index-top .nav > a > div > * {
  margin: 0;
}

.message-area div.light-text div {
  color: #fff;
}

.message-area > div > div {
  padding: 2rem 2rem;
}

.message-area > div h3 {
  margin-top: 0;
}

.message-area .messages-post:not(:last-child) {
  margin: 0 0 2rem;
}
.message-area .messages-post p {
  margin: 0 0 0.5rem 0;
}

.message-area .small {
  opacity: 0.8;
  font-size: 90%;
}

.journal-blocks {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 25vh;
}
.journal-blocks > * {
  display: grid;
  grid-template-columns: 5fr 3fr;
  grid-template-areas: "journal-title journal-image" "journal-texts journal-image" "journal-texts journal-image";
  grid-template-rows: 4rem auto auto;
  padding: 1rem;
}

@media screen and (min-width: 900px) {
  .journal-blocks {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .journal-blocks > * {
    display: flex;
    flex-direction: column;
  }
}

.journal-blocks > .empty {
  background-color: #f3b5b6;
  position: relative;
  z-index: 0;
}

.journal-blocks > .empty > h3 {
  z-index: -1;
}

.journal-blocks > .empty > h3 + svg {
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.inner-with-articles > * > svg,
.journal-blocks svg {
  height: 1rem;
  width: auto;
  fill: currentColor;
}

.inner-with-articles > * h3 svg,
.journal-blocks > * h3 svg {
  margin-right: 0.5rem;
}

.journal-blocks > * h3 {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  margin: 0 0 1.5rem 0;
  color: currentColor;
  font-size: 1.25rem;
  line-height: 1.75rem;
  grid-area: journal-title;
}

@media screen and (min-width: 900px) {
  .journal-blocks > * h3 {
    margin: 0 0 3rem 0;
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

.journal-blocks .texts {
  margin: 0;
  grid-area: journal-texts;
}
@media screen and (min-width: 900px) {
  .journal-blocks .texts {
    margin: 0 0 1rem 0;
  }
}

.journal-blocks .texts h2 {
  margin: 0 0 1rem 0;
  font-size: 24px;
  line-height: 34px;
}
@media screen and (min-width: 900px) {
  .journal-blocks .texts h2 {
    font-size: 30px;
    line-height: 42px;
  }
}

.journal-blocks .texts p {
  margin: 0;
}

.journal-blocks .texts ul {
  margin: 0;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 900px) {
  .journal-blocks .texts ul {
    margin: 0 0 1rem;
  }
}

.journal-blocks .texts li {
  margin: 0;
  font-size: 1rem;
  line-height: 1.375;
}

.journal-blocks .introduction {
  opacity: 0;
  height: 100%;
}

.journal-blocks .introduction .image-caption {
  font-size: 12px;
  line-height: 1.25;
  position: absolute;
  bottom: 0;
  padding: 0.15rem;
}

.journal-blocks .introduction .auto-cut {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 900px) {
  .journal-blocks .introduction .auto-cut {
    -webkit-line-clamp: 7;
  }
}
@media screen and (min-width: 1100px) {
  .journal-blocks .introduction .auto-cut {
    -webkit-line-clamp: 12;
  }
}
@media screen and (min-width: 1290px) {
  .journal-blocks .introduction .auto-cut {
    -webkit-line-clamp: 15;
  }
}
.journal-blocks .introduction .auto-cut > *:first-child {
  margin-top: 0;
}

.journal-blocks .introduction .editor:not(:last-child)::after {
  content: ", ";
}

.journal-blocks .hover-block {
  position: relative;
  aspect-ratio: 5/6;
  margin-top: auto;
  grid-area: journal-image;
}

.journal-blocks .hover-block > * {
  position: absolute;
  transition: 0.1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  width: 100%;
}

@media screen and (min-width: 900px) {
  .journal-blocks .hover-block:hover .cover-image {
    opacity: 0.15;
    filter: blur(10px);
    /* z-index: -1; */
  }
  .journal-blocks .hover-block:hover .introduction {
    opacity: 1;
    z-index: 1;
  }
}
/* .journal-blocks .cover-image:hover + .introduction {
  opacity: 1;
} */

.journal-blocks .cover-image img {
  object-fit: cover;
  aspect-ratio: 5/6;
  width: 100%;
  display: block;
}

.journal-blocks > * div,
.journal-blocks > * h1,
.journal-blocks > * h2,
.journal-blocks > * h3,
.journal-blocks > * p,
.journal-blocks > * span {
  color: currentColor;
}

.journal-blocks .light-text {
  color: #fff;
}

.journal-issues .inner-with-articles {
  padding: 1.5rem 1rem 2.5rem;
}
@media screen and (min-width: 900px) {
  .journal-issues .inner-with-articles {
    padding: 2.5rem 1rem 3.75rem;
  }
}

.journal-issues .inner-with-articles.light-text {
  color: #fff;
}

.journal-issues .inner-with-articles > h3 {
  margin: 0 0 1.5rem;
}

.journal-issues .articles-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(23.4375rem, 100%), 1fr));
  gap: 2.5rem max(0.9375rem, min(0.95vw + 0.625rem, 1.25rem));
  width: 100%;
}

.journal-issues .issue-featured-image {
  object-fit: cover;
  aspect-ratio: 65/40;
  width: 100%;
  margin-bottom: 1rem;
  color: currentColor;
  display: block;
}

.journal-issues .no-image {
  border: 1px solid currentColor;
  background-color: rgba(255, 255, 255, 0.2);
}

.journal-issues .no-image svg {
  display: flex;
  width: 100%;
  height: 100%;
}

.journal-issues .no-image svg path {
  fill: currentColor;
}

.journal-issues article h4 {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
  line-height: 1.875rem;
}

.featured-articles article .post-type-image,
.journal-issues article .post-type-image {
  margin: 0 0 0.5rem;
  height: 18px;
  color: currentColor;
}

.journal-issues article:hover .tip {
  opacity: 1;
}

.featured-articles article .post-type-image .tip,
.journal-issues article .post-type-image .tip {
  left: 65px;
  top: -14px;
  height: 100%;
  font-size: 14px;
  line-height: 1;
}

.featured-articles article .post-type-image svg,
.journal-issues article .post-type-image svg {
  height: 100%;
}

.journal-issues article .authors {
  margin-top: 0;
  color: currentColor;
}

.journal-issues article .authors span::after {
  content: ", ";
}

.journal-issues article .authors span:not(:last-of-type)::after {
  content: ", ";
}

.featured-articles .inner-with-articles {
  padding: 1.5rem 0 0;
}

.featured-articles .border-wrap {
  padding: 1rem;
}

.featured-articles .inner-with-articles.border {
  border-style: double;
  border-width: 1rem;
  border-color: currentColor;
  padding: 1rem 1rem 2rem 1rem;
  border-radius: 3rem;
}

.featured-articles .inner-with-articles.plain {
  border-style: solid;
  border-width: 2rem;
  border-right: 0;
  border-top: 0;
}

.featured-articles .inner-with-articles.border.light-text {
  border-color: #fff;
}

.featured-articles .inner-with-articles > h3 {
  padding: 0;
  margin: 0 0 1.5rem 0;
  /* display: flex; */
}

.featured-articles .inner-with-articles .featured-statement {
  padding-right: 1rem;
}

.featured-articles .inner-with-articles > * > svg {
  /* background-color: red; */
  margin-right: 0.5rem;
  /* display: flex; */
}
.featured-articles .inner-with-articles.border > h3 {
  padding: 0;
  margin: 10px 0 20px 0;
}

/* .featured-articles .inner-with-articles > h3 svg {
  height: ;
} */

.featured-articles .inner-with-articles.light-text h3 {
  color: #fff;
}

.featured-articles .inner-with-articles.border .articles-wrap {
  padding: 0 1rem;
}

.featured-articles .inner-with-articles .articles-wrap {
  display: grid;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 600px) and (max-width: 899px) {
  .featured-articles .inner-with-articles .articles-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .featured-articles .inner-with-articles .articles-wrap > *:nth-child(3n - 2) {
    margin-left: -5%;
  }
  .featured-articles .inner-with-articles .articles-wrap > *:nth-child(2n + 1) {
    margin-right: -5%;
  }
}

@media screen and (min-width: 900px) {
  .featured-articles .inner-with-articles .articles-wrap {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .featured-articles .inner-with-articles .articles-wrap > *:nth-child(2) {
    width: 110%;
    margin-top: -2%;
    margin-left: -10%;
  }

  .featured-articles .inner-with-articles .articles-wrap > *:nth-child(3) {
    width: 110%;
    margin-left: -10%;
  }

  .featured-articles .inner-with-articles .articles-wrap > *:nth-child(4) {
    padding-left: 2rem;
    margin-top: -2%;
    margin-left: -1rem;
  }

  .featured-articles .inner-with-articles .articles-wrap > *:nth-child(5) {
    width: 130%;
    margin-left: -20%;
    margin-top: -2.5%;
  }

  .featured-articles .inner-with-articles .articles-wrap > *:nth-child(6) {
    width: 95%;
    margin-left: 5%;
    z-index: 2;
  }

  .featured-articles .inner-with-articles .articles-wrap > *:nth-child(7) {
    margin-top: -4%;
  }

  .featured-articles .inner-with-articles .articles-wrap > *:nth-child(8) {
    width: 105%;
    margin-left: -5%;
    margin-top: -6%;
    margin-bottom: -2%;
  }

  .featured-articles .inner-with-articles .articles-wrap > *:nth-child(9) {
    width: 105%;
    margin-left: -5%;
    margin-top: -2%;
  }
}

.featured-articles article {
  padding: 1rem 1rem;
}
.featured-articles article:hover {
  z-index: 999;
  height: auto;
}

.featured-articles article:hover .tip {
  opacity: 1;
}

.featured-articles article.light-text {
  color: #fff;
}

.featured-articles article h4 {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
  line-height: 1.875rem;
}

.featured-articles article .authors {
  margin: 0;
}

.embed-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.collaborators-post > header {
  padding-bottom: 1rem;
}

.article-lock {
  padding: 1rem;
  background-color: hsl(42.9, 100%, 75.9%);
  border: 3px solid hsl(42.9, 100%, 53.9%);
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.article-lock p {
  padding: 0;
  margin: 0;
  font-size: 14px;
  text-align: center;
}

.anders-lito-time {
  display: grid;
  grid-template-columns: 8.125rem auto;
  gap: 1rem;
  margin-bottom: 1rem;
}

.anders-lito-time .left {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1rem;
}

.article-body .text-body .anders-lito-time img {
  max-height: none;
}

.p-a-i-n--section p {
  margin-bottom: 0;
}

.anders-lito-colors {
  --faculties-red: 234, 173, 167; /* #eaada7 */
  --faculties-orange: 244, 212, 140; /* #f4d48c */
  --faculties-yellow: 246, 252, 148; /* #f6fc94 */
  --faculties-green: 222, 251, 195; /* #defbc3 */
  --faculties-blue: 166, 227, 252; /* #a6e3fc */
  --faculties-indigo: 154, 168, 249; /* #9aa8f9 */
  --faculties-violet: 193, 162, 249; /* #c1a2f9 */
  --faculties-position-2: 50%;
  --faculties-gradient-style: closest-corner at center;
  max-width: 800px;
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem 0;
}

.anders-lito-colors .label {
  padding: 0.25rem;
}

.anders-lito-colors .label.red {
  background-color: rgba(var(--faculties-red), 0.66);
}

.anders-lito-colors .label.orange {
  background-color: rgba(var(--faculties-orange), 0.66);
}

.anders-lito-colors .label.yellow {
  background-color: rgba(var(--faculties-yellow), 0.66);
}

.anders-lito-colors .label.green {
  background-color: rgba(var(--faculties-green), 0.66);
}

.anders-lito-colors .label.blue {
  background-color: rgba(var(--faculties-blue), 0.66);
}

.anders-lito-colors .label.indigo {
  background-color: rgba(var(--faculties-indigo), 0.66);
}

.anders-lito-colors .label.violet {
  background-color: rgba(var(--faculties-violet), 0.66);
}

.anders-lito-colors.anders-lito-gradient--red {
  background-image: radial-gradient(
    closest-corner at center,
    rgb(var(--faculties-red)) 0,
    rgb(var(--faculties-red)) var(--faculties-position-2),
    transparent 100%
  );
}

.anders-lito-colors.anders-lito-gradient--orange {
  background-image: radial-gradient(
    var(--faculties-gradient-style),
    rgb(var(--faculties-orange)) 0,
    rgb(var(--faculties-orange)) var(--faculties-position-2),
    transparent 100%
  );
}

.anders-lito-colors.anders-lito-gradient--yellow {
  background-image: radial-gradient(
    closest-corner at center,
    rgb(var(--faculties-yellow)) 0,
    rgb(var(--faculties-yellow)) var(--faculties-position-2),
    transparent 100%
  );
}

.anders-lito-colors.anders-lito-gradient--green {
  background-image: radial-gradient(
    closest-corner at center,
    rgb(var(--faculties-green)) 0,
    rgb(var(--faculties-green)) var(--faculties-position-2),
    transparent 100%
  );
}

.anders-lito-colors.anders-lito-gradient--blue {
  background-image: radial-gradient(
    closest-corner at center,
    rgb(var(--faculties-blue)) 0,
    rgb(var(--faculties-blue)) var(--faculties-position-2),
    transparent 100%
  );
}

.anders-lito-colors.anders-lito-gradient--indigo {
  background-image: radial-gradient(
    closest-corner at center,
    rgb(var(--faculties-indigo)) 0,
    rgb(var(--faculties-indigo)) var(--faculties-position-2),
    transparent 100%
  );
}

.anders-lito-colors.anders-lito-gradient--violet {
  background-image: radial-gradient(
    closest-corner at center,
    rgb(var(--faculties-violet)) 0,
    rgb(var(--faculties-violet)) var(--faculties-position-2),
    transparent 100%
  );
}

.former-practitioners-list ul {
  /* Remove default bullets */
  list-style: disc;
  /* Remove default padding */
  padding: 0;
  /* Remove default margin */
  margin: 0;
}

.former-practitioners-list li {
  /* Ensure each list item is on its own line */
  display: block;
  /* Add space between each list item */
  margin-bottom: 10px;
}

.former-practitioners-list a {
  /* Remove underline from links */
  text-decoration: none;
  /* Ensure the link takes up the entire width of the list item */
  display: block;
  color: black;
  font-size: calc(1em + 4vmin);
}

.former-practitioners-list {
  max-width: 800px;
  min-width: 50%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
  margin: 5rem auto;
}

.single-practitioner {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  background-color: #eac9b8;
}

.privacy-policy-content {
  padding: 10%;
  padding-bottom: 10%;
}

/* this hides the cookiebannerlogo in the left down corner */
.cky-btn-revisit-wrapper {
  display: none !important;
}

/* 2025-09; Ammended code to mitigate disc-layout inherited from events.scss*/
.article-body .footnotes ol {
    list-style: none;
    padding: 0 0 0 4rem;
    counter-reset: my-counter;
}

/* Only unordered lists inside .article-body */
.article-body ul {
  list-style: disc;              /* restore bullets */
  list-style-position: outside;  /* bullets sit outside text */
  padding-left: 1.5em;           /* bring back indentation */
  margin-left: 0;                /* prevent double indentation */
}

.article-body ul li {
  display: list-item;            /* ensure bullets render */
}







