@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 200;
  src: url("/assets/fonts/IBMPlexSans-ExtraLight.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/IBMPlexSans-Light.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/IBMPlexSans-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/IBMPlexSans-Medium.woff2") format("woff2");
}
:root {
  --white: #f6f6f2;
  --white-inactive: #ffffff;
  --grey-border: #adadaa;
  --inline-item: 0.5lh clamp(128px, 17.5vw, 512px);
  font-family: "IBM Plex Sans", sans-serif;
  font-feature-settings: "ss01";
  font-weight: 200;
  font-size: 16px;
  line-height: 1.2;
  color: black;
  --font-size-h1: 6rem;
  --image-height: 50;
  text-decoration-thickness: 0.065em;
  text-underline-offset: 0.1lh;
}

body {
  background-color: #f6f6f2;
  min-height: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

a {
  color: black;
}

header {
  position: relative;
  top: 0;
  z-index: 1000;
  width: 100%;
  min-height: 128px;
  background-color: #f6f6f2;
}
.page-home header,
.page-error header,
.page-blog header,
.page-agenda header {
  min-height: 0;
}
main {
  min-height: 100svh;
  background-color: #f6f6f2;
}

*:focus-visible {
  outline-color: black;
  outline-style: dotted;
  outline-width: 5px;
  font-weight: 400;
}

/* Styles for Skip Navigation Link */
.skip {
  position: absolute;
  top: -9999px;
  left: 0;
  background: #f6f6f2;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s;
  width: 100%;
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
}

.skip:focus {
  top: 0;
}
button {
  color: black;
}

.screen-reader {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.no-scroll {
  overflow: hidden;
}

footer {
  background-color: #d0bf8e;
  padding: 20px 30px 128px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}
footer a {
  text-decoration: underline;
  text-underline-offset: 0.1lh;
  text-decoration-thickness: 0.025em;
}
footer section.links,
footer section.contact {
  height: 15rem;
}
footer section.contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: fit-content;
  gap: 60px;
}
footer section.contact .row {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  font-size: 1.5rem;
  align-self: flex-end;
}
footer section.links .mark {
  font-size: 1.5rem;
  align-self: flex-end;
}
footer section.contact h2 {
  font-size: var(--font-size-h1);
}
footer address {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 1.5rem;
  gap: 2rem;
}
footer section.links {
  display: flex;
  flex-direction: column;
  width: fit-content;
  justify-content: space-between;
  max-width: 50%;
  gap: 1lh;
}
footer section.links ul.socials {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  font-size: 1rem;
  gap: 2ch;
}
footer section.links ul.formalia {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 1rem;
  gap: 2ch;
}
footer section.links img {
  display: block;
  height: 3rem;
}
footer section.quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: fit-content;
  width: 100%;
  font-size: 3rem;
  text-align: center;
}
footer section.quote blockquote {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: fit-content;
}
footer section.quote blockquote .heart {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate3d(100%, 100%, 0);
}

