/*───────────────────────────────────────────────────────────*/
/*─                         vars
/*───────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                      VARS
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*───────────────────────────────────────────────────────────*/
/*─                          typo
/*───────────────────────────────────────────────────────────*/
:root {
  --font__size_l: 52px;
  --font__size_m: 44px;
  --font__size_s: 40px;
  --font__size_xs: 20px;
  --font__size_xxs: 16px;
  --font__lineheight_l: 56px;
  --font__lineheight_m: 54px;
  --font__lineheight_s: 50px;
  --font__lineheight_xs: 28px;
  --font__lineheight_xxs: 22px;
}
/*───────────────────────────────────────────────────────────*/
/*─                         base
/*───────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    CORE
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
::-moz-selection {
  color: var(--color__background);
  background: var(--color__primary);
}
::selection {
  color: var(--color__background);
  background: var(--color__primary);
}
:focus-visible { 
  outline: 2px solid var(--color__primary);
  outline-offset: 2px;
}
html {
  scroll-behavior: smooth;
}
#main {
  margin: 0 auto;
  max-width: 80.1041666666%;
}
.page {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-hyphens: auto;
  -webkit-hyphenate-limit-before: 3;
  -webkit-hyphenate-limit-after: 3;
  -webkit-hyphenate-limit-chars: 6 3 3;
  -webkit-hyphenate-limit-lines: 1;
  -webkit-hyphenate-limit-last: always;
  -webkit-hyphenate-limit-zone: 8%;
  -moz-hyphens: auto;
  -moz-hyphenate-limit-chars: 6 3 3;
  -moz-hyphenate-limit-lines: 1;
  -moz-hyphenate-limit-last: always;
  -moz-hyphenate-limit-zone: 8%;
  -ms-hyphens: auto;
  -ms-hyphenate-limit-chars: 6 3 3;
  -ms-hyphenate-limit-lines: 1;
  -ms-hyphenate-limit-last: always;
  -ms-hyphenate-limit-zone: 8%;
  hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  hyphenate-limit-lines: 1;
  hyphenate-limit-last: always;
  hyphenate-limit-zone: 8%;
}
p {
  -webkit-hyphens: auto;
  -webkit-hyphenate-limit-before: 3;
  -webkit-hyphenate-limit-after: 3;
  -webkit-hyphenate-limit-chars: 6 3 3;
  -webkit-hyphenate-limit-lines: 1;
  -webkit-hyphenate-limit-last: always;
  -webkit-hyphenate-limit-zone: 8%;
  -moz-hyphens: auto;
  -moz-hyphenate-limit-chars: 6 3 3;
  -moz-hyphenate-limit-lines: 1;
  -moz-hyphenate-limit-last: always;
  -moz-hyphenate-limit-zone: 8%;
  -ms-hyphens: auto;
  -ms-hyphenate-limit-chars: 6 3 3;
  -ms-hyphenate-limit-lines: 1;
  -ms-hyphenate-limit-last: always;
  -ms-hyphenate-limit-zone: 8%;
  hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  hyphenate-limit-lines: 1;
  hyphenate-limit-last: always;
  hyphenate-limit-zone: 8%;
}
mark {
  padding: 0.3vw 0.3vw 0.15vw 0.3vw;
}
/* blue */
mark.has-inline-color[style*="#0000ff"] {
  color: var(--color__background) !important;
}
body.dark-theme mark.has-inline-color[style*="#0000ff"] {
  color: var(--color__text) !important;
}
/* red */
mark.has-inline-color[style*="#ff0000"] {
  color: var(--color__text) !important;
}
body.dark-theme mark.has-inline-color[style*="#ff0000"] {
  color: var(--color__background) !important;
}
/* fuchsia */
mark.has-inline-color[style*="#ff00ff"] {
  color: var(--color__text) !important;
}
/* Typography */
em {
  padding-right: 3px;
}
.hero-h1 {
  padding-bottom: 2%;
}
span.prefix {
  padding-right: 3px;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    GRID
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
#grid-cta {
    display: none;
}
#grid-cta {
  z-index: 11;
  position: fixed;
  bottom: 0%;
  left: 1.875%;
  width: 25px;
  height: 25px;
  cursor: pointer;
  transition: opacity 0.1s;
  background: var(--color__text);
}
#grid-cta:hover {
  opacity: 0.5;
}
#grid-w {
  z-index: 9007;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0.15;
  pointer-events: none;
}
#grid {
  height: 100%;
  width: 100%;
}
#grid div:first-child {
  margin: 0 0 0 1.875%;
}
#grid div:last-child {
  margin: 0 1.875% 0 1.5625%;
}
#grid div {
  position: relative;
  float: left;
  width: 6.5885416667%;
  height: 100%;
  margin: 0 0 0 1.5625%;
  background: var(--color__primary);
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                      SAIL
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
#sail {
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color__background);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
#sail:hover {
  cursor: pointer;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    SKIP LINK
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999999;
  padding: 8px 16px;
  background: var(--color__background);
  color: var(--color__text);
  text-decoration: none;
}
.skip-link:focus {
  clip: auto !important;
  height: auto !important;
  left: 6px;
  top: 7px;
  width: auto !important;
  z-index: 100000;
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: var(--color__background);
  clip: auto !important;
  color: var(--color__text);
  display: block;
  font-size: var(--typo__fontsize_m);
  font-weight: bold;
  height: auto;
  left: 5px;
  padding: 15px 25px 15px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
/*───────────────────────────────────────────────────────────*/
/*─                         common
/*───────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                     FOOTER
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
.footer-w {
  padding-top: 200px;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                     MENU
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
#menu {
  position: fixed;
  z-index: 4;
  top: 0;
  right: 0;
  height: 100%;
  width: 34.4791666668vw;
  padding-top: 10vh;
  padding-left: 50px;
  padding-right: 25px;
  pointer-events: none;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: var(--color__text);
  transform: translate3d(101%, 0, 0);
  will-change: transform;
  box-shadow: 1vw 0 2vw 1vw rgba(0, 0, 0, 0.25);
}
#menu-list {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 10;
  padding-bottom: 2.5vh;
}
#menu-logos {
  position: relative;
  padding-bottom: 2.5vh;
}
.menu-logo {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.menu-logo-h {
  width: 15vh;
  font-size: 1.5vh;
  line-height: 1.5vh;
  color: var(--color__background);
}
.menu-logo-a {
  width: 20vh;
  fill: var(--color__background);
}
#menu-logo-b {
  padding-top: 20px;
}
#menu-list-b {
  position: relative;
  display: flex;
}
#menu-list-b .menu-a {
  font-family: "SharpSans-SemiBold", sans-serif;
  font-size: 2vh;
  line-height: 2.75vh;
}
#menu-list-b .menu-item::after {
  content: '/';
  font-size: 2vh;
  line-height: 2.75vh;
  color: var(--color__background);
  padding-right: 5px;
  padding-left: 5px;
}
#menu-list-b .menu-item:last-child::after {
  display: none;
}
.menu-item {
  position: relative;
}
.menu-item-ul {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease-out,
    overflow 0s linear 0.5s;
}
.menu-item-has-children.open .menu-item-ul {
  max-height: 500px;
  overflow: visible;
  transition:
    max-height 0.5s ease-out,
    overflow 0s linear 0.5s;
}
.menu-item-has-children.open > .menu-a {
  color: var(--color__secondary);
}
.menu-item.active .menu-a {
  color: var(--color__secondary);
}
.menu-item-has-children {
  cursor: pointer;
}
.menu-item-has-children .menu-a {
  pointer-events: none;
}
.menu-a {
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  color: var(--color__background);
  font-family: "SharpSans-Bold", sans-serif;
  transition: color 0.25s ease-in-out;
  hyphens: auto;
}
.menu-a:hover {
  color: var(--color__secondary);
}
.menu-a:focus-visible {
  outline: 2px solid var(--color__secondary);
  outline-offset: 2px;
}
.menu-a.active {
  color: var(--color__secondary);
}
.child-active > .menu-a {
  color: var(--color__secondary);
}
.menu-item-has-children .menu-item {
  padding-top: 0;
  line-height: var(--font__lineheight_xxs);
}
.menu-item-has-children:hover > .menu-a {
  color: var(--color__secondary);
}
.menu-item-ul .menu-a {
  font-family: "Friends-Regular", sans-serif;
  font-size: var(--font__size_xxs);
  letter-spacing: 0.35px;
  pointer-events: all;
}
.menu-item-ul .menu-item:last-of-type {
  padding-bottom: 10px;
}
#menu-socials {
  position: relative;
  margin-top: 0;
  margin-bottom: 6vh;
}
#menu-newsletter {
  position: relative;
  margin-top: 0;
  margin-bottom: 2vh;
}
.menu-socials-item {
  fill: var(--color__background);
  margin-right: 10px;
}
.menu-logo-a:hover,
.menu-socials-item:hover {
  fill: var(--color__secondary);
}
.menu-logo-a:focus-visible,
.menu-socials-item:focus-visible {
  outline: 2px solid var(--color__secondary);
  outline-offset: 2px;
}
/* Menu Typography Adjustments */
/* Social Menu Adjustments */
#sm_newsletter {
  top: -4px !important;
  position: relative;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                     NAV
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
#nav > div {
  pointer-events: all;
}
#nav-t {
  z-index: 3;
  position: absolute;
  top: 25px;
  left: 1.875%;
  width: 88.0989583337%;
  transition: top 1s;
}
#nav-t-logo {
  position: relative;
  width: 50%;
}
#nav-t-logo-l {
  height: 3vw;
  width: 25vw;
  background-image: url(../img/GRK2686_ContradictionStudies_Logo_Contra.svg);
  background-repeat: no-repeat;
  mix-blend-mode: screen;
}
#nav-t-logo-r {
  position: absolute;
  top: 0;
  left: 11.5vw;
  height: 3vw;
  width: 25vw;
  background-image: url(../img/GRK2686_ContradictionStudies_Logo_Diction.svg);
  background-repeat: no-repeat;
  mix-blend-mode: screen;
}
#nav-t-logo-u {
  position: absolute;
  top: 0;
  right: 90px;
  width: 90px;
  transition: opacity 0.5s ease-in-out;
}
#nav-t-logo-woc {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  transition: opacity 0.5s ease-in-out;
}
#nav-t-logo-sub {
  position: relative;
  left: 8.1510416667vw;
  display: inline-block;
  padding-top: 5px;
  font-size: var(--font__size_xs);
  line-height: 24px;
  letter-spacing: 0.35px;
}
#nav-t-logo-u:hover,
#nav-t-logo-woc:hover {
  opacity: 0.5;
}
#nav-t-breadcrumbs {
  position: relative;
  left: 8.1510416667vw;
  width: 95%;
  display: flex;
  gap: 5px;
  padding-top: 25px;
  font-size: var(--font__size_xxs);
  line-height: var(--font__lineheight_xxs);
  letter-spacing: 0.35px;
}
#nav-t-breadcrumbs span {
  opacity: 0.5;
}
#nav-t-breadcrumbs a {
  color: var(--color__text);
  text-decoration: underline;
  opacity: 0.5;
  transition: opacity 0.5s ease-in-out;
}
#nav-t-breadcrumbs a:hover {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
#nav-l {
  position: fixed;
  top: 25px;
  left: -10%;
  width: calc(100vh - 50px);
  height: 3.7885416667%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
  transition: left 1s;
  -webkit-transform-origin: 0 0;
  -webkit-transform: rotate(-90deg) translateX(-100%);
}
#nav-l-logo {
  cursor: pointer;
  padding-right: 5vh;
}
#nav-l-logo-l {
  position: relative;
  height: 4vh;
  width: 17vh;
  background-image: url(../img/GRK2686_ContradictionStudies_Logo_Contra.svg);
  background-repeat: no-repeat;
  mix-blend-mode: screen;
}
#nav-l-logo-r {
  position: absolute;
  top: 0;
  left: 5vh;
  height: 4vh;
  width: 17vh;
  background-image: url(../img/GRK2686_ContradictionStudies_Logo_Diction.svg);
  background-repeat: no-repeat;
  mix-blend-mode: screen;
}
#nav-l-logo-sub {
  flex: 2;
  font-size: 1.5vh;
  line-height: 1.5vh;
}
#nav-l-logo-u {
  width: 8vh;
}
#nav-l-logo-woc {
  width: 7vh;
}
#nav-r {
  position: absolute;
  top: 0;
  right: calc(1.875% + 10px);
  width: 6.5885416667%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}
