.container,
.container-sm,
.container-lg,
.container-xl,
.container-fluid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-sm,
  .container-lg {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-lg,
  .container-xl {
    max-width: 1140px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-0 {
  margin-left: 0;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 6;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 6;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 6;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 6;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
.default-reset-button button {
  width: 100%;
  border-radius: 0;
  border: 1px solid #8788c0;
  margin-bottom: 8px;
  padding: 4px 8px;
  cursor: pointer;
}

.button-parallel {
  cursor: pointer;
  position: relative;
  text-decoration: none;
  display: block;
  padding: 14px 24px;
  color: #fff !important;
  background: var(--bde-button-primary-background-color);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  border: 0;
  font-family: Eurostile;
  font-weight: 600;
  text-underline-offset: 0.1em;
  text-decoration-thickness: 0.06em;
  font-size: 16px;
}
.button-parallel > svg {
  fill: #fff;
}
.button-parallel--blue {
  background-color: #779FD4;
}
.button-parallel--cubie {
  background-color: #5b76a3;
}
.button-parallel--publications {
  background-color: #d09285;
}
.button-parallel--resources {
  background-color: #659c9d;
}

.button-purple {
  background-color: #b9648a;
}

.button-orange {
  background: #DB9082;
}

@media (max-width: 768px) {
  .button-wrapper-div {
    margin-top: 20px !important;
  }
}
@media (max-width: 768px) {
  .button-wrapper-div .bde-button {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .button-wrapper-div .bde-button {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .button-wrapper-div .bde-button a {
    width: 100%;
    display: block;
  }
}

.clip-path-item {
  display: flex;
  text-decoration: none;
}
.clip-path-item__text, .clip-path-item__border {
  position: relative;
  clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
  display: flex;
  align-items: flex-start;
  text-align: left;
  max-width: 100%;
  text-decoration: none;
  transition-property: background-color, border-color, box-shadow, color;
  transition-timing-function: ease-in-out;
  transition-duration: var(--defaultTransition, 300ms);
  background-size: cover;
}
.clip-path-item__text {
  background-color: var(--bde-palette-white-1);
  width: 100%;
}
.clip-path-item__border {
  background-color: #DB9082;
  width: 40px;
  flex-direction: column;
}
@media (max-width: 576px) {
  .clip-path-item--mobile-flat {
    max-width: 100%;
  }
  .clip-path-item--mobile-flat > .clip-path-item__text,
  .clip-path-item--mobile-flat > .clip-path-item__border {
    clip-path: none;
  }
  .clip-path-item--mobile-flat > .clip-path-item__border {
    flex: 0 0 15px;
    width: 15px;
  }
}

@media (max-width: 576px) {
  .clip-path-item-container .clip-path-item__text,
  .clip-path-item-container .clip-path-item__border {
    clip-path: none;
  }
  .clip-path-item-container .clip-path-item__text {
    margin-left: 0;
  }
  .clip-path-item-container .clip-path-item__border {
    flex: 0 0 15px;
    width: 15px;
  }
}
.clip-path-item-container--full-width {
  padding: 0;
  background-color: var(--bde-palette-hellgrau-6);
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.clip-path-item-container--full-width h2 {
  font-family: "Agency FB" !important;
}
.clip-path-item-container--full-width > .section-container {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
.clip-path-item-container--full-width > .section-container > div {
  width: 100%;
}

.companion-toolbar {
  padding-top: 10px;
}
@media (min-width: 576px) {
  .companion-toolbar {
    padding-top: 35px;
  }
}
@media (max-width: 1024px) {
  .companion-toolbar {
    gap: 2px !important;
  }
}
.companion-toolbar .facetwp-type-search,
.companion-toolbar .facetwp-type-search .facetwp-input-wrap,
.companion-toolbar .facetwp-type-search .facetwp-input-wrap input,
.companion-toolbar .facetwp-type-dropdown select,
.companion-toolbar .facetwp-type-sort select {
  width: 100%;
  max-width: 600px;
}
@media (max-width: 1024px) {
  .companion-toolbar .facetwp-type-search,
  .companion-toolbar .facetwp-type-search .facetwp-input-wrap,
  .companion-toolbar .facetwp-type-search .facetwp-input-wrap input,
  .companion-toolbar .facetwp-type-dropdown select,
  .companion-toolbar .facetwp-type-sort select {
    margin-bottom: 5px;
  }
}
@media (max-width: 1024px) {
  .companion-toolbar .facetwp-facet {
    margin-bottom: 5px;
  }
}
.companion-toolbar input, .companion-toolbar select {
  height: 24px;
}
.companion-toolbar button {
  height: 25px;
}

.category-filters__intro {
  color: #383e42;
}
@media (min-width: 576px) {
  .category-filters__intro {
    padding-left: 30px;
    padding-right: 70px;
  }
}
.category-filters__intro svg {
  width: 13px;
  height: 13px;
}
.category-filters__toolbar {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-right: 0;
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .category-filters__toolbar {
    flex-direction: column;
    padding-right: 0;
  }
}
.category-filters__selections {
  flex: 1 1 auto;
  min-width: 0;
}
@media (max-width: 576px) {
  .category-filters__selections {
    width: 100%;
  }
  .category-filters__selections .facetwp-selections > ul > li:not(.category-filters__selection-operator) {
    display: grid;
    grid-template-columns: fit-content(calc(100% - 45px)) max-content;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 10px;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
  }
  .category-filters__selections .facetwp-selections .facetwp-selection-value,
  .category-filters__selections .category-filters__selection-operator {
    margin-right: 0;
    margin-bottom: 0;
  }
}
.category-filters__selection-operator {
  margin-right: 10px;
  font-weight: 700;
}
.category-filters__reset {
  flex: 0 0 auto;
}
.category-filters__reset .facetwp-facet {
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .category-filters__reset {
    width: 100%;
  }
  .category-filters__reset .facetwp-facet,
  .category-filters__reset .facetwp-reset {
    width: 100%;
  }
}
.category-filters__base {
  position: relative;
}
.category-filters__base--collapsed {
  display: none;
}
.category-filters__heading {
  margin: 0;
}
.category-filters__group-header {
  display: flex;
  align-items: center;
  gap: 20px;
}
.category-filters__operator {
  position: relative;
  top: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 18px;
  color: #383e42;
  font-size: 14px;
  font-weight: 700;
}
.category-filters__operator[hidden] {
  display: none;
}
.category-filters__operator-switch {
  position: relative;
  display: flex;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 20px;
  padding: 2px;
  border: 1px solid currentColor;
  border-radius: 10px;
  color: inherit;
  background: transparent;
  clip-path: none;
  cursor: pointer;
}
.category-filters__operator-switch:focus-visible {
  outline: 2px solid #77A0D5;
  outline-offset: 3px;
}
.category-filters__operator-switch[aria-checked=true] .category-filters__operator-knob {
  transform: translateX(20px);
}
.category-filters__operator-knob {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: currentColor;
  transition: transform 0.2s ease;
}
.category-filters__group + .category-filters__group {
  margin-top: 20px;
}
.category-filters__disclosure {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
}
.category-filters__disclosure::after {
  width: 14px;
  height: 14px;
  margin-left: 10px;
  background: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M207.029%20381.476L12.686%20187.132c-9.373-9.373-9.373-24.569%200-33.941l22.667-22.667c9.357-9.357%2024.522-9.375%2033.901-.04L224%20284.505l154.745-154.021c9.379-9.335%2024.544-9.317%2033.901.04l22.667%2022.667c9.373%209.373%209.373%2024.569%200%2033.941L240.971%20381.476c-9.373%209.372-24.569%209.372-33.942%200z%22%2F%3E%3C%2Fsvg%3E) center/contain no-repeat;
  content: "";
  transition: transform 0.2s ease;
}
.category-filters__disclosure[aria-expanded=true]::after {
  transform: rotate(180deg);
}
.category-filters__disclosure:focus-visible {
  outline: 2px solid #77A0D5;
  outline-offset: 4px;
}
.category-filters__disclosure:hover {
  color: inherit;
  background: transparent;
}
.category-filters__items {
  display: flex;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.category-filters__items-wrapper {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
}
.category-filters__item {
  flex: 0 0 25%;
  width: 25%;
  max-width: 25%;
}
@media (max-width: 1024px) {
  .category-filters__item {
    flex-basis: 50%;
    width: 50%;
    max-width: 50%;
  }
}
@media (max-width: 576px) {
  .category-filters__item {
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
  }
}
.category-filters__item--unavailable, .category-filters__item--beyond-limit {
  display: none;
}
.category-filters__item--active .category-filters__item-square {
  background-color: transparent;
  background-image: linear-gradient(45deg, transparent 42%, black 42%, black 58%, transparent 58%), linear-gradient(-45deg, transparent 42%, black 42%, black 58%, transparent 58%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 35% 35%;
}
.category-filters__base--expanded .category-filters__item--beyond-limit {
  display: block;
}
.category-filters__base--expanded .category-filters__item--unavailable {
  display: none;
}
.category-filters__item-square {
  flex: 0 0 25px;
  display: flex;
  width: 25px;
  box-sizing: border-box;
  height: 25px;
  border: 1px solid black;
  margin-right: 15px;
}
.category-filters__item-square, .category-filters__item-text {
  cursor: pointer;
}
.category-filters__item-content {
  display: flex;
  margin-top: 15px;
}
.category-filters__toggle-container {
  margin-top: 0;
}
.category-filters__toggle-container[hidden] {
  display: none;
}
.category-filters__more-indicator {
  display: block;
  margin-bottom: 10px;
  color: #000;
  line-height: 1;
}
.category-filters__base--expanded .category-filters__more-indicator {
  visibility: hidden;
}
.category-filters__base .js-category-filters__toggle {
  position: relative;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0;
  padding: 0;
  border: 0;
  color: #77A0D5 !important;
  background: transparent;
  clip-path: none;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
}
.category-filters__base .js-category-filters__toggle::after {
  width: 14px;
  height: 14px;
  margin-left: 8px;
  background-color: currentColor;
  content: "";
  -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M207.029%20381.476L12.686%20187.132c-9.373-9.373-9.373-24.569%200-33.941l22.667-22.667c9.357-9.357%2024.522-9.375%2033.901-.04L224%20284.505l154.745-154.021c9.379-9.335%2024.544-9.317%2033.901.04l22.667%2022.667c9.373%209.373%209.373%2024.569%200%2033.941L240.971%20381.476c-9.373%209.372-24.569%209.372-33.942%200z%22%2F%3E%3C%2Fsvg%3E);
          mask-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M207.029%20381.476L12.686%20187.132c-9.373-9.373-9.373-24.569%200-33.941l22.667-22.667c9.357-9.357%2024.522-9.375%2033.901-.04L224%20284.505l154.745-154.021c9.379-9.335%2024.544-9.317%2033.901.04l22.667%2022.667c9.373%209.373%209.373%2024.569%200%2033.941L240.971%20381.476c-9.373%209.372-24.569%209.372-33.942%200z%22%2F%3E%3C%2Fsvg%3E);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: transform 0.2s ease;
}
.category-filters__base .js-category-filters__toggle[aria-expanded=true]::after {
  transform: rotate(180deg);
}
.category-filters__base .js-category-filters__toggle:hover, .category-filters__base .js-category-filters__toggle:focus-visible {
  color: #5477a7 !important;
}
.category-filters__base .js-category-filters__toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
.category-filters__base .js-category-filters__toggle[hidden] {
  display: none !important;
}
.category-filters__reset .facetwp-reset {
  position: relative;
  display: block;
  margin-top: 0;
  padding: 14px 24px;
  border: 0;
  color: #fff !important;
  background: var(--bde-button-primary-background-color);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  cursor: pointer;
  font-family: Eurostile;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.1em;
}

.facetwp-pager {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}
.facetwp-pager a {
  margin: 0;
  font-family: Eurostile, sans-serif;
  font-weight: 600;
  text-underline-offset: 0.1em;
  text-decoration-thickness: 0.06em;
  color: #77a0d5;
  transition: color 0.2s;
}
.facetwp-pager a:hover {
  color: rgb(80.0337078652, 132.7808988764, 200.9662921348);
}
.facetwp-pager a:not(.next, .prev) {
  display: flex;
  width: 41px;
  height: 40px;
  justify-content: center;
  align-items: center;
  background-color: #f9fafb;
  border: 1px solid #d1d5db;
}
.facetwp-pager a.active {
  color: #fff;
  font-weight: 400;
  background-color: var(--bde-brand-primary-color);
  border: 1px solid var(--bde-brand-primary-color);
}
.facetwp-pager a.active:hover {
  color: #fff;
}
.facetwp-pager a.next, .facetwp-pager a.prev {
  position: absolute;
  display: block;
  padding: 14px 24px;
  color: var(--bde-button-primary-text-color);
  background: var(--bde-button-primary-background-color);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
@media (max-width: 576px) {
  .facetwp-pager a.next, .facetwp-pager a.prev {
    display: none;
  }
}
.facetwp-pager a.next:hover, .facetwp-pager a.prev:hover {
  color: var(--bde-button-primary-text-color);
}
.facetwp-pager a.next {
  right: 0;
}
.facetwp-pager a.prev {
  left: 0;
}

.facetwp-selections ul {
  padding-left: 0;
  margin-left: 0;
}
.facetwp-selections .facetwp-selection-value {
  background-color: var(--bde-palette-hellgrau-6);
  background-position: right 5px center !important;
  padding: 5px 25px 5px 10px !important;
  margin-right: 20px;
  margin-bottom: 10px;
}
.facetwp-selections .facetwp-selection-label {
  display: none;
}

.facetwp-template .loading-icon {
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  top: -23px;
  left: 49%;
  margin: 0 auto; /* Center icon  */
  background-image: url("/wp-content/plugins/facetwp/assets/images/loading.png");
  background-size: cover;
  animation: spin 700ms infinite linear;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.pa-0,
.p-0 {
  padding: 0;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.pa-1,
.p-1 {
  padding: 10px;
}

.mt-1 {
  margin-top: 10px;
}

.mb-1 {
  margin-bottom: 10px;
}

.pa-2,
.p-2 {
  padding: 20px;
}

.mt-2 {
  margin-top: 20px;
}

.mb-2 {
  margin-bottom: 20px;
}

.pa-3,
.p-3 {
  padding: 30px;
}

.mt-3 {
  margin-top: 30px;
}

.mb-3 {
  margin-bottom: 30px;
}

@media (min-width: 576px) {
  .pa-sm-0,
  .p-sm-0 {
    padding: 0;
  }
  .mt-sm-0 {
    margin-top: 0;
  }
  .mb-sm-0 {
    margin-bottom: 0;
  }
  .pa-sm-1,
  .p-sm-1 {
    padding: 10px;
  }
  .mt-sm-1 {
    margin-top: 10px;
  }
  .mb-sm-1 {
    margin-bottom: 10px;
  }
  .pa-sm-2,
  .p-sm-2 {
    padding: 20px;
  }
  .mt-sm-2 {
    margin-top: 20px;
  }
  .mb-sm-2 {
    margin-bottom: 20px;
  }
  .pa-sm-3,
  .p-sm-3 {
    padding: 30px;
  }
  .mt-sm-3 {
    margin-top: 30px;
  }
  .mb-sm-3 {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .pa-md-0,
  .p-md-0 {
    padding: 0;
  }
  .mt-md-0 {
    margin-top: 0;
  }
  .mb-md-0 {
    margin-bottom: 0;
  }
  .pa-md-1,
  .p-md-1 {
    padding: 10px;
  }
  .mt-md-1 {
    margin-top: 10px;
  }
  .mb-md-1 {
    margin-bottom: 10px;
  }
  .pa-md-2,
  .p-md-2 {
    padding: 20px;
  }
  .mt-md-2 {
    margin-top: 20px;
  }
  .mb-md-2 {
    margin-bottom: 20px;
  }
  .pa-md-3,
  .p-md-3 {
    padding: 30px;
  }
  .mt-md-3 {
    margin-top: 30px;
  }
  .mb-md-3 {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .pa-lg-0,
  .p-lg-0 {
    padding: 0;
  }
  .mt-lg-0 {
    margin-top: 0;
  }
  .mb-lg-0 {
    margin-bottom: 0;
  }
  .pa-lg-1,
  .p-lg-1 {
    padding: 10px;
  }
  .mt-lg-1 {
    margin-top: 10px;
  }
  .mb-lg-1 {
    margin-bottom: 10px;
  }
  .pa-lg-2,
  .p-lg-2 {
    padding: 20px;
  }
  .mt-lg-2 {
    margin-top: 20px;
  }
  .mb-lg-2 {
    margin-bottom: 20px;
  }
  .pa-lg-3,
  .p-lg-3 {
    padding: 30px;
  }
  .mt-lg-3 {
    margin-top: 30px;
  }
  .mb-lg-3 {
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .pa-xl-0,
  .p-xl-0 {
    padding: 0;
  }
  .mt-xl-0 {
    margin-top: 0;
  }
  .mb-xl-0 {
    margin-bottom: 0;
  }
  .pa-xl-1,
  .p-xl-1 {
    padding: 10px;
  }
  .mt-xl-1 {
    margin-top: 10px;
  }
  .mb-xl-1 {
    margin-bottom: 10px;
  }
  .pa-xl-2,
  .p-xl-2 {
    padding: 20px;
  }
  .mt-xl-2 {
    margin-top: 20px;
  }
  .mb-xl-2 {
    margin-bottom: 20px;
  }
  .pa-xl-3,
  .p-xl-3 {
    padding: 30px;
  }
  .mt-xl-3 {
    margin-top: 30px;
  }
  .mb-xl-3 {
    margin-bottom: 30px;
  }
}
@media (min-width: 1400px) {
  .pa-xxl-0,
  .p-xxl-0 {
    padding: 0;
  }
  .mt-xxl-0 {
    margin-top: 0;
  }
  .mb-xxl-0 {
    margin-bottom: 0;
  }
  .pa-xxl-1,
  .p-xxl-1 {
    padding: 10px;
  }
  .mt-xxl-1 {
    margin-top: 10px;
  }
  .mb-xxl-1 {
    margin-bottom: 10px;
  }
  .pa-xxl-2,
  .p-xxl-2 {
    padding: 20px;
  }
  .mt-xxl-2 {
    margin-top: 20px;
  }
  .mb-xxl-2 {
    margin-bottom: 20px;
  }
  .pa-xxl-3,
  .p-xxl-3 {
    padding: 30px;
  }
  .mt-xxl-3 {
    margin-top: 30px;
  }
  .mb-xxl-3 {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  html:root {
    --bde-section-vertical-padding: 30px;
  }
}
body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
}

h1 {
  line-height: 1.2;
}

.d-inline {
  display: inline !important;
}

.bold {
  font-weight: bold;
}

.full-width {
  width: 100%;
}

.bde-text {
  width: 100%;
}

.text-colored--uncertainty {
  color: #fbba26;
}
.text-colored--similarity {
  color: #b8bad9;
}
.text-colored--transfer {
  color: #8787bf;
}
.text-colored--fusion-hub {
  color: #ad80ad;
}

.menu-item-companion {
  position: relative;
}
.menu-item-companion::before {
  content: url("../assets/icons/our-results.svg");
  width: 115px;
  height: auto;
  opacity: 0.9;
  position: absolute;
  top: -29px;
  left: -5px;
  z-index: 100;
}
.menu-item-companion::after {
  content: "OUR RESULTS";
  font-family: "Agency FB";
  font-weight: bold;
  font-size: 15px;
  position: absolute;
  top: 0px;
  left: 20px;
  z-index: 100;
}
.menu-item-companion .breakdance-dropdown-toggle {
  z-index: 400;
  background: none !important;
}

.columns-companion-buttons {
  gap: 4px !important;
}
.columns-companion-buttons > .bde-column {
  width: 33% !important;
}
.columns-companion-buttons > .bde-column .bde-columns {
  gap: 2px !important;
}
.columns-companion-buttons > .bde-column .bde-columns .bde-column {
  width: auto !important;
}
.columns-companion-buttons svg {
  height: 19px;
  width: 19px;
}
.columns-companion-buttons p {
  margin-left: 10px;
  font-size: 15px;
}

.section--gray {
  padding: 0;
  background-color: var(--bde-palette-hellgrau-6);
}
.section--default > .section-container {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.section--pt-0 > .section-container {
  padding-top: 0 !important;
}
.section--pt-0 .template-related-content {
  margin-top: 0;
}
.section--pt-0 .template-related-events {
  margin-top: 0;
}
.section--pt-0 .template-related-people {
  margin-top: 0;
}
.section--pt-0 .template-related-publications {
  margin-top: 0;
}
.section--pt-1 > .section-container {
  padding-top: 20px !important;
}
.section--pt-2 > .section-container {
  padding-top: 30px !important;
}
.section--pb-2 > .section-container {
  padding-bottom: 30px !important;
}
.section--pb-1 > .section-container {
  padding-bottom: 20px !important;
}
.section--pb-0 > .section-container {
  padding-bottom: 0 !important;
}
.section--child-mt-0 .template-related-events,
.section--child-mt-0 .template-related-people,
.section--child-mt-0 .template-related-publications,
.section--child-mt-0 .template-related-content {
  margin-top: 0 !important;
}

.section-colored--gray {
  background-color: var(--bde-palette-hellgrau-6);
}
.section-colored--resources-light {
  background-color: #d2e4e4;
}
.section-colored--publications-light {
  background-color: #e9d3ce;
}
.section-colored--cubie-light {
  background-color: #d0d8e3;
}

.section-companion {
  padding: 30px;
}
@media (max-width: 576px) {
  .section-companion {
    padding: 10px;
  }
}
@media (max-width: 576px) {
  .section-companion .bde-loop {
    gap: 1px;
  }
}
.section-companion > .section-container {
  padding: 0 !important;
}
.section-companion .bde-loop-item {
  padding: 10px !important;
}

.section-category-filters > .section-container,
.section-category-slider > .section-container {
  padding-bottom: 0 !important;
  padding-top: 50px !important;
}

.section-publications .bde-loop-item {
  padding: 5px;
}
.section-publications .bde-shortcode {
  width: 100%;
}
.section-publications__item {
  min-height: 68px;
  width: calc(100% + 7px);
}
.section-publications__item-text {
  margin-left: -7px;
  padding: 10px 30px 7px 35px;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 576px) {
  .section-publications__item-text {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.section-publications__item-text p {
  margin-bottom: 0;
}
.section-publications__item-border--transfer {
  background-color: #8787bf;
}
.section-publications__item-border--similarity {
  background-color: #b8bad9;
}
.section-publications__item-border--uncertainty {
  background-color: #fbba26;
}
.section-publications__item-border--white {
  background-color: var(--bde-palette-white-1);
}
.section-publications__item-border--fusion-hub {
  background-color: #ad80ad;
}

.section__publication-facets .facetwp-type-search,
.section__publication-facets .facetwp-type-sort,
.section__publication-facets .facetwp-type-reset,
.section__publication-facets .facetwp-type-reset button,
.section__publication-facets .facetwp-type-search .facetwp-input-wrap,
.section__publication-facets .facetwp-type-search .facetwp-input-wrap input,
.section__publication-facets .facetwp-dropdown,
.section__publication-facets .facetwp-type-dropdown,
.section__publication-facets .facetwp-type-dropdown select,
.section__publication-facets .facetwp-type-sort select {
  width: 100%;
  max-width: 576px;
  margin-bottom: 0;
}
.section__publication-facets input,
.section__publication-facets select {
  height: 24px;
}
@media (max-width: 1200px) {
  .section__publication-facets .bde-columns {
    gap: 15px !important;
  }
}

.single-person_header img {
  width: 325px !important;
  height: 350px !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.single-person_header .bde-heading {
  margin-top: 0px !important;
}
.single-person_header .discipline {
  display: none;
}

.sidebar-companion {
  position: fixed;
  z-index: 100;
  font-family: "Arial";
  height: auto;
  top: 237px;
  right: 0;
  color: #fff;
  padding: 10px 7px 0;
  background-color: rgba(135, 135, 191, 0.7);
}
@media (max-width: 1024px) {
  .sidebar-companion {
    display: none;
  }
}
.sidebar-companion a {
  text-decoration: none;
  color: #fff;
}
.sidebar-companion h3 {
  display: none;
  cursor: pointer;
  position: relative;
  font-family: "Agency FB";
  margin-top: 0;
  margin-left: 10px;
  font-size: 25px;
}
.sidebar-companion span::after {
  content: "";
  position: absolute;
  transform: rotate(90deg);
  left: 19px;
  top: 16px;
  -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M207.029%20381.476L12.686%20187.132c-9.373-9.373-9.373-24.569%200-33.941l22.667-22.667c9.357-9.357%2024.522-9.375%2033.901-.04L224%20284.505l154.745-154.021c9.379-9.335%2024.544-9.317%2033.901.04l22.667%2022.667c9.373%209.373%209.373%2024.569%200%2033.941L240.971%20381.476c-9.373%209.372-24.569%209.372-33.942%200z%22%2F%3E%3C%2Fsvg%3E);
  mask-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M207.029%20381.476L12.686%20187.132c-9.373-9.373-9.373-24.569%200-33.941l22.667-22.667c9.357-9.357%2024.522-9.375%2033.901-.04L224%20284.505l154.745-154.021c9.379-9.335%2024.544-9.317%2033.901.04l22.667%2022.667c9.373%209.373%209.373%2024.569%200%2033.941L240.971%20381.476c-9.373%209.372-24.569%209.372-33.942%200z%22%2F%3E%3C%2Fsvg%3E);
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: center;
  mask-position: center;
  width: 20px;
  height: 20px;
  background-color: #fff;
}
.sidebar-companion__description {
  display: none;
  font-size: 14px;
  font-family: "Eurostile";
}
.sidebar-companion__icons {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}
.sidebar-companion__icon-container {
  display: flex;
  position: relative;
  margin-bottom: 10px;
}
.sidebar-companion__parallel-background {
  width: 50px;
  height: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
  overflow: visible;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.sidebar-companion__parallel-background--resources {
  background-color: #659c9d;
}
.sidebar-companion__parallel-background--publication {
  background-color: #d09285;
}
.sidebar-companion__parallel-background--chat {
  background-color: #5b76a3;
}
.sidebar-companion__header {
  height: 25px;
}
.sidebar-companion__icon-text {
  display: none;
  text-align: center;
  font-size: 14px;
  flex-grow: 1;
  text-decoration: none;
  font-family: "Eurostile";
  font-weight: normal;
  justify-content: center;
}
.sidebar-companion__icon {
  flex-grow: 0;
}
.sidebar-companion__icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.sidebar-companion__icon .cls-1 {
  fill: #fff;
}
.sidebar-companion__icon--chat svg {
  width: 21px;
  height: 21px;
  margin-right: -3px;
}
.sidebar-companion__current-line {
  position: absolute;
  bottom: -5px;
  left: 0px;
  width: 40px;
  height: 2px;
}
.sidebar-companion__current-line--publications {
  background-color: #d09285;
}
.sidebar-companion__current-line--chat {
  background-color: #5b76a3;
}
.sidebar-companion__current-line--resources {
  background-color: #659c9d;
}
.sidebar-companion--open {
  width: 140px;
}
.sidebar-companion--open h3 {
  display: block;
}
.sidebar-companion--open h3::after {
  transform: rotate(180deg);
}
.sidebar-companion--open span {
  display: none;
}
.sidebar-companion--open .sidebar-companion__parallel-background {
  display: none;
}
.sidebar-companion--open .sidebar-companion__current-line {
  display: none;
}
.sidebar-companion--open .sidebar-companion__icons {
  margin-left: 0px;
}
.sidebar-companion--open .sidebar-companion__icon {
  margin-left: 0px;
}
.sidebar-companion--open .sidebar-companion__description {
  display: flex;
}
.sidebar-companion--open .sidebar-companion__icon-container {
  margin-bottom: 10px;
}
.sidebar-companion--open .sidebar-companion__icons {
  flex-direction: column;
}
.sidebar-companion--open .sidebar-companion__icon-text {
  display: flex;
}

.template-companion-intro a {
  display: flex;
  text-decoration: none;
  color: black !important;
}
.template-companion-intro a :hover {
  text-decoration: none;
}
.template-companion-intro p {
  margin-bottom: 0;
}
.template-companion-intro > div {
  display: flex;
  margin-top: 20px;
}
@media (min-width: 1200px) {
  .template-companion-intro > div {
    margin-top: 0;
  }
}
.template-companion-intro > div.template-companion-intro__first-column {
  margin-top: 0;
}
.template-companion-intro__text {
  margin-left: 10px;
  font-size: 15px;
  display: flex;
  align-self: center;
}
@media (min-width: 1200px) {
  .template-companion-intro__text {
    align-self: flex-start;
  }
}
.template-companion-intro__buttons {
  display: flex;
  position: relative;
  align-self: flex-start;
}
.template-companion-intro__buttons::after {
  content: "";
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  height: 2px;
}
.template-companion-intro--cubie .template-companion-intro__buttons--cubie::after {
  background-color: #5b76a3;
}
.template-companion-intro--publications .template-companion-intro__buttons--publications::after {
  background-color: #d09285;
}
.template-companion-intro--resources .template-companion-intro__buttons--resources::after {
  background-color: #659c9d;
}
.template-companion-intro .button-parallel {
  width: 130px;
  height: 50px;
  text-align: center;
}
@media (max-width: 576px) {
  .template-companion-intro .button-parallel {
    display: none;
  }
}
.template-companion-intro .button-parallel--icon {
  width: 60px;
}
@media (max-width: 576px) {
  .template-companion-intro .button-parallel--icon {
    display: block;
  }
}
.template-companion-intro .button-parallel--icon svg {
  width: 23px;
  margin-left: -6px;
}
.template-companion-intro .button-parallel--icon-cubie svg {
  margin-left: -4px;
}

.template-event__item-text {
  padding: 20px 40px 20px 40px;
  flex-direction: column;
  color: #000 !important;
}
.template-event__item-text p {
  margin-bottom: 0;
}
.template-event__item-title {
  font-weight: bold;
}

.template-related-filter__filters {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  margin-top: 15px;
}
.template-related-filter__selects {
  display: flex;
  flex: 1;
  gap: 15px;
}
.template-related-filter__selects label,
.template-related-filter__selects select {
  width: 100%;
  max-width: 300px;
}
.template-related-filter__selects select {
  height: 30px;
}
.template-related-filter__reset {
  flex: 0 0 auto;
}
.template-related-filter__reset[hidden] {
  display: none;
}
@media (max-width: 768px) {
  .template-related-filter__filters, .template-related-filter__selects {
    flex-direction: column;
    width: 100%;
  }
  .template-related-filter__reset {
    align-self: flex-end;
  }
}
@media (max-width: 576px) {
  .template-related-filter__selects label, .template-related-filter__selects .template-related-filter__select {
    width: 100%;
    max-width: none;
  }
  .template-related-filter__reset {
    align-self: stretch;
    width: 100%;
  }
}

.js-related-filter-item[hidden] {
  display: none;
}

.template-related-content {
  margin-top: var(--bde-section-vertical-padding);
}
.template-related-content .bde-loop-item {
  padding: 10px !important;
}
.template-related-content .bde-text {
  width: 100%;
}

.template-related-events {
  margin-top: var(--bde-section-vertical-padding);
}
.template-related-events .template-event__item {
  margin-top: 30px;
}

.template-related-publications .bde-shortcode {
  width: 100%;
}
.template-related-publications .section-publications__item {
  margin-top: 30px;
}
.template-related-publications > div {
  display: flex;
  flex-direction: column;
}
.template-related-publications > div > a {
  margin-right: 25px;
}

.template-related-people {
  padding: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.template-related-people .section-container > div {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 576px) {
  .template-related-people .section-container > div {
    display: block;
  }
}
.template-related-people .template-person__item {
  display: block;
}
@media (min-width: 768px) {
  .template-related-people .template-person__item {
    flex: 0 0 calc((100% - 48px) / 4);
    box-sizing: border-box;
  }
}
.template-related-people h2 {
  font-family: "Agency FB" !important;
}
@media (max-width: 576px) {
  .template-related-people .template-person__item,
  .template-related-people .template-person__item-image {
    clip-path: none;
  }
}

.template-person__item {
  text-decoration: none;
  color: #000 !important;
}
.template-person__item-image {
  overflow: hidden;
}
.template-person__item-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto !important;
}
@media (min-width: 1200px) {
  .template-person__item-image img {
    height: 350px !important;
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .template-person__item-image img {
    height: 250px !important;
  }
}
.template-person__item-title {
  font-family: "Arial";
  font-size: 18px;
}
.template-person__item-function {
  font-family: "Arial";
  font-style: italic;
  font-weight: bold;
}

.template-chat {
  display: flex;
  margin-top: 40px;
  align-items: center;
}
.template-chat__text {
  font-size: 20px;
  font-weight: bold;
}
.template-chat__image {
  margin-left: -15px;
  display: flex;
  flex-shrink: 0;
}
.template-chat__image img {
  height: 100px !important;
  width: auto;
}

.template-edit-link {
  position: absolute;
  bottom: 6px;
  left: 12px;
  transform: translateY(0);
  opacity: 0.25;
  z-index: 10;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}
.template-edit-link svg {
  display: block;
  stroke: #aaa;
}

.template-content__content-item {
  position: relative;
  margin-top: 30px;
}
.template-content__item-text {
  padding: 20px 40px 20px 40px;
  margin-left: -7px;
  color: #000 !important;
}
@media (max-width: 576px) {
  .template-content__item-text {
    padding: 10px 0;
  }
}
.template-content__item-border--related-content {
  margin-top: 30px;
}
.template-content__item-border--similarity {
  background-color: #b8bad9;
}
.template-content__item-border--uncertainty {
  background-color: #fbba26;
}
.template-content__item-border--transfer {
  background-color: #8787bf;
}
.template-content__item-border--fusion-hub {
  background: #ad80ad;
}
.template-content__content-first {
  flex: 1;
  min-width: 0; /* <-- der entscheidende Punkt */
  overflow-wrap: anywhere;
  display: flex;
}
@media (max-width: 576px) {
  .template-content__content-first {
    font-size: 17px;
  }
}
.template-content__content-second {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  padding-right: 25px;
  border-left: 2px solid rgb(218, 216, 216);
  text-decoration: none;
  align-self: stretch;
}
@media (max-width: 768px) {
  .template-content__content-second {
    width: 120px;
    font-size: 14px;
  }
}
.template-content__inner-padding {
  padding: 0 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 576px) {
  .template-content__inner-padding {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.template-content__publication-link {
  text-decoration: none;
  display: block;
  font-weight: bold;
}
.template-content__header {
  font-family: "Agency FB";
  font-size: 21px;
  position: relative;
  color: #000 !important;
  display: flex;
  flex-direction: row;
  text-decoration: none;
}
@media (max-width: 768px) {
  .template-content__header {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .template-content__header {
    font-size: 17px;
  }
}
.template-content__header svg {
  position: absolute;
  right: -24px;
  top: 4px;
  width: 18px;
  height: 18px;
}
@media (max-width: 768px) {
  .template-content__header svg {
    width: 13px;
    height: 13px;
    position: absolute;
    right: -20px;
    bottom: 7px;
  }
}

.section-companion .template-content__item-border {
  display: none !important;
}
.section-companion .template-content__content-item {
  margin-top: 10px !important;
}

.content-publication-loop {
  width: 100%;
}
.content-publication-loop__group + .content-publication-loop__group {
  margin-top: 30px;
}
.content-publication-loop__publication {
  margin-bottom: 10px;
}
.content-publication-loop__contents {
  margin-left: 90px;
}
.content-publication-loop__contents .template-content__content-item + .template-content__content-item {
  margin-top: 10px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .content-publication-loop__contents {
    margin-left: 30px;
  }
}
@media (max-width: 576px) {
  .content-publication-loop__contents {
    margin-left: 15px;
  }
}

.template-content-intro h1 {
  line-height: 1.3;
}
.template-content-intro__header {
  margin-top: 20px;
  font-weight: bold;
}
.template-content-intro--impact {
  color: #DB9082 !important;
}
.template-content-intro--code {
  color: #b9648a !important;
}

.template-event-intro h1 {
  line-height: 1.3;
}

.template-event-organizer__items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .template-event-organizer__items {
    flex-direction: column;
  }
}
.template-event-organizer .template-person__item {
  flex: 0 0 calc((100% - 40px) / 3);
  box-sizing: border-box;
}
@media (max-width: 576px) {
  .template-event-organizer .template-person__item {
    flex: 0 0 100%;
  }
}
.template-event-organizer .template-person__item img {
  height: 250px !important;
}

.template-publication-intro h1 {
  line-height: 1.3;
}
.template-publication-intro a {
  display: inline;
  text-decoration: none;
  position: relative;
  font-weight: bold;
}
.template-publication-intro svg {
  height: 14px;
  width: 14px;
  right: -21px;
  bottom: 4px;
  position: absolute;
  fill: #77A0D5;
}
.template-publication-intro__header {
  margin-top: 20px;
  font-weight: bold;
}
.template-publication-intro__category {
  display: inline-flex !important;
}
.template-publication-intro__category--impact {
  color: #DB9082 !important;
}
.template-publication-intro__category--code {
  color: #b9648a !important;
}
@media (max-width: 576px) {
  .template-publication-intro__url {
    overflow-wrap: anywhere;
    word-break: break-all;
  }
}