#link-agenda {
  position: fixed;
  display: flex;
  align-items: end;
  left: 0;
  bottom: -0.5rem;
  transform: translate3d(0, 0, 0);
  z-index: 50;
  height: 8rem;
}
#link-blog {
  position: fixed;
  display: flex;
  align-items: end;
  right: 0;
  bottom: -0.5rem;
  transform: translate3d(0, 0, 0);
  z-index: 50;
  height: 8rem;
}
@media screen and (orientation: portrait) {
  footer {
    flex-direction: column;
    gap: 30px;
    padding: 25px 30px 80px;
  }
  footer section.links ul.socials {
    justify-content: flex-start;
  }
  footer section.contact,
  footer section.links,
  footer section.quote {
    width: 100%;
    max-width: 100%;
    height: unset;
  }
  footer section.quote blockquote .heart {
    transform: translate3d(0, 100%, 0);
  }
  footer section.contact {
    gap: 20px;
  }
  footer section.contact h2 {
    font-size: clamp(3rem, 10vw, 6rem);
  }
  footer section.quote blockquote {
    font-size: 3rem;
  }
  footer section.contact h2 {
    text-align: center;
    padding: 1rem 0;
  }
  footer address,
  footer section.links ul,
  footer section.links ul.formalia {
    font-size: 1.25rem;
    font-weight: 200;
    width: 100%;
  }
  footer section.links .mark {
    font-size: 1.25rem;
    width: 100%;
    text-align: center;
    margin: 2rem 0;
  }
  #link-agenda,
  #link-blog {
    max-height: 4rem;
  }
  #link-agenda img,
  #link-blog img {
    height: 100%;
    width: auto;
  }
  header {
    z-index: 1000;
    width: 100%;
  }
}
#site-nav-button {
  position: fixed;
  top: 20svh;
  right: 0;
  background-color: transparent;
  transform: translate3d(32%, 0, 0);
  cursor: pointer;
  z-index: 100;
}
#site-navigation {
  display: none;
}
#site-navigation.expanded {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f6f6f2;
  z-index: 10;
}
#site-navigation h2 {
  font-size: clamp(2rem, 8vw, 10rem);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: inherit;
  padding-bottom: 48px;
  border-right: 1px solid #adadaa;
  line-height: 1;
}
#site-navigation .mobile {
  display: none;
}
#site-navigation .category {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
}
#site-navigation .category.flip {
  flex-direction: column-reverse;
}
#page-navigation {
  width: 100%;
  border-bottom: 1px solid #adadaa;
}
#site-navigation .pages,
#page-navigation .pages {
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  max-width: 100%;
  width: 100%;
  background-color: #adadaa;
}
#site-navigation .page,
#page-navigation .page {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  flex-grow: 1;
  text-align: center;

  white-space: nowrap;
  word-wrap: none;
  overflow-x: hidden;
  border-top: 1px solid #adadaa;
  border-right: 1px solid #adadaa;
}
#site-navigation .page a,
#page-navigation .page a,
#site-navigation .page .current,
#page-navigation .page .current {
  padding: 7.5px 10px;
  width: 100%;
  min-width: fit-content;
  text-align: center;
  display: flex;
  justify-content: center;
}
#site-navigation .page .special,
#page-navigation .page .special {
  background-color: var(--bg-color);
}
#site-navigation .page:hover,
#site-navigation .page:focus,
#site-navigation .page.current,
#page-navigation .page:hover,
#page-navigation .page:focus,
#page-navigation .page.current {
  background-color: #f6f6f2;
  font-weight: 500;
}
#page-navigation .page.current.special,
#site-navigation .page.current.special {
  background-color: var(--bg-color);
}

#site-navigation .category.flip .page {
  border-top: none;
  border-bottom: 1px solid #adadaa;
  border-right: 1px solid #adadaa;
}
#site-nav-button img {
  width: 14rem;
  height: 14rem;
}

section#hero {
  --speed: 2.5;
  --offset: 20vw;
  min-height: 100vh;
  height: calc((var(--max) - 1) * (var(--offset) / var(--speed)) + 100vh);
  width: 100%;
  position: relative;
  z-index: 1;
}
section#hero figure.quote {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
section#hero blockquote {
  text-align: center;
  font-size: var(--font-size-h1);
  line-height: 1;
  padding: 1rem;
}
section#hero figcaption {
  position: absolute;
  padding: 1rem 1rem 2rem 1rem;
  bottom: 0;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
}

#scroller {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* .moving {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;

  animation: rotate calc(var(--index) * 0.2s + 1s) linear infinite;
  animation-play-state: paused;
  animation-delay: calc(var(--index) * 0.2s + var(--scroll) * -2s);

  animation-iteration-count: 1;
  animation-fill-mode: both;
}

@keyframes rotate {
  to {
    transform: rotate(360deg) translateY(calc(var(--scroll) * 1000px));
  }
}

body {
  min-height: 500vh;
} */

#logo {
  display: flex;
  height: 0;
  justify-content: center;
  position: sticky;
  top: var(--font-size-h1);
  width: 100%;
  z-index: 2000;
  margin-bottom: var(--font-size-h1);
}
#logo svg {
  width: 25ch;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1500;
  transform: translate3d(0, 0, 0);
}
.lightbox figure {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  background-color: var(--random);
  max-height: 100vh;
  overflow: hidden;
  min-height: 0;
  flex-wrap: nowrap;
}
.lightbox figure img {
  display: block;
  object-fit: contain;
  height: fit-content;
  flex-grow: 1;
  min-height: 0;
}
.lightbox figure figcaption {
  display: block;
  width: 100%;
  height: fit-content;
  background-color: #ffffff;
  padding: 10px 30px;
  font-size: 1.25rem;
  flex-shrink: 0;
  font-weight: 200;
}
.lightbox figure figcaption a {
  font-weight: 400;
  text-decoration: underline;
}

