:root {
  --dur-fade-content: 600ms;
  --dur-fade-image: 800ms;
  --dur-slide-cards: 500ms;
  --dur-overlay-open: 450ms;
  --dur-overlay-close: 350ms;
  --dur-timeline: 400ms;
  --dur-header: 300ms;
  --dur-accordion: 350ms;
  --dur-btn-hover: 200ms;
  --dur-btn-press: 100ms;
  --dur-focus: 150ms;
  --ease-out-soft: cubic-bezier(0.25, 0, 0.35, 1);
  --ease-slide: cubic-bezier(0.16, 0, 0.3, 1);
  --ease-in-out-soft: cubic-bezier(0.42, 0, 0.58, 1);
  --ease-in-soft: cubic-bezier(0.42, 0, 1, 1);
  --delay-image: 200ms;
  --stagger-step: 80ms;
}

.js-motion .js-reveal {
  opacity: 0;
  transition: opacity var(--dur-fade-content) var(--ease-out-soft), transform var(--dur-slide-cards) var(--ease-slide);
  transition-delay: calc(var(--reveal-index, 0) * var(--stagger-step));
  will-change: opacity, transform;
}
.js-motion .js-reveal.is-revealed {
  opacity: 1;
  transform: none;
}

.js-motion .js-reveal--slide {
  transform: translateY(24px);
}

.js-motion .js-reveal--image {
  transition: opacity var(--dur-fade-image) var(--ease-out-soft), transform var(--dur-fade-image) var(--ease-out-soft);
  transition-delay: var(--delay-image);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js-motion .js-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
:root {
  --gutter: max(0px, (100vw - 1920px) / 2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: #333333;
  background: #6c757b;
  scrollbar-gutter: stable;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.txt-en {
  display: none;
}

body.lang-en .txt-de {
  display: none;
}
body.lang-en .txt-en {
  display: revert;
}

body.nav-menu-open {
  overflow: hidden;
}

.view {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  background: #ffffff;
  overflow: hidden;
}

.link-top {
  color: #333333;
  text-decoration: none;
  transition: color var(--dur-btn-hover) var(--ease-out-soft);
}
.link-top:hover, .link-top:active, .link-top:visited {
  color: #207d8b;
}
.link-top:focus-visible {
  color: #207d8b;
  outline: 2px solid #207d8b;
  outline-offset: 2px;
}

.link-text {
  color: #207d8b;
  text-decoration: none;
  transition: color var(--dur-btn-hover) var(--ease-out-soft);
}
.link-text:hover, .link-text:active, .link-text:visited {
  color: #559eaa;
}
.link-text:focus-visible {
  color: #559eaa;
  outline: 2px solid #559eaa;
  outline-offset: 2px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: #207d8b;
  border: 1px solid #207d8b;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--dur-btn-hover) var(--ease-out-soft), border-color var(--dur-btn-hover) var(--ease-out-soft), opacity var(--dur-btn-press) var(--ease-in-soft);
}
.btn-primary:hover, .btn-primary:visited {
  background-color: #559eaa;
  border-color: #559eaa;
}
.btn-primary:active {
  background-color: #559eaa;
  border-color: #559eaa;
  opacity: 0.85;
}
.btn-primary:disabled {
  transition: none;
}
.btn-primary:focus-visible {
  background-color: #559eaa;
  border-color: #559eaa;
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.map-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.map-viewport[data-static] {
  touch-action: auto;
}

.map-viewport__stage {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 0;
  will-change: transform;
}

.map-viewport__image {
  display: block;
  max-width: none;
  width: auto;
  height: auto;
  pointer-events: none;
}

.map-viewport__markers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-marker {
  position: absolute;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.nav-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear var(--dur-overlay-close);
}
.nav-menu--open {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s;
}

.nav-menu__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.nav-menu__panel {
  position: absolute;
  top: 0;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100dvh;
  background: #207d8b;
  transform: translateY(-100%);
  transition: transform var(--dur-overlay-close) var(--ease-in-soft);
  overflow: hidden;
  z-index: 1;
}
.nav-menu--open .nav-menu__panel {
  transform: translateY(0);
  transition: transform var(--dur-overlay-open) var(--ease-in-out-soft);
}
@media (min-width: 768px) {
  .nav-menu__panel {
    width: 414px;
    max-width: 100%;
  }
}
@media (min-width: 1440px) {
  .nav-menu__panel {
    width: 510px;
  }
}

.nav-menu__header {
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
  padding: 16px;
}

.nav-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
}
@media (min-width: 768px) {
  .nav-menu__close {
    width: 50px;
    height: 50px;
  }
}
.nav-menu__close {
  padding: 0;
  border: none;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  transition: opacity var(--dur-btn-hover) var(--ease-out-soft);
}
.nav-menu__close:hover, .nav-menu__close:active {
  opacity: 0.85;
}
.nav-menu__close:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.nav-menu__close img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
}

.nav-menu__nav {
  flex: 1;
  overflow-y: auto;
  padding: 0 16px 16px;
}

.nav-menu__sections {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.nav-menu__section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-menu__section--bauten {
  gap: 30px;
}

.nav-menu__sublinks {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu__link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  padding: 0;
  border: none;
  background: none;
  color: #ffffff;
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  transition: color var(--dur-btn-hover) var(--ease-out-soft);
}
.nav-menu__link:visited {
  color: #ffffff;
}
.nav-menu__link:hover, .nav-menu__link:active, .nav-menu__link:hover:visited, .nav-menu__link:active:visited {
  color: #559eaa;
}
.nav-menu__link:focus-visible {
  color: #559eaa;
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.nav-menu__link--section {
  font-size: 24px;
  font-weight: 600;
}
.nav-menu__link--sub {
  font-size: 18px;
  font-weight: 100;
}
.nav-menu__link--meta {
  gap: 10px;
}
.nav-menu__link:hover .nav-menu__link-icon, .nav-menu__link:active .nav-menu__link-icon, .nav-menu__link:focus-visible .nav-menu__link-icon {
  filter: brightness(0) saturate(100%) invert(59%) sepia(35%) saturate(459%) hue-rotate(148deg) brightness(95%) contrast(89%);
}

.nav-menu__link-icon {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: filter var(--dur-btn-hover) var(--ease-out-soft);
}

.nav-menu__link--section .nav-menu__link-icon {
  filter: brightness(0) invert(1);
}

.nav-menu__meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .nav-menu__header {
    padding: 27px 30px 0;
  }
  .nav-menu__nav {
    padding: 30px 30px 30px;
  }
}
@media (min-width: 1440px) {
  .nav-menu__header {
    padding: 20px clamp(30px, 30px + (60px - 30px) * (100vw - 1440px) / (1920px - 1440px), 60px) 0;
  }
  .nav-menu__nav {
    padding: 60px 30px 30px;
  }
  .nav-menu__link--section {
    font-size: 32px;
  }
  .nav-menu__sections {
    gap: 50px;
  }
  .nav-menu__section {
    gap: 30px;
  }
  .nav-menu__section--bauten {
    gap: 30px;
  }
}
@media (min-width: 1920px) {
  .nav-menu__header {
    padding: 20px 60px 0;
  }
}
.bauten__eras,
.zeitspruenge__eras,
.geschichte__timeline {
  position: fixed;
  top: 50%;
  right: calc(16px + var(--gutter));
  z-index: 25;
  transform: translateY(-50%);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: auto;
  height: 154px;
  min-height: 154px;
  min-width: 0;
  padding: 10px 16px;
  overflow: hidden;
  background: #6c757b;
  border-radius: 12px;
  pointer-events: auto;
}

.bauten__eras-list,
.zeitspruenge__eras-list,
.geschichte__timeline-list {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bauten__eras-list li,
.zeitspruenge__eras-list li,
.geschichte__timeline-item {
  display: flex;
  width: 100%;
  margin: 0;
}

.bauten__era,
.zeitspruenge__era,
.geschichte__timeline-link {
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  color: #333333;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
  transition: color var(--dur-btn-hover) var(--ease-out-soft);
}
.bauten__era:hover, .bauten__era:focus-visible,
.zeitspruenge__era:hover,
.zeitspruenge__era:focus-visible,
.geschichte__timeline-link:hover,
.geschichte__timeline-link:focus-visible {
  color: #ffffff;
  outline: none;
}
.bauten__era:focus-visible,
.zeitspruenge__era:focus-visible,
.geschichte__timeline-link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  border-radius: 4px;
}

.bauten__era[aria-current=true],
.zeitspruenge__era--selected,
.geschichte__timeline-link--active {
  color: #ffffff;
}

.zeitspruenge__eras:not(.zeitspruenge__eras--compact) .zeitspruenge__era {
  gap: 0;
}
.zeitspruenge__eras:not(.zeitspruenge__eras--compact) .zeitspruenge__era-dot {
  display: none;
}

@media (min-width: 768px) {
  .bauten__eras,
  .zeitspruenge__eras,
  .geschichte__timeline {
    right: calc(30px + var(--gutter));
  }
}
@media (min-width: 1440px) {
  .bauten__eras,
  .zeitspruenge__eras,
  .geschichte__timeline {
    right: calc(clamp(30px, 30px + (60px - 30px) * (100vw - 1440px) / (1920px - 1440px), 60px) + var(--gutter));
    height: auto;
    min-height: 0;
    padding: 25px 20px;
    overflow: visible;
  }
  .bauten__eras-list,
  .zeitspruenge__eras-list,
  .geschichte__timeline:not(.geschichte__timeline--compact) .geschichte__timeline-list {
    flex: none;
    gap: 25px;
    height: auto;
    min-height: auto;
  }
  .bauten__era,
  .zeitspruenge__era,
  .geschichte__timeline-link {
    font-size: 16px;
    line-height: 16px;
  }
}
.startseite__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 16px;
}

.startseite__header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.startseite__header-title {
  display: none;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  line-height: 54px;
  color: inherit;
  white-space: nowrap;
  cursor: pointer;
  text-align: left;
}
.startseite__header-title:focus-visible {
  outline: 2px solid #333333;
  outline-offset: 4px;
  border-radius: 4px;
}

.startseite__header-nav {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-left: auto;
}

.startseite__header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  border: none;
  background: none;
}
.startseite__header-btn img {
  display: block;
  max-width: none;
  object-fit: contain;
}
.startseite__header-btn--icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #333333;
  transition: background-color var(--dur-btn-hover) var(--ease-out-soft);
}
.startseite__header-btn--icon img {
  transition: filter var(--dur-btn-hover) var(--ease-out-soft);
  filter: brightness(0) invert(1);
}
.startseite__header-btn--icon:hover, .startseite__header-btn--icon:active {
  background-color: #ffffff;
}
.startseite__header-btn--icon:hover img, .startseite__header-btn--icon:active img {
  filter: none;
}
.startseite__header-btn--icon:focus-visible {
  background-color: #ffffff;
  outline: 2px solid #333333;
  outline-offset: 2px;
}
.startseite__header-btn--icon:focus-visible img {
  filter: none;
}
.startseite__header-btn--icon img {
  width: 20px;
  height: 20px;
}
.startseite__header-btn--burger {
  width: 52px;
  height: 52px;
  margin-left: 55px;
  border-radius: 50%;
  background-color: #333333;
  transition: background-color var(--dur-btn-hover) var(--ease-out-soft);
}
.startseite__header-btn--burger img {
  transition: filter var(--dur-btn-hover) var(--ease-out-soft);
  filter: brightness(0) invert(1);
}
.startseite__header-btn--burger:hover, .startseite__header-btn--burger:active {
  background-color: #ffffff;
}
.startseite__header-btn--burger:hover img, .startseite__header-btn--burger:active img {
  filter: none;
}
.startseite__header-btn--burger:focus-visible {
  background-color: #ffffff;
  outline: 2px solid #333333;
  outline-offset: 2px;
}
.startseite__header-btn--burger:focus-visible img {
  filter: none;
}
.startseite__header-btn--burger img {
  width: 12px;
  height: 9px;
}