#nav-r-burger {
  z-index: 4;
  position: fixed;
  top: 25px;
  width: 35px;
  height: 35px;
  transition: opacity 0.5s ease-in-out;
}
#nav-burger-open {
  cursor: pointer;
  fill: var(--color__text);
  transition: opacity 0.5s ease-in-out;
}
#nav-r-burger:hover #nav-burger-open {
  opacity: 0.5;
}
#nav-burger-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  fill: var(--color__background);
}
#nav-burger-close:hover svg {
  fill: var(--color__secondary);
}
#nav-burger-close:focus-visible {
  outline: 2px solid var(--color__secondary);
  outline-offset: 2px;
}
#nav-r-icons {
  z-index: 3;
  position: fixed;
  top: 0;
  width: 6.5885416667%;
  height: 100%;
}
#nav-themecolor-switch {
  position: absolute;
  top: 65px;
  right: 0;
  width: 35px;
  height: 35px;
  cursor: pointer;
  fill: var(--color__text);
  transition: opacity 0.5s ease-in-out;
  will-change: opacity;
}
#nav-themecolor-switch:hover {
  opacity: 0.5;
}
#nav-lang-switch {
  position: absolute;
  top: 105px;
  right: 0;
  width: 35px;
  height: 35px;
  fill: var(--color__text);
  transition: opacity 0.5s ease-in-out;
  will-change: opacity;
}
#nav-lang-switch:hover {
  cursor: pointer;
  opacity: 0.5;
}
#nav-lang-switch:focus-visible {
  outline: 2px solid var(--color__primary);
  outline-offset: 2px;
}
.nav-logo-u,
.nav-logo-u a,
.nav-logo-woc,
.nav-logo-woc a {
  fill: var(--color__text);
}
#nav-top {
  position: absolute;
  width: 35px;
  height: 35px;
  right: 0;
  bottom: 25px;
  fill: var(--color__text);
  cursor: pointer;
  transition: opacity 0.5s ease-in-out;
}
#nav-top:hover {
  opacity: 0.5;
}
#logo-sub-en {
  transition: opacity 0.5s ease-in-out;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                     SEARCH
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/* Search Button */
#nav-search-button-open {
  position: absolute;
  top: 145px;
  right: 0px;
  width: 35px;
  height: 35px;
  transition: opacity 0.5s ease-in-out;
  cursor: pointer;
  fill: var(--color__text);
  will-change: opacity;
}
#nav-search-button-open:focus-visible {
  outline: 2px solid var(--color__primary);
  outline-offset: 2px;
}
#nav-search-button-open:hover {
  opacity: 0.5;
}
#nav-search-button-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  fill: var(--color__background);
  transition: opacity 0.5s ease-in-out;
  will-change: opacity;
}
#nav-search-button-close:focus-visible {
  outline: 2px solid var(--color__primary);
  outline-offset: 2px;
}
#nav-search-button-close:hover svg {
  fill: var(--color__primary);
}
/* Search Form */
#search-form {
  position: fixed;
  z-index: 4;
  top: 0;
  right: 0;
  height: 100%;
  width: 34.4791666668vw;
  padding: 10vh 75px 0 50px;
  pointer-events: none;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: var(--color__text);
  transform: translate3d(101%, 0, 0);
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  box-shadow: 1vw 0 2vw 1vw rgba(0, 0, 0, 0.25);
}
#search-form.on {
  transform: translate3d(0%, 0, 0);
  pointer-events: all;
}
#search-form.on #nav-search-button-close {
  pointer-events: all;
  opacity: 1;
}
#search-form input.search-input {
  font-family: 'Friends-SemiBold', sans-serif;
  font-size: var(--font__size_xs);
  background-color: var(--color__text);
  color: var(--color__background);
  width: 100%;
  padding: 10px 15px;
  margin-top: 10px;
  box-sizing: border-box;
  display: block;
  border: 1px solid var(--color__background);
  transition: border-color 0.2s ease;
}
#search-form input.search-input:focus-visible {
  outline: 2px solid var(--color__primary);
  outline-offset: 2px;
  border-color: var(--color__primary);
}
#search-form input.search-submit {
  font-family: 'Friends-SemiBold', sans-serif;
  font-size: var(--font__size_xs);
  color: var(--color__text);
  background-color: var(--color__background);
  padding: 10px 25px 5px 25px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
#search-form input.search-submit:focus-visible {
  outline: 2px solid var(--color__primary);
  outline-offset: 2px;
}
#search-form input.search-submit:hover {
  background-color: var(--color__primary);
}
#search-form select.search-select {
  font-family: 'Friends-SemiBold', sans-serif;
  font-size: var(--font__size_xs);
  color: var(--color__background);
  background-color: var(--color__text);
  width: 100%;
  padding: 15px 15px;
  margin: 25px 0;
  box-sizing: border-box;
  border: 1px solid var(--color__background);
  box-shadow: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