.lightbox[aria-hidden="false"] {
  display: flex;
}

.lightbox-close {
  position: fixed;
  top: 20svh;
  right: 0;
  background-color: transparent;
  transform: translate3d(32%, 0, 0);
  cursor: pointer;
  z-index: 100;
}
.lightbox-close img {
  width: 14rem;
  height: 14rem;
}
#main-content {
  padding-bottom: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#main-content h1 {
  font-size: var(--font-size-h1);
  padding: var(--inline-item);
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
}
#main-content h1 + p {
  margin-top: 3rem;
}
#main-content #tab-navigation ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  font-size: 2.5rem;
  width: 100%;
  padding: var(--inline-item);
  line-height: 2;
  margin: 0;
}
#main-content #tab-navigation ul li {
  margin: 0 2ch;
}
#main-content #tab-navigation ul li.current span {
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 0.1lh;
  text-decoration-thickness: 0.065em;
}
#main-content #tab-navigation ul li a {
  font-weight: 200;
  text-decoration: underline;
  text-underline-offset: 0.1lh;
  text-decoration-thickness: 0.025em;
}
#main-content button h2 {
  font-size: 3rem;
  text-align: center;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-thickness: 0.065em;
  text-underline-offset: 0.1lh;
  width: 100%;
  color: black;
  text-wrap: balance;
}
#main-content button {
  display: flex;
  justify-content: center;
  flex-direction: column;

  padding: var(--inline-item);
  width: 100%;
  background-color: transparent;
  cursor: pointer;
  padding-bottom: 30px;
}
#main-content article:first-of-type {
  margin-top: 3rem;
}
.page-agenda #main-content article:first-of-type {
  margin-top: unset;
}
#main-content button .subheading {
  font-size: 1.3rem;
  border-top: 1px solid black;
  width: 100%;
  padding: 0;
  padding-top: 0.5rem;
  color: black;
  display: block;
}
#main-content p {
  padding: var(--inline-item);
  font-size: 1.3rem;
}
#main-content blockquote {
  padding: var(--inline-item);
  font-size: 1.3rem;
  text-align: center;
  font-weight: 400;
}
#main-content article .content {
  display: none;
}
#main-content article .content.expanded {
  display: block;
}
strong {
  font-weight: 500;
}
#main-content p a {
  font-weight: 500;
  text-decoration: underline;
}
#main-content article ul,
#main-content ul {
  font-size: 1.3rem;
  text-align: center;
  padding: var(--inline-item);
  margin: 1lh 0;
}
#main-content h2 {
  font-size: 1.75rem;
  font-weight: 400;
  text-align: center;
  padding: 30px 0 0;
}
#main-content h3 {
  font-size: 1.75rem;
  font-weight: 400;
  text-align: center;
  padding: var(--inline-item);
}
#main-content h4 {
  font-size: 1.75rem;
  font-weight: 200;
  text-align: center;
  padding: var(--inline-item);
}
#main-content h5 {
  font-size: 1.75rem;
  font-weight: 200;
  text-align: center;
  padding: var(--inline-item);
}
#main-content h6 {
  font-size: 1.75rem;
  font-weight: 200;
  text-align: center;
  padding: var(--inline-item);
}
.slider-container {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
  padding: 30px 0;
}

.slide {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

.slide img,
.slide iframe {
  height: auto;
  width: 100%;
  display: block;
  object-fit: contain;
}
.slide iframe {
  aspect-ratio: 16/9;
}
.slide img {
  max-height: calc(var(--image-height) * 1vh);
  max-height: calc(var(--image-height) * 1svh);
}
.slide figcaption {
  font-size: 1.5rem;
  text-align: center;
  margin-top: 1lh;
}

.navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.2s;
}