.startseite__hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #6c757b;
  container-type: size;
  container-name: hero;
}

.startseite__plan {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.startseite__years {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
  font-size: 200px;
  font-size: 34.4cqh;
}

.startseite__years-row {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
}
.startseite__years-row--top {
  bottom: 39.2cqh;
}
.startseite__years-row--bottom {
  bottom: 2.9cqh;
  left: 2ch;
}

.startseite__years-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 0.4em;
  width: max-content;
  will-change: transform;
  animation: years-scroll var(--years-scroll-duration, 480s) linear infinite;
}

.startseite__year {
  display: inline-block;
  flex-shrink: 0;
  font-weight: 600;
  line-height: 1;
  color: rgba(85, 158, 170, 0.6);
  white-space: nowrap;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

@keyframes years-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .startseite__years-track {
    animation: none;
  }
}
.startseite__content {
  background: #eeeeee;
  padding: 60px 0;
}

.startseite__intro {
  padding: 0 16px;
  margin-bottom: 60px;
}

.startseite__heading {
  margin: 0;
  max-width: 319px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.startseite__heading-br {
  display: none;
}

.startseite__cards {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0 16px;
}

.action-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 352px;
}

.action-card__head {
  display: flex;
  align-items: center;
  gap: 15px;
}

.action-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
}

.action-card__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}

.action-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.action-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  max-width: 350px;
}