#search-form select.search-select:focus-visible {
  outline: 2px solid var(--color__primary);
  outline-offset: 2px;
  border-color: var(--color__primary);
}
#search-form select.search-select:hover {
  background-color: var(--color__primary);
  color: var(--color__text);
  border: 1px solid var(--color__primary);
}
/* Search Results */
.search-results.content-w h2 {
  padding-top: 15px;
}
.search-results.content-w ul li::before {
  content: none;
}
.search-results.content-w a {
  text-decoration: none;
}
.search-results.content-w ul#page-ul li {
  margin: 0;
}
.search-results .post-info.wide {
  width: 100%;
  margin-left: 0;
}
.search-results.content-w ul.team-w li {
  margin: 12px 0 0 0;
}
.search-results #posts-ul li:last-of-type hr,
.search-results #events-ul li:last-of-type hr,
.search-results #publications-ul li:last-of-type hr {
  margin-top: 100px;
  margin-bottom: 100px;
  border: 0;
  border-bottom: 1px solid var(--color__primary);
}
.search-results .team-guest {
  pointer-events: none;
}
.search-results .team-guest-w {
  height: 100%;
  display: flex;
  align-items: flex-end;
}
/* Media Queries */
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                     SIDEBAR
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
#sidebar {
  z-index: 5;
  position: fixed;
  height: 100%;
  width: 10px;
  top: 0;
  right: 0;
  box-shadow: -1px 0px 10px 0 rgb(0 0 0 / 25%);
}
#sidebar #sidebar-t {
  position: absolute;
  height: 25%;
  width: 100%;
  min-height: 25%;
  max-height: 100%;
  background-color: var(--color__primary);
}
#sidebar #sidebar-b {
  position: absolute;
  bottom: 0;
  height: 75%;
  width: 100%;
  background-color: var(--color__primary);
  mix-blend-mode: screen;
}
/*───────────────────────────────────────────────────────────*/
/*─                         gutenberg
/*───────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    ALIGNMENTS
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
.alignnone,
.aligncenter,
.alignleft,
.alignright,
.alignwide {
  margin: 0 auto 0 auto;
}
.has-text-align-center {
  text-align: center;
}
.has-text-align-right {
  text-align: right;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    BUTTONS
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
.wp-block-buttons {
  padding-top: 25px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.wp-block-button {
  display: inline-block;
  color: var(--color__text);
  font-family: "Friends-SemiBold", sans-serif;
  font-size: var(--font__size_xs);
  text-align: center;
  text-decoration: none;
  margin-right: 25px;
}
.wp-block-button.is-style-outline a {
  outline: 3px solid var(--color__text);
  outline-offset: -3px;
}
.content-w .wp-block-buttons a {
  padding: 10px 25px 5px 25px;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}
.content-w .wp-block-buttons a.has-blue-color {
  outline: 3px solid var(--color__primary);
}
.wp-block-button__link.has-blue-background-color {
  color: var(--color__background);
}
.content-w .wp-block-buttons a.has-red-color {
  outline: 3px solid var(--color__primary);
}
.content-w .wp-block-buttons a:hover {
  color: var(--color__background);
  background-color: var(--color__text);
  cursor: pointer;
}
.content-w .wp-block-buttons a.has-blue-color:hover {
  outline: 3px solid var(--color__text);
}
.content-w .wp-block-buttons a.has-red-color:hover {
  outline: 3px solid var(--color__text);
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    COLORS
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/* Gutenberg Text Colors */
.has-background-color {
  color: var(--color__background);
}
.has-texts-color {
  color: var(--color__text);
}
.has-blue-color {
  color: var(--color__primary);
}
.has-red-color {
  color: var(--color__secondary);
}
/* Gutenberg Background Colors */
.has-background-background-color {
  background-color: var(--color__background);
}
.has-texts-background-color {
  background-color: var(--color__text);
}
.has-blue-background-color {
  background-color: var(--color__primary);
}
.has-red-background-color {
  background-color: var(--color__secondary);
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    COLUMNS
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
.wp-block-columns {
  display: flex;
  flex-direction: row;
  padding-top: 25px;
}
.wp-block-column {
  width: 50%;
}
.wp-block-column:first-child {
  margin: 0 1.5625vw 0 0;
}
.wp-block-column p:first-of-type {
  padding-top: 0;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    DETAILS
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
.wp-block-details {
  position: relative;
  padding-top: 75px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color__text);
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.wp-block-details summary {
  list-style: none;
  padding-right: 6.5885416667vw;
  font-family: "SharpSans-SemiBold", sans-serif;
  letter-spacing: 1px;
  cursor: pointer;
}
.wp-block-details summary:hover {
  color: var(--color__primary);
}
.wp-block-details[open] .wp-block-details summary {
  color: var(--color__primary);
}
.wp-block-details summary::-webkit-details-marker {
  display: none;
}
.wp-block-details summary::after {
  content: ' +';
  position: absolute;
  top: 75px;
  right: 0;
  font-size: 1.25em;
}
.wp-block-details[open] summary::after {
  content: ' -';
  top: 71px;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    EMBEDS
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
.wp-block-embed {
    margin: 0;
    padding-top: 25px;
}
.wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 100%; /* 1:1 Aspect Ratio */
}
.wp-embed-aspect-16-9 .wp-block-embed__wrapper {
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
.wp-embed-aspect-4-3 .wp-block-embed__wrapper {
    padding-top: 75%; /* 4:3 Aspect Ratio */
}
.wp-embed-aspect-3-2 .wp-block-embed__wrapper {
    padding-top: 66.66%; /* 3:2 Aspect Ratio */
}
.wp-embed-aspect-8-5 .wp-block-embed__wrapper {
    padding-top: 62.5%; /* 8:5 Aspect Ratio */
}
.wp-embed-aspect-1-1 .wp-block-embed__wrapper {
    padding-top: 100%; /* 8:5 Aspect Ratio */
}
.wp-block-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.wp-block-embed figcaption {
    padding-top: 5px;
    font-size: var(--font__size_xxs);
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    GALLERY
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
.wp-block-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px !important;
    padding-top: 75px;
    margin: 0;
}
.wp-block-gallery.is-cropped .wp-block-image {
    display: flex;
    flex-direction: column;
}
.wp-block-gallery.is-cropped .wp-block-image img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 1 / 1;
}
.wp-block-gallery .wp-block-image .wp-element-caption {
    margin-top: 10px;
    font-size: var(--font__size_xxs);
    text-align: left;
}
.wp-block-gallery.columns-1 .wp-block-image {
    width: 100%;
}
.wp-block-gallery[class*="columns-"] .wp-block-image {
    width: calc(100% / var(--columns) - 25px);
}
.wp-block-gallery.columns-1 {
    --columns: 1;
}
.wp-block-gallery.columns-2 {
    --columns: 2;
}
.wp-block-gallery.columns-3 {
    --columns: 3;
}
.wp-block-gallery.columns-4 {
    --columns: 4;
}
.wp-block-gallery.columns-5 {
    --columns: 5;
}
.wp-block-gallery.columns-6 {
    --columns: 6;
}
.wp-block-gallery.columns-7 {
    --columns: 7;
}
.wp-block-gallery.columns-8 {
    --columns: 8;
}
.wp-block-gallery.columns-9 {
    --columns: 9;
}
.wp-block-gallery.columns-10 {
    --columns: 10;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    GROUP
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
.wp-block-group {
  margin: 0 0 20vw 0;
  min-height: calc(100vh - 30vw);
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    HR
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
hr {
  margin-top: 50px;
  margin-bottom: 50px;
  border: 0;
  border-top: 1px solid var(--color__primary);
  width: 100%;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    IMAGE
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
.wp-block-image {
  margin: 0;
}
.wp-block-image img {
  height: auto;
  max-width: 100%;
}
.wp-block-image.alignfull img,
.wp-block-image.alignwide img {
  width: 100%;
}
.wp-block-image.is-resized {
  margin-left: auto;
  margin-right: auto;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    QUOTES
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
blockquote {
  margin: 0;
}
.wp-block-quote {
  margin: 0;
  padding: 2.5vw 8.135416667vw;
}
.wp-block-pullquote {
  text-align: center;
  padding-top: 2.5vw;
  padding-right: 8.135416667vw;
  padding-bottom: 2.5vw;
  padding-left: 8.135416667vw;
  margin-right: 8.135416667vw;
  margin-left: 8.135416667vw;
}
.wp-block-pullquote.is-style-solid-color {
  text-align: left;
}
/*───────────────────────────────────────────────────────────*/
/*─                         page
/*───────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    INTERFERER
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
#home .event-title,
#home .publication-title {
  font-size: var(--font__size_xs);
  line-height: var(--font__lineheight_xs);
  padding-top: 50px;
}
/* Home Page Elements */
.grk_graphics img {
  height: 75px !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.grk_graphic_divider img {
  height: 150px !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.grk_graphic_divider_typo img {
  height: 150px !important;
  -o-object-fit: contain;
     object-fit: contain;
}
/* Slider Styles */
.slick-list {
  background: var(--color__text) !important;
  color: var(--color__background);
  padding-bottom: 35px;
}
.slick-slider .wp-block-advanced-posts-blocks-post {
  margin-bottom: 20px;
}
.wp-block-advanced-posts-blocks-post a .post-title,
.wp-block-advanced-posts-blocks-post a .post-excerpt,
.wp-block-advanced-posts-blocks-post a .post-meta {
  color: var(--color__background);
}
.wp-block-advanced-posts-blocks-post a:hover .post-title,
.wp-block-advanced-posts-blocks-post a:hover .post-excerpt,
.wp-block-advanced-posts-blocks-post a:hover .post-meta {
  color: var(--color__secondary) !important;
}
ul.slick-dots {
  bottom: 15px;
}
.slick-dots li button::before {
  font-size: 8px;
  opacity: 0.5;
  color: var(--color__background) !important;
}
.slick-dots li.slick-active button::before {
  font-size: 10px;
}
/* Intro Text */
.start_intro p,
.start_intro h2 {
  font-size: 20px !important;
  line-height: 25px !important;
}
.start_intro {
  padding: 25px 28px !important;
  background-color: var(--color__text);
  border-top: 1px solid var(--color__secondary);
}
.start_intro a:hover {
  color: var(--color__secondary) !important;
  text-decoration-color: var(--color__secondary) !important;
}
/* Home Page Layout */
.page-id-3105 .hero-w {
  display: none;
}
.page-id-3105 .content-w {
  padding-top: 200px;
}
body .wp-block-cover {
  color: var(--color__background);
}
.grk_member {
  background-color: var(--color__primary);
}
.grk_member .wp-block-cover__inner-container {
  padding: 50px 25px;
}
/* Home News Section */
.home_news .wp-block-column {
  flex: 1;
  margin: 0 0 0 2vw;
  font-size: var(--font__size_xs) !important;
  line-height: var(--font__lineheight_xs);
}
.home_news .wp-block-column:first-child {
  margin: 0 0 0 0;
}
.home_news hr {
  margin-top: 20px;
  margin-bottom: 30px;
}
.home_news ::before,
.superblockslider::before {
  display: none !important;
}
.home_news ul {
  padding-top: 0 !important;
}
.home_news ul li {
  margin-left: 0px !important;
}
.home_news .wp-block-post-date {
  font-family: 'SharpSans-SemiBold', sans-serif;
  font-size: 75%;
  letter-spacing: 0.1rem;
  margin-bottom: 20px;
}
.home_news .wp-block-post-title a {
  word-break: normal;
}
.home_news .wp-block-button__link {
  background-color: var(--color__primary);
  color: var(--color__background);
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    INTERFERER
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
#interferer {
    display: none !important;
}
#interferer {
  z-index: 3;
  position: fixed;
  top: 10vh;
  right: 10vw;
  width: 14vw;
  height: 14vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color__primary);
  border-radius: 7vw;
  box-shadow: 5px 5px 10px 0vw rgb(0 0 0 / 25%);
  mix-blend-mode: multiply;
}
#interferer-a {
  font-size: 2.5vw;
  line-height: 2.75vw;
  padding-right: 1vw;
  padding-bottom: 2vw;
  padding-left: 1vw;
  color: var(--color__background);
  text-align: center;
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}
#interferer-c {
  position: absolute;
  bottom: 2vw;
  height: 2vw;
  fill: var(--color__background);
  transition: opacity 0.25s ease-in-out;
}
#interferer-a:hover {
  opacity: 0.9;
}
#interferer-c:hover {
  cursor: pointer;
  opacity: 0.9;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    P 404
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
#p404 {
  z-index: 4;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color__background);
}
#p404 a {
  position: relative;
  color: var(--color__background);
  font-size: 5vw;
  line-height: 6.25vw;
  color: var(--color__text);
  text-align: center;
  transition: opacity 0.5s ease-in-out;
}
#p404 a:hover {
    opacity: 0.5;
  }
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    PAGE
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
.hero-h1 {
  position: relative;
  padding-top: 250px;
  font-family: "SharpSans-SemiBold", sans-serif;
  font-size: var(--font__size_l);
  line-height: var(--font__lineheight_l);
  letter-spacing: 1px;
}
.hero-p {
  padding-top: 15px;
  padding-bottom: 25px;
}
.content-w {
  position: relative;
}
#home .content-w {
  padding-top: 250px;
}
/************
/* HEADINGS
************/
.content-w h1 {
  font-family: "SharpSans-SemiBold", sans-serif;
  font-size: var(--font__size_l);
  line-height: var(--font__lineheight_l);
  letter-spacing: 1px;
}
.content-w h2 {
  font-family: "SharpSans-SemiBold", sans-serif;
  font-size: var(--font__size_s);
  line-height: var(--font__lineheight_s);
  letter-spacing: 1px;
}
.content-w h3 {
  font-family: "SharpSans-SemiBold", sans-serif;
  letter-spacing: 1px;
  padding-top: 50px;
}
.content-w h4,
.content-w h5,
.content-w h6 {
  font-family: "SharpSans-SemiBold", sans-serif;
  letter-spacing: 1px;
  padding-top: 25px;
}
.content-w h1 + h2,
.content-w h1 + h3 {
  padding-top: 25px;
}
.content-w h2 + h3 {
  padding-top: 10px;
}
.content-w p + h1 {
  padding-top: 100px;
}
.content-w p + h2 {
  padding-top: 75px;
}
.content-w p + h3 {
  padding-top: 75px;
}
.content-w p + h4 {
  padding-top: 50px;
}
/************
/* PARAGRAPH
************/
.content-w p {
  padding-top: 15px;
  letter-spacing: 0.35px;
}
p.has-large-font-size {
  font-size: var(--font__size_s);
  line-height: var(--font__lineheight_s);
  padding-top: 50px;
}
p.has-extralarge-font-size {
  font-family: "Friends-SemiBold", sans-serif;
  font-size: var(--font__size_l);
  line-height: var(--font__lineheight_l);
  padding-top: 75px;
}
p.hr-star {
  padding-top: 100px;
}
.content-w h1 + p {
  padding-top: 25px;
}
.content-w h2 + p {
  padding-top: 25px;
}
.content-w h3 + p {
  padding-top: 15px;
}
.content-w h2 + p.has-extralarge-font-size {
  padding-top: 75px;
}
.content-w h4 + p,
.content-w h5 + p {
  padding-top: 15px;
}
.content-w h6 + p {
  padding: 0;
}
.content-w hr + h2,
.content-w hr + h3 {
  padding-top: 0;
}
/************
/* LINKS
************/
.content-w a {
  position: relative;
  display: inline;
  text-decoration: underline;
  text-decoration-color: var(--color__text);
  transition: all 0.25s ease-in-out;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.content-w a:hover {
  color: var(--color__primary);
  text-decoration-color: var(--color__primary);
}
.content-w a[target="_blank"]::after {
  content: " \2197";
}
/************
/* LISTS
************/
.content-w ul {
  padding-top: 50px;
}
.content-w ul li {
  margin: 0 0 0 25px;
}
.content-w ul li::before {
  content: "\2022";
  font-weight: bold;
  color: var(--color__text);
  position: absolute;
  margin-left: -25px;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                     QUOTES
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
#quotes {
    display: none !important;
}
#quotes {
  z-index: 5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  perspective: 1000px;
}
#quotes-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  cursor: pointer;
}
#quotes .wp-block-quote {
  margin: 0;
  padding: 0;
}
.quote {
  z-index: 1;
  position: absolute;
  mix-blend-mode: screen;
  box-shadow: 5px 5px 10px 0vw rgb(0 0 0 / 25%);
  opacity: 0;
  transition:
    transform 0.25s ease-in-out,
    opacity 0.25s ease-in-out;
  pointer-events: none;
}
.quote.animate {
  opacity: 1;
  transition:
    transform 0.25s ease-in-out,
    opacity 0.25s ease-in-out;
  pointer-events: all;
}
.quote.animate:nth-child(1) {
  transition:
    transform 0.25s ease-in-out,
    opacity 0.25s ease-in-out 1s;
}
.quote.animate:nth-child(2) {
  transition:
    transform 0.25s ease-in-out,
    opacity 0.25s ease-in-out 2s;
}
.quote.animate:nth-child(3) {
  transition:
    transform 0.25s ease-in-out,
    opacity 0.25s ease-in-out 3s;
}
.quote.animate:nth-child(4) {
  transition:
    transform 0.25s ease-in-out,
    opacity 0.25s ease-in-out 4s;
}
.quote.animate:nth-child(5) {
  transition:
    transform 0.25s ease-in-out,
    opacity 0.25s ease-in-out 5s;
}
.quote-text {
  font-family: "Friends-SemiBold", sans-serif;
  letter-spacing: 0.35px;
  padding-top: 35px;
  padding-left: 35px;
  padding-right: 35px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
}
.quote-h {
  position: absolute;
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}
.quote-t {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#quotes .wp-block-quote cite {
  display: inline-block;
  margin-top: 25px;
  font-size: 16px;
  line-height: 22px;
  opacity: 0;
  font-style: normal;
  transition: opacity 0.5s ease-in-out;
}
.quote cite a {
  transition: opacity 0.5s ease-in-out;
}
.quote-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 25px;
  height: 25px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.quote.blue .quote-close {
  fill: var(--color__background);
}
.quote.red .quote-close {
  fill: var(--color__text);
}
.quote.blue {
  background-color: var(--color__primary);
  color: var(--color__background);
}
.quote.red {
  background-color: var(--color__primary);
  color: var(--color__text);
}
#quote-w-1 {
  top: 45%;
  left: 5%;
  width: 35%;
}
#quote-w-2 {
  top: 25%;
  left: 25%;
  width: 40%;
}
#quote-w-3 {
  top: 55%;
  left: 30%;
  width: 30%;
}
#quote-w-4 {
  top: 15%;
  left: 60%;
  width: 35%;
}
#quote-w-5 {
  top: 50%;
  left: 55%;
  width: 40%;
}
/* .quote-1 {
    animation: rotate1 10s ease-in-out infinite;
}

.quote-2 {
    animation: rotate2 12s ease-in-out infinite;
}

.quote-3 {
    animation: rotate3 10s ease-in-out infinite;
}

.quote-4 {
    animation: rotate4 15s ease-in-out infinite;
}

.quote-5 {
    animation: rotate5 10s ease-in-out infinite;
} */
/* .quote:hover {
    z-index: 10;
    cursor: move;
    mix-blend-mode: normal;
    animation-play-state: paused;
    animation: rotateStop 1s ease-in-out normal;
} */
.quote:hover {
  z-index: 10;
  cursor: grab;
  mix-blend-mode: normal;
  transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) !important;
}
.quote:active {
  cursor: grabbing;
}
.quote cite a:hover {
  opacity: 0.5;
}
.red:hover .quote-text {
  background-color: red;
}
.quote-close:hover {
  cursor: pointer;
  opacity: 0.5 !important;
}
.quote:hover .quote-h {
  opacity: 0;
}
.quote:hover .quote-t {
  opacity: 1;
}
.quote:hover cite {
  opacity: 1 !important;
}
.quote:hover .quote-close {
  opacity: 1;
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rotateStop {
  to {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
}
@keyframes rotate1 {
  from,
  to {
    transform: rotateX(-10deg) rotateY(5deg) rotateZ(10deg);
  }
  16% {
    transform: rotateY(-30deg);
  }
  33% {
    transform: rotateY(-50deg) rotateX(10deg);
  }
  50% {
    transform: rotateY(10deg) rotateX(40deg);
  }
  66% {
    transform: rotateY(70deg) rotateX(-30deg);
  }
  83% {
    transform: rotateY(40deg);
  }
}
@keyframes rotate2 {
  from,
  to {
    transform: rotateX(5deg) rotateY(5deg) rotateZ(-5deg);
  }
  16% {
    transform: rotateY(-10deg);
  }
  33% {
    transform: rotateY(30deg) rotateX(-10deg);
  }
  50% {
    transform: rotateY(15deg) rotateX(30deg) rotateZ(10);
  }
  66% {
    transform: rotateY(50deg) rotateX(-10deg);
  }
  83% {
    transform: rotateY(10deg) rotateX(30deg) rotateZ(0);
  }
}
@keyframes rotate3 {
  from,
  to {
    transform: rotateX(10deg) rotateY(-15deg) rotateZ(5deg);
  }
  16% {
    transform: rotateY(-20deg);
  }
  33% {
    transform: rotateY(15deg) rotateX(20deg) rotateZ(10);
  }
  50% {
    transform: rotateY(-10deg) rotateX(40deg);
  }
  66% {
    transform: rotateY(-35deg) rotateX(40deg) rotateZ(-5);
  }
  83% {
    transform: rotateY(40deg);
  }
}
@keyframes rotate4 {
  from,
  to {
    transform: rotateX(-10deg) rotateY(20deg) rotateZ(0deg);
  }
  16% {
    transform: rotateY(-35deg) rotateX(40deg) rotateZ(-5);
  }
  33% {
    transform: rotateY(-15deg) rotateX(10deg);
  }
  50% {
    transform: rotateY(15deg) rotateX(30deg);
  }
  66% {
    transform: rotateY(60deg) rotateX(-10deg);
  }
  83% {
    transform: rotateY(40deg) rotateX(20deg) rotateZ(15);
  }
}
@keyframes rotate5 {
  from,
  to {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  16% {
    transform: rotateY(40deg) rotateX(20deg) rotateZ(15);
  }
  33% {
    transform: rotateY(15deg) rotateX(30deg);
  }
  50% {
    transform: rotateY(10deg) rotateX(50deg);
  }
  66% {
    transform: rotateY(30deg) rotateX(-10deg);
  }
  83% {
    transform: rotateY(20deg);
  }
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    TEAM ARCHIVED
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
.team-w.archived {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 36px;
}
.team-w.archived li {
  width: 100%;
}
.team-w.archived li:hover {
  background-color: inherit;
  transition: none;
}
body.dark-theme .team-w.archived li:hover {
  background-color: inherit;
}
.team-w.archived .team-m-thumbnail {
  width: 100%;
  height: auto;
  padding-bottom: 10px;
}
.team-w.archived li:hover .team-m-thumbnail {
  opacity: 1 !important;
  transition: none;
}
.team-w.archived .team-m-info {
  width: 100%;
  padding-left: 0;
  padding-bottom: 0;
}
.team-w.archived li:hover .team-m-info {
  color: var(--color__text);
  transition: none;
}
.team-w.archived .team-m-title {
  font-size: var(--font__size_xs);
  line-height: var(--font__lineheight_xs);
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    TEAM
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
#team .wp-block-query .is-flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#team .wp-block-query .wp-block-column:first-child {
  margin: 0;
}
#team .wp-block-query .wp-block-columns {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding-top: 0;
}
#team .wp-block-query li::before {
  display: none;
}
#team .wp-block-query li {
  width: calc(50% - 6px);
}
#team .wp-block-query li a {
  height: 100%;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}