#main-content button.nav-btn {
  background-color: black;
  border-radius: 100px;
  color: white;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  width: 4rem;
  height: 4rem;
  color: black;
}
.slider-navigation {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  transform: translate3d(-50%, -50%, 0);
}

.slider-container:hover .navigation {
  opacity: 1;
}
.page-blog main {
  background-color: #b9abda;
}
.page-agenda #main-content {
  padding-top: 0 !important;
}
.page-agenda #main-content h2 {
  font-size: var(--font-size-h1);
  text-align: center;
  margin: 0.75em 0 0.25em;
  font-weight: 200;
}
.page-agenda #main-content h3 {
  font-size: 3rem;
  text-align: center;
  font-weight: 400;
  text-decoration: underline;
  width: 100%;
  padding: 30px 0 0;
  text-decoration-thickness: 0.065em;
  text-underline-offset: 0.1lh;
}

.info .lightbox-button {
  height: auto !important;
  max-height: auto !important;
  margin-bottom: 1rem;
}
.info .lightbox-button img {
  width: 100%;
  height: auto;
}
#main-content .content > p:last-child {
  margin-bottom: 2rem;
}
#main-content .content figure {
  padding: var(--inline-item);
}
.page-agenda h1 {
  font-size: 27vw;
  text-align: center;
  padding: 0;
  font-weight: 500;
  white-space: nowrap;
  margin-top: calc(-1 * var(--font-size-h1));
}
.page-blog .hofblog-logo {
  margin-top: calc(-1 * var(--font-size-h1));
}
.page-agenda #main-content article .subheading,
.page-blog #main-content article .subheading {
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  text-align: left;
  overflow: hidden;
  font-size: 1.3rem;
  border-top: 1px solid black;
  padding: unset;
  padding-top: 0.5rem;
  min-height: calc(1lh + 0.6rem);
}
.page-blog .subheading time,
.page-agenda .subheading time {
  font-weight: 400;
  text-align: left;
  white-space: wrap;
  text-wrap: wrap;
  hyphens: none;
}
.page-blog .subheading span,
.page-agenda .subheading span {
  text-align: right;
  white-space: nowrap;
  text-wrap: nowrap;
  hyphens: none;
}
.page-agenda #main-content .content {
  display: none;
}
.page-agenda #main-content .content.expanded {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  padding: var(--inline-item);
  gap: 4rem;
}
#main-content .content.contacts.expanded,
#main-content .contacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: var(--inline-item);
  gap: 2rem;
}
#main-content .content.contacts address p,
#main-content .contacts address p {
  padding: 0;
  margin-top: 1rem;
  text-wrap: balance;
}
#main-content .content.contacts address,
#main-content .contacts address {
  min-height: fit-content;
}
#main-content .content.contacts address .lightbox-button,
#main-content .contacts address .lightbox-button {
  display: block;
  height: 10rem;
  width: 100%;
  object-fit: contain;
  object-position: left;
}
#main-content .content.contacts address img,
#main-content .contacts address img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.error #main-content {
  padding-top: 0;
}
.page-agenda #main-content ul {
  text-align: left;
  padding: unset;
}
.page-agenda #main-content .content .info p {
  font-size: 1.25rem;
  padding: 0;
}
.page-agenda #main-content .content .description * {
  padding: 0;
}
.page-agenda #main-content .content .description p {
  margin-bottom: 1lh;
}
.page-agenda #main-content .content .description a {
  font-weight: 500;
  text-decoration: underline;
}
.page-agenda #main-content .content .description ul,
.page-agenda #main-content .content .description ol {
  text-align: center;
}
.page-blog .hofblog-logo {
  display: block;
  background-color: transparent;
  padding: 1rem;
  object-fit: contain;
  width: 100%;
}
.page-blog #header {
  background-color: unset;
}
.page-agenda main {
  background-color: #dfe176;
}
.pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  margin: 30px 0;
}
.pagination ul {
  display: flex;
  flex-direction: row;
  gap: 1ch;
  font-size: 2rem;
}
.pagination ul li a {
  text-decoration: none;
}
.pagination ul li:first-child a,
.pagination ul li:last-child a {
  text-decoration: underline;
}
.pagination [aria-current="page"] {
  font-weight: 500;
}
.page-home #main-content,
.page-error #main-content {
  padding: 0;
  height: 0;
  margin-top: calc(-1 * var(--font-size-h1));
}
.moving img {
  width: 100%;
  height: auto;
  visibility: visible;
}