.action-card__btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  padding: 15px;
  background: #207d8b;
  border: 1px solid #207d8b;
  border-radius: 12px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  transition: background-color var(--dur-btn-hover) var(--ease-out-soft), border-color var(--dur-btn-hover) var(--ease-out-soft), opacity var(--dur-btn-press) var(--ease-in-soft);
}
.action-card__btn:hover, .action-card__btn:visited {
  background-color: #559eaa;
  border-color: #559eaa;
}
.action-card__btn:active {
  background-color: #559eaa;
  border-color: #559eaa;
  opacity: 0.85;
}
.action-card__btn:disabled {
  transition: none;
}
.action-card__btn:focus-visible {
  background-color: #559eaa;
  border-color: #559eaa;
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .startseite__header {
    padding: 27px 30px 0;
  }
  .startseite__header-title {
    display: block;
    font-size: 16px;
  }
  .startseite__header-btn--icon,
  .startseite__header-btn--burger {
    width: 50px;
    height: 50px;
  }
  .startseite__header-btn--burger {
    margin-left: 63px;
  }
  .startseite__intro,
  .startseite__cards {
    padding-left: 30px;
    padding-right: 30px;
  }
  .startseite__years-row--top {
    top: 0;
    bottom: auto;
  }
  .startseite__years-row--bottom {
    top: auto;
    bottom: 0;
  }
}
@media (min-width: 1440px) {
  .startseite__header {
    padding: clamp(20px, 20px + (20px - 20px) * (100vw - 1440px) / (1920px - 1440px), 20px) clamp(30px, 30px + (60px - 30px) * (100vw - 1440px) / (1920px - 1440px), 60px);
  }
  .startseite__header-title {
    font-size: clamp(16px, 16px + (20px - 16px) * (100vw - 1440px) / (1920px - 1440px), 20px);
  }
  .startseite__hero {
    height: clamp(581px, 581px + (1059px - 581px) * (100vw - 1440px) / (1920px - 1440px), 1059px);
  }
  .startseite__years {
    font-size: 56.5cqh;
  }
  .startseite__content {
    padding-top: clamp(60px, 60px + (120px - 60px) * (100vw - 1440px) / (1920px - 1440px), 120px);
    padding-bottom: clamp(60px, 60px + (120px - 60px) * (100vw - 1440px) / (1920px - 1440px), 120px);
  }
  .startseite__intro {
    margin-bottom: clamp(60px, 60px + (120px - 60px) * (100vw - 1440px) / (1920px - 1440px), 120px);
    padding-left: clamp(30px, 30px + (60px - 30px) * (100vw - 1440px) / (1920px - 1440px), 60px);
    padding-right: clamp(30px, 30px + (60px - 30px) * (100vw - 1440px) / (1920px - 1440px), 60px);
  }
  .startseite__heading {
    max-width: clamp(319px, 319px + (1441px - 319px) * (100vw - 1440px) / (1920px - 1440px), 1441px);
    font-size: clamp(24px, 24px + (32px - 24px) * (100vw - 1440px) / (1920px - 1440px), 32px);
    line-height: 1.3;
  }
  .startseite__heading-br {
    display: block;
  }
  .startseite__cards {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(102px, 102px + (115px - 102px) * (100vw - 1440px) / (1610px - 1440px), 115px);
    padding-left: clamp(30px, 30px + (60px - 30px) * (100vw - 1440px) / (1920px - 1440px), 60px);
    padding-right: clamp(30px, 30px + (60px - 30px) * (100vw - 1440px) / (1920px - 1440px), 60px);
  }
  .action-card {
    flex: 0 1 clamp(372px, 372px + (420px - 372px) * (100vw - 1440px) / (1610px - 1440px), 420px);
    max-width: 420px;
    gap: clamp(30px, 30px + (50px - 30px) * (100vw - 1440px) / (1920px - 1440px), 50px);
  }
  .action-card__body {
    gap: clamp(10px, 10px + (40px - 10px) * (100vw - 1440px) / (1920px - 1440px), 40px);
  }
  .action-card__title {
    font-size: clamp(24px, 24px + (32px - 24px) * (100vw - 1440px) / (1920px - 1440px), 32px);
  }
  .action-card__text {
    font-size: clamp(16px, 16px + (20px - 16px) * (100vw - 1440px) / (1920px - 1440px), 20px);
    max-width: none;
  }
  .action-card__btn {
    padding: clamp(15px, 15px + (30px - 15px) * (100vw - 1440px) / (1920px - 1440px), 30px);
  }
}
@media (min-width: 1920px) {
  .startseite__header {
    padding: 20px 60px;
  }
  .startseite__header-title {
    font-size: 20px;
  }
  .startseite__hero {
    height: 1059px;
  }
  .startseite__content {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .startseite__intro {
    margin-bottom: 120px;
    padding-left: 60px;
    padding-right: 60px;
  }
  .startseite__heading {
    max-width: 1441px;
    font-size: 32px;
  }
  .startseite__cards {
    gap: 115px;
    padding-left: 60px;
    padding-right: 60px;
  }
  .action-card {
    flex: 0 0 420px;
    gap: 50px;
  }
  .action-card__body {
    gap: 40px;
  }
  .action-card__title {
    font-size: 32px;
  }
  .action-card__text {
    font-size: 20px;
  }
  .action-card__btn {
    padding: 30px;
  }
}
.view--geschichte {
  overflow: visible;
  background: #333333;
}

.view.is-hidden {
  display: none;
}

.geschichte__header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: 100%;
  max-width: 1920px;
  padding: 16px;
  pointer-events: none;
}
.geschichte__header .geschichte__header-inner,
.geschichte__header .geschichte__header-btn,
.geschichte__header .geschichte__header-title {
  pointer-events: auto;
}

.geschichte__header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.geschichte__header-title {
  display: none;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  line-height: 54px;
  color: inherit;
  white-space: nowrap;
  cursor: pointer;
  text-align: left;
}
.geschichte__header-title:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
  border-radius: 4px;
}

.geschichte__header-nav {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-left: auto;
}

.geschichte__header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  border: none;
  background: none;
}
.geschichte__header-btn img {
  display: block;
  max-width: none;
  object-fit: contain;
}
.geschichte__header-btn--icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #333333;
  transition: background-color var(--dur-btn-hover) var(--ease-out-soft);
}
.geschichte__header-btn--icon img {
  transition: filter var(--dur-btn-hover) var(--ease-out-soft);
  filter: brightness(0) invert(1);
}
.geschichte__header-btn--icon:hover, .geschichte__header-btn--icon:active {
  background-color: #ffffff;
}
.geschichte__header-btn--icon:hover img, .geschichte__header-btn--icon:active img {
  filter: none;
}
.geschichte__header-btn--icon:focus-visible {
  background-color: #ffffff;
  outline: 2px solid #333333;
  outline-offset: 2px;
}
.geschichte__header-btn--icon:focus-visible img {
  filter: none;
}
.geschichte__header-btn--icon img {
  width: 20px;
  height: 20px;
}
.geschichte__header-btn--burger {
  width: 52px;
  height: 52px;
  margin-left: 55px;
  border-radius: 50%;
  background-color: #333333;
  transition: background-color var(--dur-btn-hover) var(--ease-out-soft);
}
.geschichte__header-btn--burger img {
  transition: filter var(--dur-btn-hover) var(--ease-out-soft);
  filter: brightness(0) invert(1);
}
.geschichte__header-btn--burger:hover, .geschichte__header-btn--burger:active {
  background-color: #ffffff;
}
.geschichte__header-btn--burger:hover img, .geschichte__header-btn--burger:active img {
  filter: none;
}
.geschichte__header-btn--burger:focus-visible {
  background-color: #ffffff;
  outline: 2px solid #333333;
  outline-offset: 2px;
}
.geschichte__header-btn--burger:focus-visible img {
  filter: none;
}
.geschichte__header-btn--burger img {
  width: 12px;
  height: 9px;
}
.geschichte__header-btn--active {
  background-color: #ffffff;
}
.geschichte__header-btn--active img {
  filter: none;
}
.geschichte__header-btn--active:hover, .geschichte__header-btn--active:active {
  background-color: #ffffff;
}
.geschichte__header-btn--active:hover img, .geschichte__header-btn--active:active img {
  filter: none;
}

.geschichte__timeline {
  transition: padding var(--dur-timeline) var(--ease-in-out-soft), width var(--dur-timeline) var(--ease-in-out-soft);
}
.geschichte__timeline--compact {
  width: 36px;
  padding: 12px 0;
  align-items: center;
  justify-content: center;
}

.geschichte__timeline-link--upcoming {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.geschichte__timeline-compact {
  display: none;
  flex: 1;
  width: 100%;
  min-height: 0;
  pointer-events: auto;
}

.geschichte__timeline-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.geschichte__timeline-dots li {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.geschichte__timeline-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  pointer-events: auto;
}
.geschichte__timeline-dot::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 0.9;
  transition: width var(--dur-btn-hover) var(--ease-out-soft), height var(--dur-btn-hover) var(--ease-out-soft), opacity var(--dur-btn-hover) var(--ease-out-soft);
}
.geschichte__timeline-dot--active::before {
  width: 8px;
  height: 8px;
  opacity: 1;
}
.geschichte__timeline-dot:hover::before, .geschichte__timeline-dot:focus-visible::before {
  opacity: 1;
}
.geschichte__timeline-dot:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  border-radius: 4px;
}
.geschichte__timeline-dot--upcoming {
  cursor: default;
  pointer-events: none;
}
.geschichte__timeline-dot--upcoming::before {
  opacity: 0.45;
}

.geschichte__timeline--compact .geschichte__timeline-list {
  display: none;
}
.geschichte__timeline--compact .geschichte__timeline-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.geschichte__timeline--compact .geschichte__timeline-dots {
  height: 100%;
  justify-content: space-between;
}
.geschichte__timeline--compact .geschichte__timeline-dots li {
  flex: 0 0 auto;
  height: auto;
}
.geschichte__timeline--compact .geschichte__timeline-dot {
  width: 20px;
  height: 20px;
}

.geschichte__scroll {
  position: relative;
  background: #333333;
}

.geschichte-chapter {
  position: relative;
  background: #333333;
  margin: 0;
  padding: 0;
}

.geschichte-chapter__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  height: var(--geschichte-vh, 100dvh);
  overflow: hidden;
  background: #333333;
}

.geschichte-chapter__bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.geschichte-chapter__bg-layer {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  height: var(--geschichte-vh, 100dvh);
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #333333;
  font-size: 0;
  line-height: 0;
}

