/* xFigma – Scheiblhofer RE: Geschichte-Zeitstrahl (horizontale Zieharmonika) */
.xfigma-re-timeline {
  background: #131313;
  color: #fff;
  padding: 90px 36px;
  overflow-x: hidden;
  font-family: "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
}
.xfigma-re-timeline__inner {
  display: flex;
  align-items: stretch;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 540px;
}
.xfigma-re-timeline__item {
  display: flex;
  align-items: stretch;
  flex: 0 1 auto;
  min-width: 0;
  transition: flex-grow 0.45s ease;
}
.xfigma-re-timeline__item.is-active {
  flex-grow: 1;
}
/* Jahres-Spalte (Button) */
.xfigma-re-timeline__toggle {
  position: relative;
  flex: 0 0 104px;
  width: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.xfigma-re-timeline__line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.3s ease;
}
.xfigma-re-timeline__toggle:hover .xfigma-re-timeline__line,
.xfigma-re-timeline__item.is-active .xfigma-re-timeline__line {
  background: #bf0f1e;
}
/* Jahr absolut positioniert + rotiert -> die un-rotierte Textbreite trägt NICHT zur Spaltenbreite bei
   (verhindert horizontale Überbreite durch breite Jahre wie "heute"). */
.xfigma-re-timeline__year {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.xfigma-re-timeline__toggle:hover .xfigma-re-timeline__year {
  color: rgba(255, 255, 255, 0.85);
}
.xfigma-re-timeline__item.is-active .xfigma-re-timeline__year {
  color: #bf0f1e;
}
.xfigma-re-timeline__node {
  position: absolute;
  left: calc(50% - 28px);
  bottom: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.xfigma-re-timeline__toggle:hover .xfigma-re-timeline__node {
  border-color: #fff;
}
.xfigma-re-timeline__item.is-active .xfigma-re-timeline__node {
  background: #bf0f1e;
  border-color: #bf0f1e;
}
.xfigma-re-timeline__node svg {
  display: block;
  transition: transform 0.3s ease;
}
.xfigma-re-timeline__item.is-active .xfigma-re-timeline__node svg {
  transform: rotate(180deg);
}
/* Panel klappt NEBEN dem Jahr auf */
.xfigma-re-timeline__panel {
  flex: 1 1 0;
  min-width: 0;
  width: 0;
  overflow: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  transition: opacity 0.35s ease;
}
.xfigma-re-timeline__item.is-active .xfigma-re-timeline__panel {
  width: auto;
  opacity: 1;
}
.xfigma-re-timeline__panel-inner {
  padding: 0 48px;
  max-width: 560px;
}
.xfigma-re-timeline__panel-year {
  display: block;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  color: #bf0f1e;
  margin-bottom: 18px;
}
.xfigma-re-timeline__text {
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}
/* Mobile: vertikale Zieharmonika */
@media (max-width: 900px) {
  .xfigma-re-timeline {
    padding: 56px 20px;
  }
  .xfigma-re-timeline__inner {
    flex-direction: column;
    min-height: 0;
  }
  .xfigma-re-timeline__item {
    flex-direction: column;
    flex: 0 0 auto;
  }
  .xfigma-re-timeline__toggle {
    flex: 0 0 auto;
    width: 100%;
    min-height: 72px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
    padding: 0 8px;
  }
  .xfigma-re-timeline__line {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 1px;
  }
  .xfigma-re-timeline__year {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    font-size: 34px;
  }
  .xfigma-re-timeline__node {
    position: static;
    margin-left: auto;
    width: 40px;
    height: 40px;
  }
  .xfigma-re-timeline__node svg {
    transform: rotate(90deg);
  }
  .xfigma-re-timeline__item.is-active .xfigma-re-timeline__node svg {
    transform: rotate(-90deg);
  }
  /* Mobile: simples display-Accordion (Panel als Block mit Auto-Höhe, nicht flex:0-collapse) */
  .xfigma-re-timeline__panel {
    display: none;
    flex: none;
    width: 100%;
    height: auto;
    overflow: visible;
    opacity: 1;
  }
  .xfigma-re-timeline__item.is-active .xfigma-re-timeline__panel {
    display: block;
    width: 100%;
    opacity: 1;
  }
  .xfigma-re-timeline__panel-inner {
    padding: 8px 8px 24px;
    max-width: none;
  }
  .xfigma-re-timeline__panel-year {
    font-size: 30px;
  }
  .xfigma-re-timeline__text {
    font-size: 18px;
  }
}
/*# sourceMappingURL=/xassets/uncompressed/source_map/168.css.css.map */