.moving {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40vw;
  height: auto;
  transition: transform 71.428ms linear;
  transform: rotate(calc(var(--index) * 64deg)) translate3d(-50%, -50%, 0)
    translate3d(
      0,
      calc(
        (var(--scroll) + var(--motor)) * var(--speed) - var(--index) *
          var(--offset)
      ),
      0
    )
    rotate(calc(var(--index) * -64deg));
}
.moving img.hidden {
  visibility: hidden;
}
.page-special main,
.page-special-tab main,
.page-special header,
.page-special-tab header {
  background-color: var(--bg-color);
}
.floaters {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  pointer-events: none;
  flex-wrap: wrap;
  gap: 20%;
  font-size: 1.5rem;
  bottom: 0;
}
.floating {
  position: relative;
  pointer-events: all;
  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  font-size: 1.5rem;
  width: 13ch;
  height: 13ch;
  font-weight: 400;
  animation: randomMovement 35s infinite alternate ease-in-out;
}

@keyframes randomMovement {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(30px, -20px);
  }
  50% {
    transform: translate(-15px, 25px);
  }
  75% {
    transform: translate(-40px, -10px);
  }
  100% {
    transform: translate(20px, 30px);
  }
}
.floating div {
  position: relative;
  white-space: normal;
  padding: 1rem;
}
.floating svg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.floating path {
  fill: var(--bg-color) !important;
}

@media screen and (orientation: portrait) {
  :root {
    --image-height: 30;
  }
  #main-content h1,
  .page-agenda #main-content h2 {
    font-size: 3rem;
  }
  #main-content button h2,
  .page-agenda #main-content button h3 {
    font-size: 2rem;
  }
  #main-content #tab-navigation ul {
    font-size: 1.5rem;
  }
  .floating {
    padding: 1rem;
    font-size: 1.5rem;
  }
  .floaters {
    justify-content: flex-end;
    align-items: flex-start;
  }
  #site-nav-button img,
  .lightbox-close img {
    width: var(--font-size-h1);
    height: var(--font-size-h1);
  }
  #site-navigation .mobile {
    display: flex;
    position: relative;
    height: 100%;
    background-color: transparent;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  #site-navigation .mobile h2 {
    position: relative;
    border: none;
    height: fit-content;
  }
  #site-navigation .mobile #logo {
    margin-bottom: unset !important;
    position: absolute;
    top: 0;
  }
  #site-navigation .mobile[aria-expanded="true"] {
    position: absolute;
    z-index: 5;
  }
  #site-navigation .category,
  #site-navigation .category.flip {
    flex-grow: 0;
    flex-shrink: 0;
    overflow: hidden;
    flex-direction: column;
    border-bottom: 1px solid #adadaa;
  }
  #site-navigation .category h2 {
    font-size: 3rem;
    padding: 0;
  }
  #site-navigation.expanded {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    position: fixed;
    gap: 0;
  }
  #site-navigation .pages {
    justify-content: flex-end;
    height: fit-content;
  }
  #site-navigation .page,
  #site-navigation .category.flip .page {
    height: auto;
    max-height: fit-content;
    border-bottom: none;
    border-top: 1px solid #adadaa;
    border-right: 1px solid #adadaa;
    font-size: 1.5rem;
    z-index: 50;
  }
  .floating {
    z-index: 20;
  }
  #site-navigation .category:nth-of-type(2) {
    order: -100;
  }
  #site-navigation .pages {
    display: none;
  }
  #site-navigation .pages.expanded {
    display: grid;
    z-index: 10;
  }
  #site-navigation .desktop {
    display: none;
  }
  :root {
    --inline-item: 0.5lh 25px;
    font-size: 14px;
  }
  .no-scroll #logo {
    display: none;
  }
  .no-scroll h2 #logo {
    display: block;
    padding: unset;
    height: fit-content;
    font-size: 14px;
  }
  #logo svg,
  .no-scroll h2 #logo svg {
    width: 20ch;
  }
  #main-content button {
    padding-bottom: 30px;
  }
  #main-content #tab-navigation ul {
    flex-direction: column;
  }
  section#hero blockquote {
    font-size: 4rem;
  }
  section#hero figcaption {
    font-size: 1.25rem;
  }
  #main-content .content.contacts.expanded,
  #main-content .contacts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: var(--inline-item);
    gap: 2rem;
  }
}
/*
.carousel-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 0;
  padding: unset !important;
  margin: 2rem 0;
}
.carousel {
  display: flex;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overflow-x: scroll;
}
.bookends {
  display: flex;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  justify-content: end;
  min-width: 100vw;
  padding: unset !important;
  margin: unset !important;
}
.carousel-item {
  max-height: calc(var(--image-height) * 1vh);
  max-height: calc(var(--image-height) * 1svh);
  scroll-snap-align: center;
  scroll-snap-type: x mandatory;
  scroll-snap-stop: always;
  flex-shrink: 0;
  text-align: center;
  box-sizing: border-box;
  padding: 32px;
}
.carousel-item button {
  height: 100%;
}

.bookends .carousel-item {
  display: none;
  scroll-snap-align: center;
  flex-shrink: 0;
  text-align: center;
  box-sizing: border-box;
  padding: 32px;
}
.bookends .carousel-item[data-index="1"] {
  display: block;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  display: none;
}

.carousel-container:hover .carousel-button {
  display: block;
}*/