.geschichte-chapter__bg-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  touch-action: pan-y;
  background: #333333;
}

.geschichte-chapter__bg-stage {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 0;
  will-change: transform;
}
.geschichte-chapter__bg-stage img {
  display: block;
  max-width: none;
  image-rendering: -webkit-optimize-contrast;
}

.geschichte-chapter__bg-caption {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 16px 16px 12px;
  background: #333333;
  color: #ffffff;
  pointer-events: none;
}

.geschichte-chapter__bg-caption-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}

.geschichte-chapter__bg-caption-arrow {
  width: 17px;
  height: 6px;
}

.geschichte-chapter__panels {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  clip-path: inset(68px 0 0 0);
}

.geschichte-chapter__panels .geschichte-panel {
  pointer-events: auto;
}

.geschichte-panel {
  position: absolute;
  left: 50%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: calc(100% - 32px);
  max-width: 358px;
  padding: 16px;
  background: #333333;
  border-radius: 12px;
  color: #ffffff;
  pointer-events: auto;
  will-change: transform;
}

.geschichte-panel__title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}

.geschichte-panel__text {
  margin: 0;
  max-width: 278px;
  font-size: 16px;
  line-height: normal;
}

.geschichte-panel__credit {
  margin: 0;
  max-width: 286px;
  font-size: 10px;
  line-height: normal;
}

.geschichte-panel--dachau {
  gap: 30px;
  background: #eee;
  color: #333333;
}
.geschichte-panel--dachau .geschichte-panel__year {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}
.geschichte-panel--dachau .geschichte-panel__subtitle {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
}
.geschichte-panel--dachau .geschichte-panel__text {
  max-width: none;
  color: inherit;
}
.geschichte-panel--dachau .geschichte-panel__credit {
  color: inherit;
}
.geschichte-panel--dachau .geschichte-panel__em {
  font-style: italic;
}
.geschichte-panel--dachau .geschichte-panel__figure {
  margin: 0;
  width: 100%;
}
.geschichte-panel--dachau .geschichte-panel__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1840/1080;
  border-radius: 12px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .geschichte__header {
    padding: 30px;
  }
  .geschichte-chapter__panels {
    clip-path: none;
  }
  .geschichte-chapter__bg-viewport {
    touch-action: none;
  }
  .geschichte__header-title {
    display: block;
    font-size: 16px;
  }
  .geschichte__header-btn--icon,
  .geschichte__header-btn--burger {
    width: 50px;
    height: 50px;
  }
  .geschichte__header-btn--burger {
    margin-left: 63px;
  }
  .geschichte-chapter__bg-caption {
    display: flex;
    padding-left: 30px;
    padding-right: 30px;
  }
  .geschichte-panel {
    max-width: 358px;
  }
}
@media (min-width: 1440px) {
  .geschichte__header {
    padding: clamp(20px, 20px + (20px - 20px) * (100vw - 1440px) / (1920px - 1440px), 20px) clamp(30px, 30px + (60px - 30px) * (100vw - 1440px) / (1920px - 1440px), 60px);
  }
  .geschichte__header-title {
    font-size: clamp(16px, 16px + (20px - 16px) * (100vw - 1440px) / (1920px - 1440px), 20px);
  }
  .geschichte__timeline--compact {
    width: 36px;
    height: 154px;
    min-height: 154px;
    padding: 12px 0;
  }
  .geschichte-panel {
    max-width: 450px;
    padding: 16px;
    gap: 50px;
  }
  .geschichte-panel__title {
    font-size: 24px;
  }
  .geschichte-panel__text {
    max-width: 415px;
    font-size: 16px;
  }
}
@media (min-width: 1920px) {
  .geschichte__header {
    padding: 20px 60px;
  }
  .geschichte__header-title {
    font-size: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .geschichte-chapter__bg,
  .geschichte-panel,
  .geschichte__timeline {
    transition: none;
  }
}
.view--zeitspruenge {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #ffffff;
  --zs-split: 50%;
}
.view--zeitspruenge.zeitspruenge--empty .js-zs-viewport {
  visibility: hidden;
  pointer-events: none;
}

.zeitspruenge__header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: 100%;
  max-width: 1920px;
  padding: 16px;
  pointer-events: none;
}
.zeitspruenge__header .zeitspruenge__header-inner,
.zeitspruenge__header .zeitspruenge__header-btn,
.zeitspruenge__header .zeitspruenge__header-title {
  pointer-events: auto;
}

.zeitspruenge__header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.zeitspruenge__header-title {
  display: none;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  line-height: 54px;
  color: inherit;
  white-space: nowrap;
  cursor: pointer;
  text-align: left;
}
.zeitspruenge__header-title:focus-visible {
  outline: 2px solid #333333;
  outline-offset: 4px;
  border-radius: 4px;
}

.zeitspruenge__header-nav {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-left: auto;
}

.zeitspruenge__header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  border: none;
  background: none;
}
.zeitspruenge__header-btn img {
  display: block;
  max-width: none;
  object-fit: contain;
}
.zeitspruenge__header-btn--icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #333333;
  transition: background-color var(--dur-btn-hover) var(--ease-out-soft);
}
.zeitspruenge__header-btn--icon img {
  transition: filter var(--dur-btn-hover) var(--ease-out-soft);
  filter: brightness(0) invert(1);
}
.zeitspruenge__header-btn--icon:hover, .zeitspruenge__header-btn--icon:active {
  background-color: #ffffff;
}
.zeitspruenge__header-btn--icon:hover img, .zeitspruenge__header-btn--icon:active img {
  filter: none;
}
.zeitspruenge__header-btn--icon:focus-visible {
  background-color: #ffffff;
  outline: 2px solid #333333;
  outline-offset: 2px;
}
.zeitspruenge__header-btn--icon:focus-visible img {
  filter: none;
}
.zeitspruenge__header-btn--icon img {
  width: 20px;
  height: 20px;
}
.zeitspruenge__header-btn--burger {
  width: 52px;
  height: 52px;
  margin-left: 55px;
  border-radius: 50%;
  background-color: #333333;
  transition: background-color var(--dur-btn-hover) var(--ease-out-soft);
}
.zeitspruenge__header-btn--burger img {
  transition: filter var(--dur-btn-hover) var(--ease-out-soft);
  filter: brightness(0) invert(1);
}
.zeitspruenge__header-btn--burger:hover, .zeitspruenge__header-btn--burger:active {
  background-color: #ffffff;
}
.zeitspruenge__header-btn--burger:hover img, .zeitspruenge__header-btn--burger:active img {
  filter: none;
}
.zeitspruenge__header-btn--burger:focus-visible {
  background-color: #ffffff;
  outline: 2px solid #333333;
  outline-offset: 2px;
}
.zeitspruenge__header-btn--burger:focus-visible img {
  filter: none;
}
.zeitspruenge__header-btn--burger img {
  width: 12px;
  height: 9px;
}
.zeitspruenge__header-btn--active {
  background-color: #ffffff;
}
.zeitspruenge__header-btn--active img {
  filter: none;
}

.zeitspruenge__stage {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.zeitspruenge__layer {
  display: block;
  max-width: none;
  width: auto;
  height: auto;
  pointer-events: none;
  background-color: #ffffff;
}

.zeitspruenge__layer--older {
  position: relative;
  z-index: 1;
}

.zeitspruenge__clip {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 -8px 12px rgba(0, 0, 0, 0.12);
}
.zeitspruenge__clip[hidden] {
  display: none;
}

.zeitspruenge__layer--newer {
  position: absolute;
  top: 0;
  left: 0;
}

.zeitspruenge__dim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: var(--zs-split);
  background: rgba(131, 133, 130, 0.3);
  pointer-events: none;
}
.zeitspruenge__dim[hidden] {
  display: none;
}

.zeitspruenge__divider {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--zs-split);
  z-index: 5;
  height: 44px;
  margin-top: -22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ns-resize;
  touch-action: none;
  outline: none;
}
.zeitspruenge__divider[hidden] {
  display: none;
}
.zeitspruenge__divider:focus-visible .zeitspruenge__divider-handle {
  outline: 2px solid #559eaa;
  outline-offset: 3px;
}