#team .wp-block-query li a:hover {
  color: var(--color__background);
}
#team .wp-block-query li {
  margin: 15px 0 0 0;
}
#team .wp-block-query li:hover {
  background-color: var(--color__primary);
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
#team .wp-block-query li:hover .team-m-info {
  color: var(--color__background);
  transition: all 0.25s ease-in-out;
}
#team .wp-block-query li:hover .team-m-thumbnail {
  opacity: 0.75 !important;
  filter: alpha(opacity=75) !important; /* For IE8 and earlier */
  transition: all 0.25s ease-in-out;
}
#team .wp-block-query .team-m-thumbnail {
  flex-basis: 15%;
  width: 14.583333334vw;
  height: 100%;
}
#team .wp-block-query .team-m-thumbnail figure {
  margin: 0;
  height: 100%;
  width: 100%;
}
#team .wp-block-query .team-m-info {
  flex-basis: 85%;
  width: 22.656250001vw;
  padding-bottom: 10px;
  padding-left: 1.5625vw;
}
#team .wp-block-query .team-m-title {
  font-family: "Friends-SemiBold", sans-serif;
}
#team .wp-block-query .team-m-metabox {
  font-family: "Friends-Regular", sans-serif;
  font-size: var(--font__size_xs);
  line-height: var(--font__lineheight_xs);
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    GUESTS
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
.team-w.guests {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 36px;
}
.team-w.guests li {
  width: 100%;
}
.team-w.guests li:hover {
  background-color: initial;
  transition: none;
}
.team-w.guests li:hover .team-m-info {
  color: var(--color__text);
  transition: none;
}
.team-w.guests .team-m-info {
  width: 100%;
  padding-left: 0;
}
.team-w.guests .team-m-event {
  padding-top: 10px;
  font-size: var(--font__size_xs);
  line-height: var(--font__lineheight_xs);
}
.team-w.guests .team-m-event a {
  display: inline !important;
  text-decoration: underline;
  text-decoration-color: var(--color__text);
  transition: all 0.25s ease-in-out;
}
.team-w.guests .team-m-event a:hover {
  color: var(--color__primary);
  text-decoration-color: var(--color__primary);
  cursor: pointer;
}
.team-w.guests .team-m-event .content-w a:hover {
  color: var(--color__primary);
  text-decoration-color: var(--color__primary);
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    TEAM
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
.team-desc {
  margin-bottom: 50px;
}
.team-h {
  font-family: "Friends-SemiBold", sans-serif;
  margin-top: 50px;
}
.team-w {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.team-w li {
  width: calc(50% - 6px);
}
.team-w li a {
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.team-w li {
  margin-top: 12px;
}
.team-w li:hover {
  background-color: var(--color__primary);
  transition: all 0.5s ease-in-out;
}
.team-w li:hover .team-m-info {
  color: var(--color__background);
  transition: all 0.25s ease-in-out;
}
.team-w li:hover .team-m-thumbnail {
  opacity: 0.75 !important;
  filter: alpha(opacity=75) !important; /* For IE8 and earlier */
  transition: all 0.25s ease-in-out;
}
.team-m-thumbnail {
  width: 14.583333334vw;
  height: 100%;
}
.team-m-thumbnail img {
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  filter: grayscale(100%);
}
.team-m-info {
  width: 22.656250001vw;
  padding-bottom: 10px;
  padding-left: 1.5625vw;
}
.team-m-title {
  font-family: "Friends-SemiBold", sans-serif;
}
.team-m-metabox {
  font-family: "Friends-Regular", sans-serif;
  font-size: var(--font__size_xs);
  line-height: var(--font__lineheight_xs);
}
.team-m-back:hover {
  cursor: pointer;
}
/* Team Member Contact Buttons */
.wp-block-cpt-team-members-team-member-contact-buttons {
    flex-wrap: wrap;
    gap: 25px;
}
.wp-block-cpt-team-members-team-member-contact-buttons .wp-block-button {
    margin-right: 0;
}
.team-member-button {
    display: inline-block !important;
    overflow-wrap: normal !important;
    word-break: normal;
}
/*───────────────────────────────────────────────────────────*/
/*─                         post
/*───────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    EVENT
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
.wp-block-taxonomy-terms-list-block a {
  pointer-events: none;
  text-decoration: none;
}
#event #post-w {
  position: relative;
  padding-top: 250px;
}
#event #event-m-w {
  position: relative;
  padding-top: 250px;
}
#event-m-w .wp-block-media-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#event-m-w .wp-block-media-text {
  margin: 0;
}
#event-m-w .wp-block-media-text__media {
  width: 30.729166668vw;
  margin: 0;
}
#event-m-w .wp-block-media-text__content {
  width: 38.802083335vw;
}
#event-m-w figcaption {
  font-size: var(--font__size_xxs);
  padding-top: 5px;
  padding-bottom: 50px;
}
#event-m-w h2 {
  font-family: "Friends-SemiBold", sans-serif;
  font-size: var(--font__size_m);
  line-height: var(--font__lineheight_m);
  text-transform: none;
  padding-bottom: 50px;
}
#event-m-w h2:empty {
  padding-bottom: 0;
}
.event-m-footer {
  padding: 150px 0 0;
  display: flex;
  justify-content: flex-end;
}
#event-m-back {
  font-family: "Friends-SemiBold", sans-serif;
}
#event-m-back:hover {
  cursor: pointer;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                EVENTS ARCHIVE
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
#events-past-w {
  padding-top: 100px;
}
#events-cat-w {
  display: flex;
  flex-wrap: wrap;
  padding-top: 5px;
}
#events-cat-w a {
  font-family: "Friends-SemiBold", sans-serif;
  padding-right: 15px;
}
#events-cat-w a:hover {
  color: var(--color__primary);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
#events-cat-w a.active {
  text-decoration: underline;
}
#events-ul hr {
  margin-top: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--color__text);
}
#events-ul li {
  margin: 24px 0 0 0;
}
#events-ul li:first-of-type {
  margin-top: 0;
}
#events-ul li a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
}
#events-ul li:before {
  content: none;
}
#events-ul li a:hover {
  background-color: var(--color__primary);
  transition: all 0.5s ease-in-out;
}
#events-ul li a:hover .event-thumbnail {
  opacity: 0.75 !important;
  filter: alpha(opacity=75) !important; /* For IE8 and earlier */
  transition: all 0.25s ease-in-out;
}
#events-ul li a:hover .event-title,
#events-ul li a:hover .event-excerpt,
#events-ul li a:hover .event-meta,
#events-ul li a:hover .event-highlight {
  color: var(--color__background);
  transition: all 0.25s ease-in-out;
}
.event-thumbnail {
  width: 14.583333334vw;
  height: 100%;
}
.event-info {
  width: 38.8020833334vw;
  margin-left: 1.5625vw;
  padding-top: 5px;
  padding-bottom: 5px;
}
.event-highlight {
  color: var(--color__primary);
}
.event-title {
  font-family: "Friends-SemiBold", sans-serif;
  font-size: var(--font__size_s);
  line-height: var(--font__lineheight_s);
  margin-bottom: 20px;
  word-break: normal;
}
.event-excerpt p {
  font-size: var(--font__size_xs);
  line-height: var(--font__lineheight_xs);
  padding-top: 0;
  word-break: break-word;
}
.event-meta {
  font-size: var(--font__size_xxs);
  line-height: var(--font__lineheight_xxs);
  width: 22.65625vw;
  margin-left: 1.5625vw;
  padding-top: 5px;
  padding-bottom: 5px;
}
#events-ul li.event-internal,
#events-ul li.event-internal .event-highlight {
  color: gray;
}
#events-ul li.event-internal a:hover {
  color: var(--color__background);
  background-color: gray;
}
#events-ul li.event-internal a:hover .event-title,
#events-ul li.event-internal a:hover .event-excerpt,
#events-ul li.event-internal a:hover .event-meta,
#events-ul li.event-internal a:hover .event-highlight {
  color: var(--color__background);
}
/* "interne Termine" Archive page // ID 3459 */
.page-id-3459 #events-ul li.event-internal {
  color: inherit;
}
.page-id-3459 #events-ul li.event-internal .event-highlight {
  color: var(--color__primary);
}
.page-id-3459 #events-ul li.event-internal a:hover {
  color: var(--color__primary);
  background-color: var(--color__primary);
}
.page-id-3459 #events-ul li.event-internal a:hover .event-title,
.page-id-3459 #events-ul li.event-internal a:hover .event-excerpt,
.page-id-3459 #events-ul li.event-internal a:hover .event-meta {
  color: var(--color__background);
}
/* Events Layout Adjustments */
#events-w + #events-past-w {
    padding-top: 50px;
}
#events-cat-w a {
    padding-right: 20px;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    POST
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
#post-w {
  position: relative;
}
#post-w .wp-block-media-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#post-w .wp-block-media-text {
  margin: 0;
}
#post-w .wp-block-media-text__media {
  width: 30.729166668vw;
  margin: 0;
}
#post-w .wp-block-media-text__content {
  width: 38.802083335vw;
}
#post-w figcaption {
  font-size: var(--font__size_xxs);
  padding-top: 5px;
  padding-bottom: 50px;
}
#post-w h2 {
  font-family: "Friends-SemiBold", sans-serif;
  font-size: var(--font__size_m);
  line-height: var(--font__lineheight_m);
  text-transform: none;
  padding-bottom: 50px;
}
#post-w .wp-block-post-date {
  font-family: "Friends-SemiBold", sans-serif;
  padding-top: 15px;
}
#post-w .wp-block-post-terms {
  font-family: "Friends-SemiBold", sans-serif;
}
#post-w .wp-block-post-terms a {
  pointer-events: none;
  text-decoration: none;
}
#post-w-footer {
  padding: 150px 0 0;
  text-align: right;
}
#post-back {
  font-family: "Friends-SemiBold", sans-serif;
}
#post-back:hover {
  cursor: pointer;
}
#post-w-footer .nav-links {
  padding-top: 10px;
}
#post-w-footer .nav-links a {
  font-family: "Friends-SemiBold", sans-serif;
  text-decoration: underline;
}
#post-w-footer .nav-next {
  padding-top: 10px;
}
#post-w-footer .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                               POSTS-ARCHIVE
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
#posts-cat-w {
  display: flex;
  flex-wrap: wrap;
  padding-top: 5px;
}
#posts-cat-w a {
  font-family: "Friends-SemiBold", sans-serif;
  padding-right: 15px;
}
#posts-cat-w a:hover {
  color: var(--color__primary);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