.carousel-container {
  position: relative;
  width: 100%;
  margin: auto;
  min-height: 0;
  padding: 0 20vw !important;
  overflow: hidden;
  margin: 2rem 0;
  height: calc(var(--image-height) * 1vh);
  height: calc(var(--image-height) * 1svh);
  z-index: 5;
}

.carousel {
  position: relative;
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  list-style-type: none;
  padding: 0 !important;
  margin: 0 !important;
  height: min-content !important;
  min-height: 0;
  z-index: 10;
}

.carousel-item {
  display: flex;
  flex: 0 0 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  height: calc(var(--image-height) * 1vh);
  height: calc(var(--image-height) * 1svh);
  padding: 0 32px !important;
}
figure.image {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  height: fit-content;
  max-height: calc(var(--image-height) * 1vh);
  max-height: calc(var(--image-height) * 1svh);
}
#main-content .lightbox-button,
.lightbox-button {
  background: none;
  max-height: calc(var(--image-height) * 1vh);
  max-height: calc(var(--image-height) * 1svh);
  border: none;
  cursor: pointer;
  padding: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
#main-content .carousel-item .lightbox-button {
  flex: 0 0 100%;
  flex-direction: row !important;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
}

.carousel .lightbox-button img {
  min-width: 0;
  min-height: 0;
  display: block;
  width: auto;

  height: 100%;
  object-fit: contain;
}
#main-content .carousel-container .carousel-button {
  display: none;
}
#main-content .carousel-container:hover .carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: transparent;
  font-size: 2rem;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 10;
  width: 18%;
  height: 100%;
  display: block;
  font-size: 1rem;
  font-weight: 400;
}

.prev-button {
  left: 0;
}

.next-button {
  right: 0;
}

.lightbox-button img {
  display: block;
  width: auto;

  height: 100%;
  object-fit: contain;

  min-height: 0;
}
#hero blockquote,
#hero figcaption {
  z-index: 10;
}
#hero #scroller {
  z-index: 15;
}
#shapes {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 0;
  z-index: 0;
}
#shapes .shape {
  height: 60vh;
  height: 60svh;
  width: 60vh;
  width: 60svh;
}
#shapes .shape svg {
  height: auto;
  width: 100%;
}
#shapes .shape svg path {
  fill: var(--fill);
}
#shapes .shape:first-child {
  transform: translate3d(-30%, 0, 0);
  left: 0;
}
#shapes .shape:last-child {
  transform: translate3d(30%, 0, 0);
  right: 0;
}

@media screen and (orientation: portrait) {
  #main-content .carousel-container:hover .carousel-button {
    display: none;
  }
  .page-agenda #main-content .content {
    display: none;
  }
  .page-agenda #main-content .content.expanded {
    display: flex;
    flex-direction: column;
  }
  .page-agenda #main-content .info .lightbox-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