.zeitspruenge__divider-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  background: #ffffff;
  pointer-events: none;
}

.zeitspruenge__divider-handle {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 31px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.zeitspruenge__divider-grip {
  display: block;
  width: 18px;
  height: 10px;
  background: linear-gradient(to bottom, #333333 0 2px, transparent 2px 4px, #333333 4px 6px, transparent 6px 8px, #333333 8px 10px);
}

.zeitspruenge__label {
  position: absolute;
  left: 50%;
  z-index: 6;
  transform: translateX(-50%);
  margin: 0;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(51, 51, 51, 0.75);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  pointer-events: none;
  white-space: nowrap;
}
.zeitspruenge__label[hidden] {
  display: none;
}
.zeitspruenge__label--older {
  top: calc(var(--zs-split) - 56px);
}
.zeitspruenge__label--newer {
  top: calc(var(--zs-split) + 28px);
}

.zeitspruenge__hint {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 8;
  transform: translate(-50%, -50%);
  max-width: calc(100% - 32px);
  margin: 0;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(51, 51, 51, 0.9);
  color: #ffffff;
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
  pointer-events: none;
}
.zeitspruenge__hint[hidden] {
  display: none;
}
.zeitspruenge__hint:not([hidden]) {
  animation: zs-hint-pulse 1.4s var(--ease-in-out-soft) 2 both;
}

@keyframes zs-hint-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.zeitspruenge__eras {
  transition: padding var(--dur-timeline) var(--ease-in-out-soft), width var(--dur-timeline) var(--ease-in-out-soft);
}

.zeitspruenge__era-dot {
  display: block;
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.9;
  transition: width var(--dur-btn-hover) var(--ease-out-soft), height var(--dur-btn-hover) var(--ease-out-soft), opacity var(--dur-btn-hover) var(--ease-out-soft);
}

.zeitspruenge__era--selected .zeitspruenge__era-dot {
  width: 8px;
  height: 8px;
  opacity: 1;
}

.zeitspruenge__era-label {
  display: inline;
}

.zeitspruenge__eras--compact {
  width: 36px;
  height: 154px;
  min-height: 154px;
  padding: 12px 0;
  overflow: hidden;
  align-items: center;
}
.zeitspruenge__eras--compact .zeitspruenge__eras-list {
  align-items: center;
  justify-content: space-between;
  gap: 0;
  height: 100%;
}
.zeitspruenge__eras--compact .zeitspruenge__eras-list li {
  width: 100%;
  justify-content: center;
}
.zeitspruenge__eras--compact .zeitspruenge__era {
  display: flex;
  width: 20px;
  height: 20px;
  min-height: 0;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0;
}
.zeitspruenge__eras--compact .zeitspruenge__era-label {
  display: none;
}
.zeitspruenge__eras--compact .zeitspruenge__era-dot {
  display: block;
  margin: 0 auto;
}

@media (prefers-reduced-motion: reduce) {
  .zeitspruenge__era-dot,
  .zeitspruenge__eras {
    transition: none;
  }
}
@media (min-width: 768px) {
  .zeitspruenge__header {
    padding: 30px;
  }
  .zeitspruenge__header-title {
    display: block;
    font-size: 16px;
  }
  .zeitspruenge__header-btn--icon,
  .zeitspruenge__header-btn--burger {
    width: 50px;
    height: 50px;
  }
  .zeitspruenge__header-btn--burger {
    margin-left: 63px;
  }
  .zeitspruenge__eras--compact {
    width: auto;
    height: 154px;
    min-height: 154px;
    padding: 10px 16px;
    overflow: hidden;
    align-items: center;
  }
  .zeitspruenge__eras--compact .zeitspruenge__eras-list {
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    height: 100%;
  }
  .zeitspruenge__eras--compact .zeitspruenge__eras-list li {
    justify-content: center;
  }
  .zeitspruenge__eras--compact .zeitspruenge__era {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 0;
  }
  .zeitspruenge__eras--compact .zeitspruenge__era-label {
    display: inline;
  }
  .zeitspruenge__eras--compact .zeitspruenge__era-dot {
    display: none;
  }
}
@media (min-width: 1440px) {
  .zeitspruenge__header {
    padding: clamp(20px, 20px + (20px - 20px) * (100vw - 1440px) / (1920px - 1440px), 20px) clamp(30px, 30px + (60px - 30px) * (100vw - 1440px) / (1920px - 1440px), 60px);
  }
  .zeitspruenge__header-title {
    font-size: clamp(16px, 16px + (20px - 16px) * (100vw - 1440px) / (1920px - 1440px), 20px);
  }
  .zeitspruenge__eras--compact {
    height: auto;
    min-height: 0;
    padding: 25px 20px;
    overflow: visible;
  }
  .zeitspruenge__eras--compact .zeitspruenge__eras-list {
    flex: none;
    gap: 25px;
    height: auto;
  }
}
.view--bauten {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: #6c757b;
  padding-bottom: 72px;
}

.bauten__header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: 100%;
  max-width: 1920px;
  padding: 16px;
  pointer-events: none;
}
.bauten__header .bauten__header-inner,
.bauten__header .bauten__header-btn,
.bauten__header .bauten__header-title {
  pointer-events: auto;
}

.bauten__header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.bauten__header-title {
  display: none;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  line-height: 54px;
  color: #333333;
  white-space: nowrap;
  cursor: pointer;
  text-align: left;
}
.bauten__header-title:focus-visible {
  outline: 2px solid #333333;
  outline-offset: 4px;
  border-radius: 4px;
}

.bauten__header-nav {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-left: auto;
}

.bauten__header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  border: none;
  background: none;
}
.bauten__header-btn img {
  display: block;
  max-width: none;
  object-fit: contain;
}
.bauten__header-btn--icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #333333;
  transition: background-color var(--dur-btn-hover) var(--ease-out-soft);
}
.bauten__header-btn--icon img {
  transition: filter var(--dur-btn-hover) var(--ease-out-soft);
  filter: brightness(0) invert(1);
}
.bauten__header-btn--icon:hover, .bauten__header-btn--icon:active {
  background-color: #ffffff;
}
.bauten__header-btn--icon:hover img, .bauten__header-btn--icon:active img {
  filter: none;
}
.bauten__header-btn--icon:focus-visible {
  background-color: #ffffff;
  outline: 2px solid #333333;
  outline-offset: 2px;
}
.bauten__header-btn--icon:focus-visible img {
  filter: none;
}
.bauten__header-btn--icon img {
  width: 20px;
  height: 20px;
}
.bauten__header-btn--burger {
  width: 52px;
  height: 52px;
  margin-left: 55px;
  border-radius: 50%;
  background-color: #333333;
  transition: background-color var(--dur-btn-hover) var(--ease-out-soft);
}
.bauten__header-btn--burger img {
  transition: filter var(--dur-btn-hover) var(--ease-out-soft);
  filter: brightness(0) invert(1);
}
.bauten__header-btn--burger:hover, .bauten__header-btn--burger:active {
  background-color: #ffffff;
}
.bauten__header-btn--burger:hover img, .bauten__header-btn--burger:active img {
  filter: none;
}
.bauten__header-btn--burger:focus-visible {
  background-color: #ffffff;
  outline: 2px solid #333333;
  outline-offset: 2px;
}
.bauten__header-btn--burger:focus-visible img {
  filter: none;
}
.bauten__header-btn--burger img {
  width: 12px;
  height: 9px;
}
.bauten__header-btn--active {
  background-color: #ffffff;
}
.bauten__header-btn--active img {
  filter: none;
}

.bauten__hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #dce1db;
}

.bauten__hero .map-viewport__stage {
  transition: opacity var(--dur-header) var(--ease-out-soft);
}
.bauten__hero .map-viewport__stage::before, .bauten__hero .map-viewport__stage::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #dce1db;
  pointer-events: none;
}
.bauten__hero .map-viewport__stage::before {
  right: 100%;
}
.bauten__hero .map-viewport__stage::after {
  left: 100%;
}