#posts-cat-w a.active {
  text-decoration: underline;
}
#posts-ul hr {
  margin-top: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--color__text);
}
#posts-ul li {
  margin: 24px 0 0 0;
}
#posts-ul li:first-of-type {
  margin-top: 0;
}
#posts-ul li a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
}
#posts-ul li:before {
  content: none;
}
#posts-ul li a:hover {
  background-color: var(--color__primary);
  transition: all 0.5s ease-in-out;
}
#posts-ul li a:hover .post-thumbnail {
  opacity: 0.75 !important;
  filter: alpha(opacity=75) !important; /* For IE8 and earlier */
  transition: all 0.25s ease-in-out;
}
#posts-ul li a:hover .post-title,
#posts-ul li a:hover .post-excerpt,
#posts-ul li a:hover .post-meta {
  color: var(--color__background);
  transition: all 0.25s ease-in-out;
}
.post-thumbnail {
  width: 14.583333334vw;
  height: 100%;
}
.post-info {
  width: 38.8020833334vw;
  margin-left: 1.5625vw;
  padding-top: 5px;
  padding-bottom: 5px;
}
.post-title {
  font-family: "Friends-SemiBold", sans-serif;
  font-size: var(--font__size_s);
  line-height: var(--font__lineheight_s);
  margin-bottom: 20px;
  word-break: normal;
}
.post-excerpt p {
  font-size: var(--font__size_xs);
  line-height: var(--font__lineheight_xs);
  padding-top: 0;
  word-break: break-word;
}
.post-meta {
  font-size: var(--font__size_xxs);
  line-height: var(--font__lineheight_xxs);
  width: 22.65625vw;
  margin-left: 1.5625vw;
  padding-top: 5px;
  padding-bottom: 5px;
}
.nav-links {
  text-align: right;
  padding-top: 100px;
}
.nav-links .prev,
.nav-links .next {
  text-decoration: none;
}
.nav-links a {
  font-family: "Friends-SemiBold", sans-serif;
  text-decoration: none;
}
/* News/Posts Layout Adjustments */
#posts-cat-w a {
    padding-right: 20px;
}
p.read-more {
    padding-top: 15px;
}
.wp-block-post-excerpt p.read-more {
    display: none;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    PUBLICATION
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
#publication #post-w {
  position: relative;
  padding-top: 250px;
}
.publication-meta-block {
  padding-bottom: 25px;
}
.publication-meta-block h1.publication-title {
  margin-bottom: 0;
}
.publication-meta-block h2.publication-subtitle {
  font-family: "Friends-Regular", sans-serif;
  font-size: var(--font__size_s);
  line-height: var(--font__lineheight_s);
  margin-top: 0;
  padding-bottom: 25px;
}
.content-w p.publication-categories,
.content-w p.publication-authors,
.content-w p.publication-year {
  padding-top: 0;
}
.publication-meta-block h1.publication-title:not(:has(+ h2.publication-subtitle)) {
  padding-bottom: 50px;
}
.content-w .citation-text + .citation-identifiers {
  padding-top: 25px;
}
.content-w .citation-identifiers {
  padding-top: 0;
  white-space: nowrap;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                          PUBLICATIONS ARCHIVE
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
#publications-cat-w {
  display: flex;
  flex-wrap: wrap;
  padding-top: 5px;
}
#publications-cat-w a {
  font-family: "Friends-SemiBold", sans-serif;
  padding-right: 15px;
}
#publications-cat-w a:hover {
  color: var(--color__primary);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