#hero img {
  max-width: calc(var(--image-height) * 1vh);
  max-height: calc(var(--image-height) * 1vh);
  max-width: calc(var(--image-height) * 1svh);
  max-height: calc(var(--image-height) * 1svh);
}

li.ost-job {
  margin: var(--inline-item) !important;
}
li.ost-job:hover {
  background: unset !important;
}
li.ost-job .ost-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 !important;
  margin: 0 !important;
  border-bottom: unset !important;
}
li.ost-job .ost-row .ost-column3 {
  display: none;
}
li.ost-job .ost-row .ost-column2 {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
}
li.ost-job .ost-row .ost-column2 .ost-job-info {
  display: none;
}
li.ost-job .ost-row .ost-column2 h4 {
  padding: 30px 0 !important;
  margin: 0 !important;
  font-size: 3rem !important;
  text-align: center !important;
  font-weight: 400 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 0.065em !important;
  text-underline-offset: 0.1lh !important;
  width: 100% !important;
  color: black !important;
  text-wrap: balance !important;
}
li.ost-job .ost-row .ost-column2 h4::after {
  content: "↗︎";
}
li.ost-job .ost-row .ost-column2 .ost-job-attributes {
  display: inline;
  width: 100%;

  text-align: left;
  overflow: hidden;
  font-size: 1.75rem;
  border-top: 1px solid black;
  padding: unset;
  padding-top: 0.5rem !important;
}
li.ost-job .ost-row .ost-column2 .ost-job-attributes li.type::after,
li.ost-job .ost-row .ost-column2 .ost-job-attributes li.workload::after,
li.ost-job .ost-row .ost-column2 .ost-job-attributes li.department::after {
  content: ", ";
}
li.ost-job
  .ost-row
  .ost-column2
  .ost-job-attributes
  li:nth-last-child(2)::after {
  content: "" !important;
}
li.ost-job .ost-row .ost-column2 .ost-job-attributes li {
  background-color: unset;
  padding: 0 !important;
  margin: 0 !important;
  margin-right: 1ch !important;
}
address p a {
  font-weight: 200 !important;
  text-decoration: underline !important;
  text-underline-offset: 0.1lh !important;
  text-decoration-thickness: 0.025em !important;
}
[aria-expanded="true"] .preview {
  display: none;
}
.preview {
  padding-top: 41px;
}
.preview p {
  padding: 0 !important;
  text-align: left;
}
@media screen and (orientation: portrait) {
  li.ost-job .ost-row .ost-column2 h4 {
    padding: 30px 0 !important;
    margin: 0 !important;
    font-size: 2rem !important;
  }
  .carousel-container {
    padding: 0 10vw !important;
  }
  .carousel-item {
    padding: 0 16px !important;
  }
}
.page-formalia form#consent {
  position: relative;
  bottom: 0;
  z-index: 9999;
  color: var(--schwarz);
  display: flex;
  border-top: 1px solid var(--grau);
  border-bottom: 1px solid var(--grau);
  gap: 1.33rem;
  width: 100%;
  height: fit-content;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1rem;
  padding: var(--inline-item);
  z-index: 0;
}
.page-formalia form#consent hr {
  border-top: 1px solid black;
  width: 100%;
}

.page-formalia form#consent > * > * {
  padding: unset;
}

.page-formalia form#consent strong {
  width: fit-content;
  font-size: 1.3rem;
  display: block;
  margin-bottom: 1.3rem;
}

.page-formalia form#consent a {
  color: var(--schwarz);
  text-decoration: underline;
}

.page-formalia form#consent input {
  font-size: 1.3rem;
  min-height: 40px;
  min-width: fit-content;
  flex-grow: 1;
  height: 40px;
  background: var(--schwarz);
  color: var(--weiss);
  margin: 0;
  text-decoration: underline;
  cursor: pointer;
  z-index: 0;
}

.page-formalia form#consent div.explainer p {
  max-width: 500px;
  text-align: left;
  font-size: 1.3rem;
}

.page-formalia form#consent fieldset.select {
  display: flex;
  gap: 1.33rem;
  align-items: center;
  flex-wrap: wrap;
  min-width: fit-content;
  max-width: 300px;
  min-height: 1px;
  width: 100%;
  padding: 0;
  font-weight: 500;
}