.bauten__hero:not(.is-map-ready) .map-viewport__stage {
  opacity: 0;
}

.bauten__eras {
  position: absolute;
  z-index: 15;
  --gutter: 0px;
}

.bauten__hero .map-viewport {
  z-index: 1;
}
.bauten__hero .map-viewport:focus, .bauten__hero .map-viewport:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: -6px;
}

.bauten__info-wrap {
  position: relative;
  z-index: 2;
  max-width: 1920px;
  margin: 0 auto;
  padding: calc(42px + 16px * 2 + 10px) 16px 60px;
  background: #6c757b;
  color: #ffffff;
}

.bauten__info-era {
  margin: 0 0 25px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.bauten__info-title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.bauten__info-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 16px;
}
.bauten__info-media:empty {
  display: none;
}

.bauten__info-figure {
  margin: 0;
}

.bauten__info-image {
  display: block;
  width: 100%;
  aspect-ratio: 344/245;
  object-fit: cover;
}

.bauten__info-caption {
  margin-top: 16px;
  font-size: 10px;
  line-height: 1.4;
  color: #ffffff;
}

.bauten__info-body {
  font-size: 16px;
  line-height: 1.45;
}
.bauten__info-body p {
  margin: 0 0 1em;
}
.bauten__info-body p:last-child {
  margin-bottom: 0;
}

.bauten__info-lang-note {
  font-style: italic;
  opacity: 0.75;
}

.bauten__info-sections {
  margin: 30px -16px 0;
}
.bauten__info-sections:empty {
  display: none;
}
.bauten__info-sections .bauten-texte__panel .bauten__info-figure {
  margin: 0 0 16px;
}
.bauten__info-sections .bauten-texte__panel .bauten__info-caption {
  margin-top: 10px;
  color: #999999;
}

.bauten__info-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
}

.bauten__info-navbtn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: none;
  background: none;
  color: #ffffff;
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  cursor: pointer;
}
.bauten__info-navbtn[hidden] {
  display: none;
}
.bauten__info-navbtn--next {
  margin-left: auto;
}
.bauten__info-navbtn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
  border-radius: 4px;
}

.bauten__info-navicon {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
}
.bauten__info-navicon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #6c757b;
  border-left: 2px solid #6c757b;
  transform: translate(-30%, -50%) rotate(-45deg);
}
.bauten__info-navbtn--next .bauten__info-navicon::before {
  transform: translate(-70%, -50%) rotate(135deg);
}

.bauten-nav {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 30;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 32px);
  padding: 6px 11px;
  background: #6c757b;
  border-radius: 12px;
}

.bauten-nav__btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: none;
  background: transparent;
  color: #ffffff;
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
}
.bauten-nav__btn:disabled {
  opacity: 0.4;
  cursor: default;
}
.bauten-nav__btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  border-radius: 4px;
}

.bauten-nav__icon {
  display: block;
  position: relative;
  width: 15px;
  height: 15px;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  flex-shrink: 0;
}
.bauten-nav__icon::before, .bauten-nav__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #ffffff;
  transform: translate(-50%, -50%);
}
.bauten-nav__icon::before {
  width: 7px;
  height: 1.5px;
}
.bauten-nav__icon::after {
  width: 1.5px;
  height: 7px;
}

@media (min-width: 768px) {
  .bauten__header {
    padding: 30px;
  }
  .bauten__header-title {
    display: block;
    font-size: 16px;
  }
  .bauten__header-btn--icon,
  .bauten__header-btn--burger {
    width: 50px;
    height: 50px;
  }
  .bauten__header-btn--burger {
    margin-left: 63px;
  }
  .bauten__info-wrap {
    padding: calc(50px + 30px * 2 + 10px) 30px 60px;
  }
  .bauten-nav {
    bottom: 30px;
  }
}
@media (min-width: 1440px) {
  .bauten__header {
    padding: clamp(20px, 20px + (20px - 20px) * (100vw - 1440px) / (1920px - 1440px), 20px) clamp(30px, 30px + (60px - 30px) * (100vw - 1440px) / (1920px - 1440px), 60px);
  }
  .bauten__header-title {
    font-size: clamp(16px, 16px + (20px - 16px) * (100vw - 1440px) / (1920px - 1440px), 20px);
  }
  .bauten__info-wrap {
    padding: calc(90px + 50px) 60px 120px;
  }
  .bauten__info-era {
    margin-bottom: 20px;
    font-size: 32px;
  }
  .bauten__info-title {
    font-size: 32px;
  }
  .bauten__info-media {
    gap: 50px;
    margin-bottom: 50px;
  }
  .bauten__info-figure {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .bauten__info-image {
    aspect-ratio: 1800/1069;
  }
  .bauten__info-caption {
    margin-top: 0;
    max-width: 320px;
    font-size: 16px;
  }
  .bauten__info-body {
    max-width: 710px;
    font-size: 20px;
  }
  .bauten__info-sections {
    margin: 60px -60px 0;
  }
  .bauten__info-nav {
    margin-top: 120px;
    margin-bottom: 0;
  }
  .bauten__info-navbtn {
    font-size: 20px;
  }
  .bauten__info-navicon {
    width: 50px;
    height: 50px;
  }
}
.js-bauten-markers {
  z-index: 2;
  overflow: visible;
  transform: none !important;
  zoom: 1;
}

.map-marker.bauten-marker {
  left: 0;
  top: 0;
  margin: 0;
  transform-origin: 0 0;
  will-change: left, top;
}

.map-marker.bauten-marker.bauten-marker--anchor-br {
  transform: translate(-100%, -100%);
}

.map-marker.bauten-marker.bauten-marker--anchor-tl {
  transform: translate(0, 0);
}

.map-marker.bauten-marker.bauten-marker--anchor-center {
  transform: translate(-50%, -50%);
}

.bauten-marker__shell {
  display: grid;
  place-items: center;
  transform: none;
}

.bauten-marker__dot,
.bauten-marker__pill {
  grid-area: 1/1;
  transform: none;
  zoom: 1;
}

.bauten-marker__dot {
  box-sizing: border-box;
  width: 17px;
  height: 17px;
  min-width: 17px;
  min-height: 17px;
  max-width: 17px;
  max-height: 17px;
  border-radius: 50%;
  border: 1px solid #6c757b;
  opacity: 0;
  transition: opacity var(--dur-header) var(--ease-out-soft);
}

.bauten-marker__pill {
  box-sizing: border-box;
  height: 24px;
  min-height: 24px;
  max-height: 24px;
  border-radius: 5px;
  border: 1px solid #6c757b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 8px 0 7px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--dur-header) var(--ease-out-soft);
  user-select: none;
}

.bauten-marker__text {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #000;
  transform: none;
}

.bauten-marker__plus {
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  border-radius: 50%;
  border: 1px solid #6c757b;
  position: relative;
  flex-shrink: 0;
  transform: none;
}
.bauten-marker__plus::before, .bauten-marker__plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #6c757b;
  transform: translate(-50%, -50%);
}
.bauten-marker__plus::before {
  width: 7px;
  height: 1.5px;
}
.bauten-marker__plus::after {
  width: 1.5px;
  height: 7px;
}

.bauten-marker--green .bauten-marker__dot,
.bauten-marker--green .bauten-marker__pill {
  background: #c3decd;
}

.bauten-marker--orange .bauten-marker__dot,
.bauten-marker--orange .bauten-marker__pill {
  background: #eecdbe;
}

.js-bauten-markers.bauten-markers--dots .bauten-marker__dot {
  opacity: 1;
}
.js-bauten-markers.bauten-markers--dots .bauten-marker__pill {
  display: none;
}

.js-bauten-markers.bauten-markers--labels .bauten-marker__dot {
  display: none;
}
.js-bauten-markers.bauten-markers--labels .bauten-marker__pill {
  opacity: 1;
  pointer-events: none;
}

.bauten-marker--labelonly {
  pointer-events: none;
}