#publications-cat-w a.active {
  text-decoration: underline;
}
#publications-ul hr {
  margin-top: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--color__text);
}
#publications-ul li {
  margin: 24px 0 0 0;
}
#publications-ul li:first-of-type {
  margin-top: 0;
}
#publications-ul li a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
}
#publications-ul li:before {
  content: none;
}
#publications-ul li a:hover {
  background-color: var(--color__primary);
  transition: all 0.5s ease-in-out;
}
#publications-ul li a:hover .publication-thumbnail {
  opacity: 0.75 !important;
  filter: alpha(opacity=75) !important; /* For IE8 and earlier */
  transition: all 0.25s ease-in-out;
}
#publications-ul li a:hover .publication-title,
#publications-ul li a:hover .publication-excerpt,
#publications-ul li a:hover .publication-meta {
  color: var(--color__background);
  transition: all 0.25s ease-in-out;
}
.publication-thumbnail {
  width: 14.583333334vw;
  height: 100%;
}
.publication-info {
  width: 38.8020833334vw;
  margin-left: 1.5625vw;
  padding-top: 5px;
  padding-bottom: 5px;
}
.publication-title {
  font-family: "Friends-SemiBold", sans-serif;
  font-size: var(--font__size_s);
  line-height: var(--font__lineheight_s);
  margin-bottom: 20px;
  word-break: normal;
}
.publication-excerpt p {
  font-size: var(--font__size_xs);
  line-height: var(--font__lineheight_xs);
  padding-top: 0;
  word-break: break-word;
}
.publication-meta {
  font-size: var(--font__size_xxs);
  line-height: var(--font__lineheight_xxs);
  width: 22.65625vw;
  margin-left: 1.5625vw;
  padding-top: 5px;
  padding-bottom: 5px;
}
#publications-sort-w a:hover {
  color: var(--color__primary);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.export-buttons {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding-top: 25px;
  padding-bottom: 25px;
}
.export-buttons .wp-block-button a {
  padding: 10px 25px 5px 25px;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}