button.bauten-marker {
  background: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
}
button.bauten-marker:focus {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
  border-radius: 8px;
}
button.bauten-marker:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
  border-radius: 8px;
}

@media (min-width: 1440px) {
  .js-bauten-markers .bauten-marker__dot {
    display: none;
  }
  .js-bauten-markers .bauten-marker__pill {
    display: inline-flex;
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .bauten-marker__dot,
  .bauten-marker__pill {
    transition: none;
  }
}
.bauten--overlay-open .bauten-nav {
  visibility: hidden;
  pointer-events: none;
}

html.bauten-overlay-lock,
html.bauten-overlay-lock body {
  overflow: hidden;
  touch-action: none;
}

.bauten-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.bauten-overlay[hidden] {
  display: none !important;
}

.bauten-overlay__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--dur-overlay-close) var(--ease-in-soft);
}

.bauten-overlay.is-open .bauten-overlay__backdrop {
  opacity: 1;
  transition-duration: var(--dur-header);
}

.bauten-overlay.is-open .bauten-overlay__panel {
  opacity: 1;
  transform: none;
  transition: opacity var(--dur-overlay-open) var(--ease-out-soft), transform var(--dur-overlay-open) var(--ease-out-soft);
}

.bauten-overlay__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: calc(100% - 32px);
  max-width: 358px;
  max-height: min(688px, 85dvh - 16px);
  margin: 0 16px 16px;
  background: #eecdbe;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--dur-overlay-close) var(--ease-in-soft), transform var(--dur-overlay-close) var(--ease-in-soft);
}

.bauten-overlay__panel--green {
  background: #c3decd;
}

.bauten-overlay__header {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 16px;
  padding-bottom: 10px;
}

.bauten-overlay__title {
  flex: 1;
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: #000;
}

.bauten-overlay__close,
.bauten-overlay__back {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  background-color: #333333;
  transition: background-color var(--dur-btn-hover) var(--ease-out-soft);
}
.bauten-overlay__close img,
.bauten-overlay__back img {
  transition: filter var(--dur-btn-hover) var(--ease-out-soft);
  filter: brightness(0) invert(1);
}
.bauten-overlay__close:hover, .bauten-overlay__close:active,
.bauten-overlay__back:hover,
.bauten-overlay__back:active {
  background-color: #ffffff;
}
.bauten-overlay__close:hover img, .bauten-overlay__close:active img,
.bauten-overlay__back:hover img,
.bauten-overlay__back:active img {
  filter: none;
}
.bauten-overlay__close:focus-visible,
.bauten-overlay__back:focus-visible {
  background-color: #ffffff;
  outline: 2px solid #333333;
  outline-offset: 2px;
}
.bauten-overlay__close:focus-visible img,
.bauten-overlay__back:focus-visible img {
  filter: none;
}
.bauten-overlay__close:hover, .bauten-overlay__close:active, .bauten-overlay__close:focus-visible,
.bauten-overlay__back:hover,
.bauten-overlay__back:active,
.bauten-overlay__back:focus-visible {
  color: #333333;
}
.bauten-overlay__close[hidden],
.bauten-overlay__back[hidden] {
  display: none;
}

.bauten-overlay__close img {
  display: block;
  width: 16px;
  height: 17px;
  max-width: none;
}

.bauten-overlay__back {
  font-size: 22px;
  line-height: 1;
}

.bauten-overlay__scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  padding: 0 16px calc(16px + env(safe-area-inset-bottom, 0));
}

.bauten-overlay__area {
  margin-bottom: 16px;
  border-radius: 5px;
  overflow: hidden;
}

.bauten-overlay__area-img {
  width: 100%;
  aspect-ratio: 326/179;
  background-repeat: no-repeat;
  background-size: 600%;
  background-color: #eeeeee;
}

.bauten-overlay__figure {
  margin: 0 0 16px;
}

.bauten-overlay__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.bauten-overlay__caption {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.35;
  color: #000;
}

.bauten-overlay__copy {
  font-size: 16px;
  line-height: 1.45;
  color: #000;
}
.bauten-overlay__copy p {
  margin: 0 0 12px;
}
.bauten-overlay__copy:not(:last-child) {
  margin-bottom: 16px;
}

.bauten-overlay__accordion {
  display: flex;
  flex-direction: column;
  margin: 16px -16px 0;
}

.bauten-overlay__acc-item {
  border-bottom: 1px solid #ffffff;
}

.bauten-overlay__acc-item:last-child {
  border-bottom: none;
}

.bauten-overlay__acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 44px;
  padding: 16px;
  border: none;
  background: #6c757b;
  color: #ffffff;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.bauten-overlay__acc-trigger:focus-visible {
  outline: 2px solid #559eaa;
  outline-offset: -2px;
}

.bauten-overlay__acc-icon {
  flex-shrink: 0;
  width: 17px;
  height: 6px;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='8' viewBox='0 0 19 8' fill='none'%3E%3Cpath d='M1 1L9.5 7L18 1' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='8' viewBox='0 0 19 8' fill='none'%3E%3Cpath d='M1 1L9.5 7L18 1' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform var(--dur-accordion) var(--ease-in-out-soft);
  transform-origin: 50% 87.5%;
}
.bauten-overlay__acc-trigger[aria-expanded=true] .bauten-overlay__acc-icon {
  transform: rotate(180deg);
}

.bauten-overlay__acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  background: #6c757b;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.45;
  transition: grid-template-rows var(--dur-accordion) var(--ease-in-out-soft);
}
.bauten-overlay__acc-trigger[aria-expanded=true] + .bauten-overlay__acc-panel {
  grid-template-rows: 1fr;
}
.bauten-overlay__acc-panel p {
  margin: 0 0 10px;
}
.bauten-overlay__acc-panel p:last-child {
  margin-bottom: 0;
}
.bauten-overlay__acc-panel .bauten-overlay__copy,
.bauten-overlay__acc-panel .bauten-overlay__caption {
  color: inherit;
}

.bauten-overlay__acc-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.bauten-overlay__acc-panel-content {
  padding: 0 32px 16px 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-accordion) var(--ease-in-out-soft), visibility 0s linear var(--dur-accordion);
}
.bauten-overlay__acc-trigger[aria-expanded=true] + .bauten-overlay__acc-panel .bauten-overlay__acc-panel-content {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--dur-accordion) var(--ease-in-out-soft);
}

.bauten-overlay__multilinks {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bauten-overlay__multilink {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.4);
  color: #333333;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.bauten-overlay__multilink:hover, .bauten-overlay__multilink:focus-visible {
  background: rgba(255, 255, 255, 0.6);
}

.bauten-overlay__footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 30px;
}

.bauten-overlay__footer-btn {
  display: block;
  padding: 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.4);
  color: #333333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.bauten-overlay__footer-btn:hover, .bauten-overlay__footer-btn:focus-visible {
  background: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .bauten-overlay {
    align-items: center;
  }
  .bauten-overlay__panel {
    width: 60%;
    max-width: 1100px;
    max-height: 90dvh;
    margin: 0;
    border-radius: 12px;
  }
  .bauten-overlay__copy,
  .bauten-overlay__acc-panel-content > .txt-de,
  .bauten-overlay__acc-panel-content > .txt-en {
    max-width: 600px;
  }
}
@media (min-width: 1440px) {
  .bauten-overlay__header {
    padding: 20px 60px;
  }
  .bauten-overlay__title {
    font-size: 32px;
  }
  .bauten-overlay__scroll {
    padding: 0 0 60px;
  }
  .bauten-overlay__area {
    margin-left: 21px;
    margin-right: 21px;
  }
  .bauten-overlay__body > .bauten-overlay__figure > .bauten-overlay__img {
    width: calc(100% - 42px);
    margin-left: 21px;
    margin-right: 21px;
  }
  .bauten-overlay__copy,
  .bauten-overlay__acc-panel-content > .txt-de,
  .bauten-overlay__acc-panel-content > .txt-en {
    font-size: 16px;
  }
  .bauten-overlay__body > .bauten-overlay__copy,
  .bauten-overlay__body > .bauten-overlay__figure .bauten-overlay__caption {
    padding: 0 60px;
  }
  .bauten-overlay__accordion {
    margin-left: 0;
    margin-right: 0;
  }
  .bauten-overlay__acc-trigger {
    padding: 30px 60px;
    font-size: 20px;
  }
  .bauten-overlay__acc-panel {
    font-size: 16px;
  }
  .bauten-overlay__acc-panel-content {
    padding: 0 60px 30px;
  }
  .bauten-overlay__multilinks {
    padding: 0 60px;
  }
  .bauten-overlay__footer {
    margin-top: 50px;
    padding: 0 60px;
  }
  .bauten-overlay__footer-btn,
  .bauten-overlay__multilink {
    padding: 30px;
    font-size: 20px;
  }
}
.view--bauten-texte {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: #6c757b;
  padding-bottom: 72px;
}