.export-buttons .wp-block-button a:hover {
  color: var(--color__background);
  background-color: var(--color__text);
  cursor: pointer;
}
/* Publications Layout Adjustments */
#publications-cat-w a {
    padding-right: 20px;
}
/* Publication Grid and Layout */
.wp-block-post-template.is-layout-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.wp-block-post-template > li.wp-block-post {
    display: flex;
  flex-direction: column;
}
/* 3-spaltig */
.wp-block-post-template.columns-3 > li.wp-block-post {
    width: calc((100% / 3) - 36px);
}
/* 2-spaltig */
.wp-block-post-template.columns-2 > li.wp-block-post {
    width: calc((100% / 2) - 36px);  
}
.wp-block-post-template > li .wp-block-group {
    min-height: 100%;
    margin: 0 0 72px 0;
}
.wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* Responsive: unter 768px einspaltig */
/* Typography in "Mehr" */
.wp-block-post-template.is-layout-grid .wp-block-post-excerpt {
    font-size: var(--font__size_xs);
    line-height: var(--font__lineheight_xs);
}
.wp-block-post-template.is-layout-grid .wp-block-details {
    padding-top: 20px;
}
.wp-block-post-template.is-layout-grid .wp-block-details summary::after {
    top: 20px;
}
.wp-block-post-template.is-layout-grid .wp-block-details[open] summary::after {
    top: 16px;
}
/* List View */
.wp-block-query ul.wp-block-post-template li {
    margin: 0;
}
.wp-block-query ul.wp-block-post-template li::before {
    content: '';
}
/* Image Alignment */
.wp-block-post-template.is-layout-grid .wp-block-post-featured-image {
    margin: 0;
}
.wp-block-post-template.is-layout-grid img {
    width: auto;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    TEAM MEMBER
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
#team-m-h .hero-h1 {
  padding-left: 51%;
}
#team-m-w {
  position: relative;
  padding-top: 250px;
}
#team-m-w .wp-block-media-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#team-m-w .wp-block-media-text {
  margin: 0;
}
#team-m-w .wp-block-media-text__media {
  width: 30.729166668vw;
  margin: 0;
}
#team-m-w .wp-block-media-text__media img {
  filter: grayscale(100%);
}
#team-m-w .wp-block-media-text__content {
  width: 38.802083335vw;
}
#team-m-w .wp-block-columns {
  display: flex;
  justify-content: space-between;
  padding-top: 0;
}
#team-m-w .wp-block-column-left .wp-block-post-featured-image {
  margin: 0;
}
#team-m-w .wp-block-column-left img {
  filter: grayscale(100%);
}
#team-m-w figcaption {
  font-size: var(--font__size_xxs);
  padding-top: 5px;
  padding-bottom: 50px;
}
#team-m-w h2 {
  font-family: "Friends-SemiBold", sans-serif;
  font-size: var(--font__size_m);
  line-height: var(--font__lineheight_m);
  text-transform: none;
  padding-bottom: 50px;
}
/* #team-m-w p {
    text-indent: 75px;
} */
#team-m-w h2:empty {
  padding-bottom: 0;
}
.team-m-events {
  padding-top: 25px;
  padding-left: 35vw;
}
.team-m-events ul {
  padding-top: 25px;
}
.team-m-events ul li a {
  display: inline !important;
}
.team-member-contact-group {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin: 0;
    min-height: 0;
}
.team-m-footer {
  padding: 150px 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#team-m-back {
  font-family: "Friends-SemiBold", sans-serif;
}
#team-m-back:hover {
  cursor: pointer;
}
.cv-info li {
  padding-bottom: 25px;
}
.cv-info ul {
  padding-top: 0;
}
/*───────────────────────────────────────────────────────────*/
/*─                         plugins
/*───────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    ACCORDION
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/* 
ALTES PLUGIN – Accordion Blocks

.wp-block-pb-accordion-item {
    padding-top: 75px;
}

h3.c-accordion__title  {
    padding-top: 0;
}

.c-accordion__title  {
    padding-right: 6.5885416667vw;
}

.c-accordion__title:after {
    font-family: 'SharpSans-SemiBold', sans-serif;
    color: var(--color__text);
    top: 0;
    transform: translateY(0%);
} */
/* Aino Accordion Block */
.wp-block-ainoblocks-accordion-faq-block {
  background-color: var(--color_background);
  margin-bottom: 0;
  padding-bottom: 10px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--color__text);
}
.content-w .wp-block-ainoblocks-accordion-faq-block {
  margin-top: 75px;
}
.wp-block-ainoblocks-accordion-faq-block .accordion h3 {
  padding-top: 0;
  padding-right: 6.5885416667vw;
}
.wp-block-ainoblocks-accordion-faq-block .accordion:before {
  top: 0;
  border-radius: 0;
  margin-top: 5px;
}
.wp-block-ainoblocks-accordion-faq-block .accordion:after {
  top: 0;
  border-radius: 0;
  margin-top: 11px;
}
.wp-block-ainoblocks-accordion-faq-block.open .panel {
  padding-right: 6.5885416667vw;
}
.wp-block-ainoblocks-accordion-faq-block.close .accordion:hover,
.wp-block-ainoblocks-accordion-faq-block.open .accordion {
  color: var(--color__primary);
  text-decoration-color: var(--color__primary);
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                        ADVANCED POSTS BLOCK
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
.wp-block-advanced-posts-blocks-post a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
}
.wp-block-advanced-posts-blocks-post a:hover .post-thumbnail {
  opacity: 0.75 !important;
  filter: alpha(opacity=75) !important;
  transition: all 0.25s ease-in-out;
}
.wp-block-advanced-posts-blocks-post a .post-title, 
.wp-block-advanced-posts-blocks-post a .post-excerpt, 
.wp-block-advanced-posts-blocks-post a .post-meta {
  color: var(--color__background);
}
.wp-block-advanced-posts-blocks-post a:hover .post-title,
.wp-block-advanced-posts-blocks-post a:hover .post-excerpt,
.wp-block-advanced-posts-blocks-post a:hover .post-meta {
  color: var(--color__secondary);
  transition: all 0.25s ease-in-out;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                        CAROUSEL SLIDER BLOCK
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
.slick-list {
  background: var(--color__primary);
  color: var(--color__background);
}
.wp-block-cb-carousel .slick-slide {
  padding-left: 0;
  padding-right: 0;
}
.slick-dotted.slick-slider {
  margin-bottom: 0px;
}
.slick-dots li:before {
  display: none;
}
.slick-dots li button:before {
  color: var(--color__text) !important;
}
.slick-dots li.slick-active button:before {
  color: var(--color__text) !important;
}
.slick-slider .post-info {
  margin-top: 10px;
}
.slick-slider .post-meta {
  margin-top: 18px;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                        CAROUSEL BLOCK
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
.wp-block-rudr-carousel {
  background-color: var(--color__text);
  color: var(--color__background);
}
.wp-block-rudr-carousel .swiper-pagination {
  margin-top: 0;
  margin-bottom: 15px;
}
.wp-block-rudr-carousel .swiper-pagination-bullet {
  margin: 0 15px !important;
  background-color: var(--color__background);
  opacity: 0.25;
  transition: opacity 0.25s ease-in-out;
}
.wp-block-rudr-carousel .swiper-pagination-bullet:hover {
    opacity: 0.75;
}
.wp-block-rudr-carousel .swiper-pagination-bullet-active {
    opacity: 1;
}
.wp-block-rudr-carousel .post-info {
  margin-top: 10px;
}
.wp-block-rudr-carousel .post-meta {
  margin-top: 18px;
}
.wp-block-rudr-carousel .wp-block-group {
  margin: 0;
  min-height: 100%;
}
.wp-block-rudr-carousel .wp-block-advanced-posts-blocks-post {
	margin-bottom: 20px;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    WPFORMS
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
.wpcf7-form {
  margin-top: 50px;
  margin-bottom: 50px;
}
.wpcf7-form p {
  font-family: "Friends-SemiBold", sans-serif;
  font-size: var(--font__size_xs);
}
.wpcf7-form .wpcf7-form-control.wpcf7-submit {
  font-family: "Friends-SemiBold", sans-serif !important;
  font-size: var(--font__size_xs) !important;
  color: var(--color__background) !important;
  background-color: var(--color__text) !important;
  border: none !important;
  padding: 10px 25px 5px 25px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.wpcf7-form .wpcf7-form-control.wpcf7-submit:hover,
.wpcf7-form .wpcf7-form-control.wpcf7-submit:focus,
.wpcf7-form .wpcf7-form-control.wpcf7-submit:active {
  background-color: var(--color__primary) !important;
  border: none !important;
}
.wpcf7-form .wpcf7-form-control .wpforms-required-label {
  color: var(--color__primary);
  font-weight: bold;
}
.wpcf7-form-control-wrap {
  background-color: var(--color__background);
  box-sizing: border-box;
  color: var(--color__text);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  display: block;
  float: none;
  font-size: 16px;
  border: 1px solid var(--color__text);
  padding: 10px 15px;
  margin-top: 10px;
  width: 100%;
}
.wpcf7-form .wpcf7-form-control-wrap textarea,
.wpcf7-form .wpcf7-form-control-wrap input {
  width: 100% !important;
  letter-spacing: 0.35px;
}
.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 15px 25px;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    MANY TO MANY RELATIONSHIPS BLOCK
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
.content-w .wp-block-related-posts-block ul {
    padding-top: 25px;
}
.content-w .wp-block-related-posts-block.related-publications ul {
    padding-top: 0;
}
.content-w .wp-block-related-posts-block a {
    display: inline;
}
.content-w .wp-block-details .wp-block-related-posts-block .related-post-title {
    display: none;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    RELATED EVENTS BLOCK
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
.content-w .wp-block-grk-site-team-member-related-events-block ul {
    padding-top: 25px;
}
.content-w .wp-block-grk-site-team-member-related-events-block a {
    display: inline;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    RELATED PUBLICATIONS BLOCK
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
.content-w .wp-block-grk-site-team-member-related-publications-block ul {
    padding-top: 10px;
}
.content-w .wp-block-grk-site-team-member-related-publications-block a {
    display: inline;
}
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─
/*─                                                                                    WPFORMS
/*─
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
/*─────────────────────────────────────────────────────────────────────────────────────────────────*/
.wpforms-container-full {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}
.wpforms-container-full .wpforms-form .wpforms-field-label {
  font-family: "Friends-SemiBold", sans-serif;
  font-weight: normal !important;
}
.wpforms-container-full .wpforms-form input[type="submit"],
.wpforms-container-full .wpforms-form button[type="submit"],
.wpforms-container-full .wpforms-form .wpforms-page-button {
  font-family: "Friends-SemiBold", sans-serif !important;
  font-size: var(--font__size_xs) !important;
  color: var(--color__background) !important;
  background-color: var(--color__text) !important;
  border: none !important;
  padding: 10px 25px 5px 25px !important;
}
.wpforms-container-full .wpforms-form input[type="submit"]:hover,
.wpforms-container-full .wpforms-form input[type="submit"]:focus,
.wpforms-container-full .wpforms-form input[type="submit"]:active,
.wpforms-container-full .wpforms-form button[type="submit"]:hover,
.wpforms-container-full .wpforms-form button[type="submit"]:focus,
.wpforms-container-full .wpforms-form button[type="submit"]:active,
.wpforms-container-full .wpforms-form .wpforms-page-button:hover,
.wpforms-container-full .wpforms-form .wpforms-page-button:active,
.wpforms-container-full .wpforms-form .wpforms-page-button:focus {
  background-color: var(--color__primary) !important;
  border: none !important;
}
.wpforms-container-full .wpforms-form .wpforms-required-label {
  color: var(--color__primary);
  font-weight: bold;
}
.wpforms-container-full .wpforms-form .wpforms-field input.wpforms-error,
.wpforms-container-full .wpforms-form .wpforms-field input.user-invalid,
.wpforms-container-full .wpforms-form .wpforms-field textarea.wpforms-error,
.wpforms-container-full .wpforms-form .wpforms-field textarea.user-invalid,
.wpforms-container-full .wpforms-form .wpforms-field select.wpforms-error,
.wpforms-container-full .wpforms-form .wpforms-field select.user-invalid,
.wpforms-container-full
  .wpforms-form
  .wpforms-field.wpforms-has-error
  .choices__inner {
  border: 1px solid var(--color__primary);
}
.wpforms-container-full .wpforms-form label.wpforms-error {
  font-size: var(--font__lineheight_xs) !important;
  color: var(--color__primary) !important;
}
div.wpforms-container-full .wpforms-form input[type="date"],
div.wpforms-container-full .wpforms-form input[type="datetime"],
div.wpforms-container-full .wpforms-form input[type="datetime-local"],
div.wpforms-container-full .wpforms-form input[type="email"],
div.wpforms-container-full .wpforms-form input[type="month"],
div.wpforms-container-full .wpforms-form input[type="number"],
div.wpforms-container-full .wpforms-form input[type="password"],
div.wpforms-container-full .wpforms-form input[type="range"],
div.wpforms-container-full .wpforms-form input[type="search"],
div.wpforms-container-full .wpforms-form input[type="tel"],
div.wpforms-container-full .wpforms-form input[type="text"],
div.wpforms-container-full .wpforms-form input[type="time"],
div.wpforms-container-full .wpforms-form input[type="url"],
div.wpforms-container-full .wpforms-form input[type="week"],
div.wpforms-container-full .wpforms-form select,
div.wpforms-container-full .wpforms-form textarea {
  border-radius: 0 !important;
}
/*───────────────────────────────────────────────────────────*/
/*─                         breakpoints
/*───────────────────────────────────────────────────────────*/
@media (min-width: 1000px) {
  .menu-item-ul .menu-a {
    line-height: var(--font__lineheight_xs);
  }
  .menu-item-has-children .menu-item {
    line-height: var(--font__lineheight_xs);
  }

  .menu-item-ul .menu-a {
    font-size: var(--font__size_xs);
  }

  .menu-item-ul .menu-item:last-of-type {
    padding-bottom: 20px;
  }
  .team-w.guests li {
    width: calc((100% / 3) - 36px);
  }
  .team-w.archived li {
    width: calc((100% / 5) - 36px);
  }
}
@media (max-width: 760px) {
  #nav-burger-close {
      width: 25px;
      height: 25px;
  }
  #search-form {
    width: 100%;
    padding: 75px 75px 0 50px;
  }

  #nav-search-button-open {
    top: 130px;
    width: 25px;
    height: 25px;
  }

  #nav-search-button-close {
    width: 25px;
    height: 25px;
  }

  #search-form select.search-select,
  #search-form input.search-input,
  #search-form input.search-submit {
    height: 50px;
  }
  .cv-info .wp-block-column {
    padding-top: 0 !important;
  }
  :root {
    --font__size_xl: 36px;
    --font__size_l: 32px;
    --font__size_m: 28px;
    --font__size_s: 24px;
    --font__size_xs: 20px;
    --font__size_xxs: 12px;
    --font__lineheight_xl: 48px;
    --font__lineheight_l: 38px;
    --font__lineheight_m: 32px;
    --font__lineheight_s: 28px;
    --font__lineheight_xs: 24px;
    --font__lineheight_xxs: 16px;
  }

  #main {
    margin: 0 auto;
    max-width: calc(100% - 10vw);
  }

  #nav-l {
    display: none;
  }

  #nav-t-logo-l {
    height: 6.5vw;
    width: 30vw;
  }

  #nav-t-logo-r {
    height: 6.5vw;
    width: 30vw;
  }

  #nav-t-logo-sub {
    left: 0;
    width: 70%;
    font-size: var(--font__size_xxs);
    line-height: var(--font__lineheight_xxs);
  }

  #nav-t-logo-u {
    width: 75px;
    right: 75px;
  }

  #nav-t-logo-woc {
    width: 55px;
    right: 5px;
  }

  #nav-t-breadcrumbs {
    left: 0;
    flex-wrap: wrap;
  }

  #nav-r-burger {
    width: 25px;
    height: 25px;
  }

  #nav-themecolor-switch {
    top: 60px;
    width: 25px;
    height: 25px;
  }

  #nav-lang-switch {
    top: 95px;
    width: 25px;
    height: 25px;
  }

  #nav-lang-switch .lang-item a {
    width: 25px;
    height: 25px;
  }

  #nav-top {
    width: 25px;
    height: 25px;
  }

  #menu {
    width: 100vw;
    padding-top: 5vh;
    padding-left: 50px;
    padding-right: 25px;
  }

  .menu-logo-h {
    width: 15vw;
  }

  .menu-logo-a {
    width: 20vh;
  }

  .menu-item-has-children .menu-item {
    padding-top: 1vh;
  }

  #home .content-w {
    padding-top: 125px;
  }

  p.has-large-font-size {
    padding-top: 15px;
  }

  #team .wp-block-query .is-flex-container {
    display: block;
  }

  #team .wp-block-query li {
    width: 100%;
  }

  #team .wp-block-query li {
    margin-top: 25px;
  }

  #team .wp-block-query .wp-block-column {
    padding-top: 0;
  }

  .team-w {
    display: block;
  }

  .team-w li {
    width: 100%;
  }

  .team-w.archived li {
    width: calc((100% / 3) - 36px);
  }

  #team-m-h .hero-h1 {
    padding-top: 250px;
    padding-left: 0;
  }

  #team-m-w .wp-block-media-text.alignwide {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
  }

  #team-m-w .wp-block-media-text__media {
    width: 100%;
  }

  #team-m-w .wp-block-media-text__content {
    width: 100%;
    padding-top: 25px;
  }

  .team-m-events {
    padding-top: 25px;
    padding-left: 0;
  }

  .team-m-footer {
    padding-top: 50px;
    justify-content: flex-start;
  }

  .cv-info .wp-block-column {
    padding-top: 0;
  }

  .footer-w {
    padding-top: 150px;
  }

  .wp-block-columns {
    display: flex;
    flex-direction: column;
  }

  .wp-block-column {
    width: 100%;
    padding-top: 25px;
  }

  .wp-block-buttons {
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .wp-block-button {
    margin-bottom: 25px;
  }

  #interferer {
    right: 15vw;
    width: 20vw;
    height: 20vw;
    border-radius: 10vw;
  }

  #interferer-a {
    font-size: 3.5vw;
    line-height: 3.5vw;
  }

  div.wpforms-container-full .wpforms-form .wpforms-one-half,
  div.wpforms-container-full .wpforms-form .wpforms-three-sixths,
  div.wpforms-container-full .wpforms-form .wpforms-two-fourths {
    width: 100% !important;
  }

  div.wpforms-container-full .wpforms-form .wpforms-five-sixths,
  div.wpforms-container-full .wpforms-form .wpforms-four-sixths,
  div.wpforms-container-full .wpforms-form .wpforms-four-fifths,
  div.wpforms-container-full .wpforms-form .wpforms-one-fifth,
  div.wpforms-container-full .wpforms-form .wpforms-one-fourth,
  div.wpforms-container-full .wpforms-form .wpforms-one-half,
  div.wpforms-container-full .wpforms-form .wpforms-one-sixth,
  div.wpforms-container-full .wpforms-form .wpforms-one-third,
  div.wpforms-container-full .wpforms-form .wpforms-three-fourths,
  div.wpforms-container-full .wpforms-form .wpforms-three-fifths,
  div.wpforms-container-full .wpforms-form .wpforms-three-sixths,
  div.wpforms-container-full .wpforms-form .wpforms-two-fourths,
  div.wpforms-container-full .wpforms-form .wpforms-two-fifths,
  div.wpforms-container-full .wpforms-form .wpforms-two-sixths,
  div.wpforms-container-full .wpforms-form .wpforms-two-thirds {
    margin-left: 0 !important;
  }

  #posts-ul li a,
  #events-ul li a,
  #publications-ul li a {
    flex-direction: column;
  }

  .post-thumbnail,
  .event-thumbnail,
  .publication-thumbnail {
    width: 100%;
    height: 100%;
  }

  .post-info,
  .event-info,
  .publication-thumbnail {
    width: 100%;
    margin-left: 0;
  }

  .post-meta,
  .event-meta,
  .publication-meta {
    width: 100%;
    margin-left: 0;
  }

  .wp-block-advanced-posts-blocks-post a {
    flex-direction: column;
  }

  .slick-slider .post-info,
  .slick-slider .post-meta {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 1400px) {
  #nav-burger-close {
    width: 2.75vw;
    height: 2.75vw;
  }
  #nav-search-button-open {
    top: 14vw;
    width: 2.75vw;
    height: 2.75vw;
  }

  #nav-search-button-close {
    width: 2.75vw;
    height: 2.75vw;
  }
  #nav-t-logo-woc {
    width: 9vw;
  }

  #nav-t-logo-u {
    width: 11.5vw;
    right: 10.5vw;
  }

  #nav-r-burger {
    width: 2.75vw;
    height: 2.75vw;
  }

  #nav-themecolor-switch {
    top: 6vw;
    width: 2.75vw;
    height: 2.75vw;
  }

  #nav-lang-switch {
    top: 10vw;
    width: 2.75vw;
    height: 2.75vw;
  }

  #nav-lang-switch .lang-item a {
    width: 2.75vw;
    height: 2.75vw;
  }

  #nav-top {
    width: 2.75vw;
    height: 2.75vw;
  }

  #home .content-w {
    padding-top: 250px;
  }

  #event #post-w {
    padding-top: 300px;
  }

  .hero-h1 {
    padding-top: 300px;
  }

  #team-m-h .hero-h1 {
    padding-top: 300px;
  }

  #team-m-w {
    padding-top: 300px;
  }

  .team-h {
    margin-top: 100px;
  }

  .team-w li:nth-child(-n + 2) {
    margin-top: 25px;
  }

  .team-w li {
    width: calc(50% - 25px);
    margin-top: 50px;
  }

  .team-w.guests li {
    width: calc((100% / 5) - 36px);
    margin-top: 12px;
  }

  .team-w.archived li {
    width: calc((100% / 5) - 36px);
    margin-top: 12px;
  }

  .footer-w {
    padding-top: 300px;
  }

  #interferer {
    top: 15vh;
    right: 10vw;
    width: 12vw;
    height: 12vw;
    border-radius: 6vw;
    padding-bottom: 2vw;
  }

  #interferer-a {
    font-size: 2vw;
    line-height: 2vw;
  }

  #interferer-c {
    bottom: 1.5vw;
  }
}
@media (min-width: 761px) and (max-width: 1000px) {
  #search-form {
    width: 50%;
  }
  #nav-t-logo-sub {
    font-size: 16px;
    line-height: 22px;
  }

  #menu {
    width: 50%;
  }

  #team-m-w figcaption {
    font-size: 16px;
  }

  .team-m-footer {
    padding-top: 50px;
  }
}
@media (min-width: 761px) {
  #event-m-w .wp-block-media-text__media {
    width: 25vw;
  }

  #event-m-w .wp-block-media-text__content {
    width: 45vw;
  }
  #team-m-w .wp-block-media-text__media {
    width: 25vw;
  }
  #team-m-w .wp-block-media-text__content {
    width: 45vw;
  }
  #team-m-w  .wp-block-column-left {
    width: 25vw;
  }
  #team-m-w .wp-block-column-right {
    width: 45vw;
  }
  #team-m-w  .wp-block-column-left {
    width: 25vw;
  }
  #team-m-w .wp-block-column-right {
    width: 45vw;
  }
  #post-w .wp-block-media-text__media,
  #team-m-w .wp-block-media-text__media,
  #event-m-w .wp-block-media-text__media,
  #events-w .wp-block-media-text__media,
  #publications-w .wp-block-media-text__media {
    width: 25vw; /*was 30.729166668vw*/
  }

  #post-w .wp-block-media-text__content,
  #team-m-w .wp-block-media-text__content,
  #event-m-w .wp-block-media-text__content,
  #events-w .wp-block-media-text__content,
  #publications-w .wp-block-media-text__content {
    width: 45vw; /*was 38.802083335vw */
  }

  .team-w.guests li {
    width: calc((100% / 3) - 36px);
  }

  .team-w.archived li {
    width: calc((100% / 4) - 36px);
  }

  .slick-slider .post-meta {
    padding-right: 1.5625vw;
  }
}
@media (max-width: 768px) {
  .wp-block-post-template > li.wp-block-post {
    flex: 1 1 100%;
  }
}
@media (min-height: 500px) and (min-width: 750px) and (max-width: 1000px) {
  .menu-a {
    font-size: 1.75vw;
    line-height: 2vw;
  }
}
@media (min-height: 750px) and (min-width: 1001px) {
  .menu-a {
    font-size: 2.25vw;
    line-height: 2.75vw;
  }

  #menu-list {
    padding-bottom: 5vh;
  }
}
@media (min-height: 551px) and (max-height: 750px) {
  #menu-logos {
    padding-top: 2vw;
  }
  #menu-list-b {
    padding-top: 2vw;
    padding-bottom: 2vw;
  }
}
@media (max-height: 750px) {
  #nav-l {
    display: none;
  }
}
@media (max-width: 320px) {
  #nav-t-logo-sub {
    font-size: 2.5vw;
    width: 50%;
  }

  #nav-t-logo-u,
  #nav-t-logo-woc {
    display: none;
  }

  #quotes {
    display: none;
  }

  #interferer {
    display: none;
  }

  #team .wp-block-query .wp-block-columns {
    display: flex;
    flex-direction: column;
  }

  #team .wp-block-query .team-m-thumbnail {
    flex-basis: 100%;
    width: 100%;
  }

  #team .wp-block-query .team-m-info {
    flex-basis: 100%;
    width: 100%;
    padding-top: 25px;
  }

  .team-w li a {
    display: flex;
    flex-direction: column;
  }

  .team-m-thumbnail {
    width: 100%;
  }

  .team-m-info {
    width: 100%;
    padding-top: 25px;
  }
}
@media (min-width: 320px) and (max-width: 760px) {
  .wp-block-gallery {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 50px;
    margin: 0;
  }

  .wp-block-gallery.columns-1 .wp-block-image,
  .wp-block-gallery.columns-2 .wp-block-image,
  .wp-block-gallery.columns-3 .wp-block-image,
  .wp-block-gallery.columns-4 .wp-block-image,
  .wp-block-gallery.columns-5 .wp-block-image,
  .wp-block-gallery.columns-6 .wp-block-image,
  .wp-block-gallery.columns-7 .wp-block-image,
  .wp-block-gallery.columns-8 .wp-block-image,
  .wp-block-gallery.columns-9 .wp-block-image,
  .wp-block-gallery.columns-10 .wp-block-image {
    width: 100%;
  }
  
  .team-m-thumbnail {
    width: 31.0419666668vw;
  }

  .team-m-info {
    width: 47.3437500002vw;
    padding-bottom: 0;
  }
}
@media (min-width: 1000px) and (max-width: 1200px) {
  #menu {
    width: 50%;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
}
@media (min-width: 1400px) and (max-width: 1600px) {
}