.bauten-texte {
  padding-top: calc(42px + 16px * 2 + 19px);
}

.bauten-texte__heading {
  margin: 0 0 19px;
  padding: 0 16px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
}

.bauten-texte__list {
  display: flex;
  flex-direction: column;
}

.bauten-texte__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.bauten-texte__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bauten-texte__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 44px;
  padding: 16px;
  border: none;
  background: #6c757b;
  color: #ffffff;
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
}
.bauten-texte__trigger:focus-visible {
  outline: 2px solid #559eaa;
  outline-offset: -2px;
}

.bauten-texte__title--term {
  font-style: italic;
}

.bauten-texte__icon {
  flex-shrink: 0;
  width: 17px;
  height: 6px;
  align-self: flex-start;
  font-size: 16px;
  line-height: 1.3;
  margin-top: calc((1lh - 6px) / 2);
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='8' viewBox='0 0 19 8' fill='none'%3E%3Cpath d='M1 1L9.5 7L18 1' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='8' viewBox='0 0 19 8' fill='none'%3E%3Cpath d='M1 1L9.5 7L18 1' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform var(--dur-accordion) var(--ease-in-out-soft);
  transform-origin: 50% 87.5%;
}
.bauten-texte__trigger[aria-expanded=true] .bauten-texte__icon {
  transform: rotate(180deg);
}

.bauten-texte__panel {
  display: grid;
  grid-template-rows: 0fr;
  background: #ffffff;
  color: #333333;
  transition: grid-template-rows var(--dur-accordion) var(--ease-in-out-soft);
}
.bauten-texte__trigger[aria-expanded=true] + .bauten-texte__panel {
  grid-template-rows: 1fr;
}

.bauten-texte__panel-inner {
  min-height: 0;
  overflow: hidden;
}

.bauten-texte__panel-content {
  padding: 0 16px 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-accordion) var(--ease-in-out-soft), visibility 0s linear var(--dur-accordion);
}
.bauten-texte__trigger[aria-expanded=true] + .bauten-texte__panel .bauten-texte__panel-content {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--dur-accordion) var(--ease-in-out-soft);
}

.bauten-texte__trigger[aria-expanded=true] .bauten-texte__title {
  color: #333333;
}

.bauten-texte__trigger[aria-expanded=true] {
  background: #ffffff;
  color: #333333;
  font-size: 20px;
}

.bauten-texte__body {
  max-width: 301px;
  font-size: 16px;
  line-height: 1.45;
}
.bauten-texte__body p {
  margin: 0 0 1em;
}
.bauten-texte__body p:last-child {
  margin-bottom: 0;
}

.bauten-texte__lang-note {
  font-style: italic;
  color: #999999;
}

@media (min-width: 768px) {
  .bauten-texte {
    padding-top: calc(50px + 30px * 2 + 19px);
  }
  .bauten-texte__heading {
    padding: 0 30px;
  }
  .bauten-texte__trigger {
    padding: 16px 30px;
  }
  .bauten-texte__panel-content {
    padding: 0 30px 16px;
  }
  .bauten-texte__body {
    max-width: none;
  }
}
@media (min-width: 1440px) {
  .bauten-texte {
    padding-top: calc(90px + 50px);
  }
  .bauten-texte__heading {
    margin-bottom: 50px;
    padding: 0 60px;
    font-size: 32px;
  }
  .bauten-texte__trigger {
    padding: 30px 60px;
    font-size: 20px;
  }
  .bauten-texte__trigger[aria-expanded=true] {
    padding: 30px 60px 50px;
    font-size: 32px;
  }
  .bauten-texte__icon {
    font-size: 20px;
  }
  .bauten-texte__panel-content {
    padding: 0 60px 50px;
  }
  .bauten-texte__body {
    max-width: 710px;
    font-size: 20px;
  }
}
.view--info-page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: #ffffff;
}

.info-page {
  padding: calc(42px + 16px * 2 + 16px) 16px 72px;
  color: #333333;
}
@media (min-width: 768px) {
  .info-page {
    padding: calc(42px + 30px * 2 + 24px) 30px 96px;
  }
}
@media (min-width: 1440px) {
  .info-page {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.info-page__inner {
  display: flex;
  flex-direction: column;
  gap: 23px;
  max-width: 640px;
}

.info-page__title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .info-page__title {
    font-size: 32px;
  }
}

.info-page__h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.info-page__text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.info-page__text p {
  margin: 0 0 1em;
}
.info-page__text p:last-child {
  margin-bottom: 0;
}
.info-page__text ul {
  margin: 0.25em 0 0;
  padding-left: 1.4em;
  list-style: disc;
}
.info-page__text strong {
  font-weight: 600;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] {
  display: none;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.lightbox__dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: min(92vw, 1280px);
  max-height: 92vh;
}

.lightbox__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-height: 0;
}

.lightbox__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.lightbox__img,
.lightbox__video {
  display: block;
  max-width: 92vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  background: #000;
}

.lightbox__dialog--video .lightbox__video {
  width: min(92vw, 1280px);
  max-height: 86vh;
}

.lightbox__caption {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}
.lightbox__caption[hidden] {
  display: none;
}

.lightbox__close {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
}
.lightbox__close:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.3);
}
.lightbox__nav:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.lightbox__nav[hidden] {
  display: none;
}
.lightbox__nav--prev {
  left: -8px;
}
.lightbox__nav--next {
  right: -8px;
}
@media (min-width: 768px) {
  .lightbox__nav--prev {
    left: -60px;
  }
  .lightbox__nav--next {
    right: -60px;
  }
}

.site-footer {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  background: #ffffff;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 16px;
}
@media (min-width: 768px) {
  .site-footer__inner {
    padding: 32px 30px;
  }
}
@media (min-width: 1440px) {
  .site-footer__inner {
    padding: 40px 60px;
  }
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
@media (min-width: 1440px) {
  .site-footer__top {
    justify-content: space-between;
    gap: 40px;
  }
}

.site-footer__nav {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 1440px) {
  .site-footer__nav {
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 35px;
    row-gap: 12px;
  }
}

.site-footer__link {
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  color: #111827;
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  white-space: nowrap;
  text-decoration: none;
  transition: color var(--dur-btn-hover) var(--ease-out-soft);
}
.site-footer__link:hover, .site-footer__link:active, .site-footer__link:visited {
  color: #207d8b;
}
.site-footer__link:focus-visible {
  color: #207d8b;
  outline: 2px solid #207d8b;
  outline-offset: 2px;
}

.site-footer__logos {
  flex: 0 1 200px;
}
@media (min-width: 768px) {
  .site-footer__logos {
    flex-basis: 300px;
  }
}
@media (min-width: 1440px) {
  .site-footer__logos {
    flex-basis: 415px;
  }
}

.site-footer__logos-img {
  width: 100%;
  height: auto;
}

.site-footer__divider {
  width: 100%;
  height: 1px;
  background: #d1d5db;
}

.site-footer__copyright {
  margin: 0;
  width: 100%;
  text-align: center;
  color: #6b7280;
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 8px;
  line-height: normal;
}

/*# sourceMappingURL=style.css.map */
