.kalt-kpi-inner {
  display: flex;
  gap: 44px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.kalt-kpi-item {
  width: 165px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.kalt-kpi-icon img {
  width: 60px;
  height: 60px;
  display: block;
}
.kalt-kpi-number {
  font-family: Jost, sans-serif;
  color: var(--kalt-portable-accent);
  font-size: 32px;
  line-height: 38px;
  font-weight: 400;
}
.kalt-kpi-number .kpi-suffix {
  margin-left: 4px;
}
.kalt-kpi-label {
  color: var(--kalt-portable-text);
  font-size: 20px;
  line-height: 28px;
  word-break: keep-all;
}

/* Prevent layout shifts: reserve space for numbers */
.kpi-count {
  display: inline-block;
  min-width: 3ch;
}

@media (max-width: 1000px) {
  .kalt-kpi-inner {
    justify-content: center;
  }
}

.kalt-timeline-section {
  background: var(--kalt-portable-bg);
  overflow: hidden;
  padding: 60px 20px 80px;
}

.kalt-timeline__container {
  display: flex;
  flex-direction: column;
  gap: 46px;
  margin: 0 auto;
  max-width: 1440px;
}

.kalt-timeline__header {
  display: flex;
  justify-content: center;
}

.kalt-timeline__title {
  color: var(--kalt-portable-accent);
  font-family: Jost, sans-serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 38px;
  margin: 0;
  text-align: center;
}

.kalt-timeline__years-shell {
  position: relative;
  width: 100%;
}

.kalt-timeline__years-shell::before {
  background: var(--kalt-portable-border-light);
  content: "";
  height: 1px;
  left: -20px;
  position: absolute;
  right: -20px;
  top: 57px;
}

.kalt-timeline__years {
  overflow: visible;
  width: 100%;
}

.kalt-timeline__year-slide {
  width: 75px;
}

button.kalt-timeline__year-button,
button.kalt-timeline__year-button:hover,
button.kalt-timeline__year-button:focus {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--kalt-portable-text);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
  min-width: 0;
  padding: 0 0 15px;
  transition: color 0.25s ease;
  width: 75px;
}

.kalt-timeline__year-button:hover,
.kalt-timeline__year-button:focus {
  background: transparent;
  color: var(--kalt-portable-accent);
  outline: none;
}

.kalt-timeline__year-label {
  font-family: Jost, sans-serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 32px;
}

.kalt-timeline__year-dot {
  background: var(--kalt-portable-surface);
  border: 1px solid var(--kalt-portable-border);
  border-radius: 50%;
  display: block;
  height: 18px;
  position: relative;
  width: 18px;
}

.kalt-timeline__year-dot::after {
  background: var(--kalt-portable-surface);
  border-radius: 50%;
  content: "";
  height: 12px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.25s ease;
  width: 12px;
}

.kalt-timeline__year-button.is-active,
.kalt-timeline__year-button[aria-current="true"] {
  color: var(--kalt-portable-accent);
}

.kalt-timeline__year-button.is-active .kalt-timeline__year-dot::after,
.kalt-timeline__year-button[aria-current="true"] .kalt-timeline__year-dot::after {
  background: var(--kalt-portable-accent);
}

.kalt-timeline__content-shell {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 765px;
  padding: 0 74px;
  position: relative;
  width: 100%;
}

.kalt-timeline__cards {
  width: 100%;
}

.kalt-timeline__nav {
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.kalt-timeline__card-slide {
  display: flex;
  justify-content: center;
}

.kalt-timeline__card {
  background: var(--kalt-portable-surface);
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  min-height: 196px;
  padding: 35px 33px;
  width: min(100%, 476px);
}
.kalt-timeline__card-content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.kalt-timeline__card-title {
  color: var(--kalt-portable-accent);
  font-family: Jost, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 24px;
  margin: 0;
}

.kalt-timeline__card-text,
.kalt-timeline__card-text p {
  color: var(--kalt-portable-text);
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 20px;
  margin: 0;
}

.kalt-timeline__card-link {
  align-self: flex-start;
  border-bottom: 1px solid var(--kalt-portable-border-light);
  color: var(--kalt-portable-accent);
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 20px;
  padding-bottom: 2px;
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    color 0.25s ease;
}

.kalt-timeline__card-link:hover,
.kalt-timeline__card-link:focus {
  border-color: var(--kalt-portable-accent);
  color: var(--kalt-portable-accent);
  outline: none;
}

button.kalt-timeline__arrow {
  align-items: center;
  backdrop-filter: blur(2.8px);
  background: rgba(255, 255, 255, 0.96);
  border: 0;
  border-radius: 999px;
  color: var(--kalt-portable-accent);
  cursor: pointer;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  min-height: 0;
  min-width: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
  width: 34px;
  z-index: 3;
  pointer-events: auto;
}

button.kalt-timeline__arrow:hover,
button.kalt-timeline__arrow:focus {
  background: rgba(255, 255, 255, 0.96);
  color: var(--kalt-portable-accent);
  outline: none;
}

button.kalt-timeline__arrow[disabled] {
  cursor: default;
  opacity: 0.45;
}

button.kalt-timeline__arrow svg {
  display: block;
}

button.kalt-timeline__arrow--prev {
  left: 80px;
}

button.kalt-timeline__arrow--next {
  right: 80px;
}

.wp-block-columns.is-style-kaesekategorien {
  gap: 57px;
}
.has-expandable-list > p {
  margin-bottom: 12px;
}

@media (min-width: 782px) {
  .kalt-timeline__years .swiper-wrapper {
    align-items: flex-start;
  }
}
@media (max-width: 959px) {
  .kalt-timeline__content-shell {
    max-width: 720px;
  }

  button.kalt-timeline__arrow--prev {
    left: 46px;
  }

  button.kalt-timeline__arrow--next {
    right: 46px;
  }
}

@media (max-width: 781px) {
  .kalt-timeline-section {
    padding: 44px 20px 60px;
  }

  .kalt-timeline__container {
    gap: 38px;
  }

  .kalt-timeline__title {
    font-size: 32px;
    line-height: 38px;
  }
  .kalt-timeline__year-slide {
    width: 100%;
  }

  .kalt-timeline__year-button {
    margin: 0 auto;
    width: 100%;
  }

  .kalt-timeline__content-shell {
    flex-direction: column;
    gap: 20px;
    max-width: 388px;
    min-height: 0;
    padding: 0;
  }

  .kalt-timeline__cards {
    width: 100%;
  }

  .kalt-timeline__card {
    gap: 28px;
    padding: 35px 33px;
    width: 100%;
  }

  button.kalt-timeline__arrow {
    position: static;
    top: auto;
    transform: none;
  }

  .kalt-timeline__nav {
    align-items: center;
    display: flex;
    gap: 15px;
    inset: auto;
    justify-content: center;
    pointer-events: auto;
    position: static;
  }

  button.kalt-timeline__arrow--next,
  button.kalt-timeline__arrow--prev {
    left: auto;
    right: auto;
  }
}

.wp-block-columns.kalt-cheese-categories .wp-block-column.has-expandable-list {
  position: relative;
}

.wp-block-columns.kalt-cheese-categories .wp-block-column .wp-block-list {
  list-style: none;
  margin: 0;
  max-height: 54px;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: max-height 0.35s ease;
}

.wp-block-columns.kalt-cheese-categories .wp-block-column .wp-block-list li {
  margin: 0 0 6px;
  padding-left: 16px;
  position: relative;
}

.wp-block-columns.kalt-cheese-categories .wp-block-column .wp-block-list li:last-child {
  margin-bottom: 0;
}

.wp-block-columns.kalt-cheese-categories .wp-block-column .wp-block-list li::before {
  background: var(--kalt-portable-accent);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 7px;
  width: 6px;
}

.wp-block-columns.kalt-cheese-categories .wp-block-column.is-expanded .wp-block-list {
  overflow: visible;
}

button.kalt-cheese-categories__toggle,
button.kalt-cheese-categories__toggle:hover,
button.kalt-cheese-categories__toggle:focus {
  align-items: flex-start;
  background: transparent;
  border: 0;
  color: var(--wp--custom--color--paragraph);
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 12px;
  min-height: 0;
  min-width: 0;
  padding: 0;
}

button.kalt-cheese-categories__toggle:hover,
button.kalt-cheese-categories__toggle:focus {
  color: var(--kalt-portable-border);
  outline: none;
}

.kalt-cheese-categories__toggle-row {
  align-items: center;
  display: inline-flex;
  gap: 2px;
}

.kalt-cheese-categories__toggle-label {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 16px;
}

.kalt-cheese-categories__toggle-icon {
  align-items: center;
  display: inline-flex;
  height: 14px;
  justify-content: center;
  transition: transform 0.35s ease;
  width: 14px;
}

.kalt-cheese-categories__toggle-icon svg {
  display: block;
  height: 14px;
  width: 14px;
}

.wp-block-columns.kalt-cheese-categories .wp-block-column.is-expanded .kalt-cheese-categories__toggle-icon {
  transform: rotate(180deg);
}

.kalt-cheese-categories__toggle-line {
  background: currentColor;
  display: block;
  height: 1px;
  transition: background-color 0.25s ease;
  width: 100%;
}

.kalt-project-children__track {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kalt-project-children__item {
  background: #f4f6f4;
  min-width: 0;
}

.kalt-project-children__link {
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.kalt-project-children__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.kalt-project-children__image {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}

.kalt-project-children__image--placeholder {
  background: #dfe5e2;
}

.kalt-project-children__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  min-height: 110px;
  padding: 20px;
}

.kalt-project-children__title {
  color: var(--wp--custom--color--primary);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 24px;
  margin: 0;
}

.kalt-project-children__button {
  align-items: center;
  align-self: flex-start;
  background: var(--wp--custom--color--primary);
  color: #fff;
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 1px;
  line-height: 24px;
  min-height: 45px;
  padding: 10px 34px;
  text-align: center;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.kalt-project-children__link:hover .kalt-project-children__button,
.kalt-project-children__link:focus .kalt-project-children__button,
.kalt-project-children__link:focus-visible .kalt-project-children__button {
  background: var(--wp--custom--color--button-active);
}

.kalt-project-children__link:focus,
.kalt-project-children__link:focus-visible {
  outline: none;
}

@media (max-width: 1279px) and (min-width: 782px) {
  .kalt-project-children {
    padding-top: 20px;
  }

  .kalt-project-children__track {
    display: flex;
    gap: 22px;
    margin: 0;
    max-width: none;
    overflow-x: auto;
    padding: 0 0 20px;
    scroll-snap-type: x proximity;
    scrollbar-color: #013d47 #d9d9d9;
    scrollbar-width: auto;
  }

  .kalt-project-children__track::-webkit-scrollbar {
    height: 12px;
  }

  .kalt-project-children__track::-webkit-scrollbar-track {
    background: #d9d9d9;
    border-radius: 999px;
  }

  .kalt-project-children__track::-webkit-scrollbar-thumb {
    background: #013d47;
    border-radius: 999px;
  }

  .kalt-project-children__item {
    flex: 0 0 323.5px;
    scroll-snap-align: start;
  }

  .kalt-project-children__content {
    min-height: 173px;
  }
}

@media (max-width: 781px) {
  .kalt-project-children {
    padding-top: 30px;
  }

  .kalt-project-children__track {
    gap: 20px;
    grid-template-columns: minmax(0, 1fr);
    max-width: 388px;
    padding: 0 20px;
  }

  .kalt-project-children__content {
    min-height: 171px;
  }
}

.kalt-components-slider {
  background: var(--kalt-portable-bg);
  overflow: hidden;
  padding: 50px 0 7%;
}

.kalt-components-slider__container {
  margin: 0 auto;
  max-width: var(--wp--custom--page--size--normal);
  position: relative;
}

.kalt-components-slider__header {
  padding: 0 0 40px;
}

.kalt-components-slider__heading {
  color: var(--wp--custom--color--primary);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 38px;
  margin: 0;
  text-align: center;
}

.kalt-components-slider__tabs {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  justify-content: center;
  margin: 0 auto 40px;
}

button.kalt-components-slider__tab,
button.kalt-components-slider__tab:hover,
button.kalt-components-slider__tab:focus {
  align-items: center;
  background: var(--kalt-portable-surface);
  border: 0;
  color: var(--kalt-portable-text);
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 1px;
  line-height: 20px;
  min-height: 44px;
  padding: 10px 14px;
  text-align: center;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

button.kalt-components-slider__tab:hover,
button.kalt-components-slider__tab:focus {
  background: var(--wp--custom--color--button-active);
  color: #fff;
  outline: none;
}

.kalt-components-slider__tab.is-active {
  background: var(--wp--custom--color--primary);
  color: #fff;
}

.kalt-components-slider__stage {
  position: relative;
}

.kalt-components-slider__slide {
  display: flex;
}

.kalt-components-slider__card {
  align-items: stretch;
  background: var(--kalt-portable-surface);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 461px;
  min-height: 461px;
  width: 100%;
}

.kalt-components-slider__copy {
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding: 40px 68px;
  justify-content: center;
}

.kalt-components-slider__copy-inner {
  display: flex;
  flex-direction: column;
  gap: 13px;
  max-width: 588px;
}

.kalt-components-slider__title {
  color: var(--wp--custom--color--primary);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 32px;
  margin: 0;
}

.kalt-components-slider__text,
.kalt-components-slider__text p {
  color: var(--kalt-portable-text);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 20px;
  margin: 0;
}

.kalt-components-slider__button {
  align-items: center;
  align-self: flex-start;
  background: var(--wp--custom--color--primary);
  color: #fff;
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 1px;
  line-height: 24px;
  min-height: 45px;
  padding: 10px 34px;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.kalt-components-slider__button:hover,
.kalt-components-slider__button:focus {
  background: var(--wp--custom--color--button-active);
  color: #fff;
  outline: none;
  transform: translateY(-1px);
}

.kalt-components-slider__media {
  min-width: 0;
}

.kalt-components-slider__image {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.kalt-components-slider__image--placeholder {
  background: #e1e6e7;
}

button.kalt-components-slider__arrow,
button.kalt-components-slider__arrow:hover,
button.kalt-components-slider__arrow:focus {
  align-items: center;
  background: var(--wp--custom--color--primary);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition:
    background-color 0.25s ease,
    opacity 0.25s ease;
  width: 34px;
  z-index: 3;
  min-height: 0;
  min-width: 0;
}

button.kalt-components-slider__arrow:hover,
button.kalt-components-slider__arrow:focus {
  background: var(--wp--custom--color--button-active);
  outline: none;
}

button.kalt-components-slider__arrow.swiper-button-disabled {
  cursor: default;
  opacity: 0.45;
}

button.kalt-components-slider__arrow--prev {
  left: -52px;
}

button.kalt-components-slider__arrow--next {
  right: -52px;
}

@media (max-width: 1279px) {
  .kalt-components-slider__tabs {
    gap: 12px;
    max-width: 754px;
    padding: 0 40px;
  }

  .kalt-components-slider__stage {
    padding: 0 40px 55px;
  }

  .kalt-components-slider__card {
    min-height: 407px;
  }

  .kalt-components-slider__copy {
    padding: 33px;
  }

  button.kalt-components-slider__arrow {
    top: auto;
    transform: none;
  }

  button.kalt-components-slider__arrow--prev {
    bottom: 0;
    top: auto !important;
    left: calc(50% - 41px);
    transform: none !important;
  }

  button.kalt-components-slider__arrow--next {
    bottom: 0;
    top: auto !important;
    right: calc(50% - 41px);
    transform: none !important;
  }
}

@media (max-width: 781px) {
  .kalt-components-slider {
    padding: 20px 0 30px;
  }

  .kalt-components-slider__header {
    padding: 0 20px 14px;
  }

  .kalt-components-slider__heading {
    font-size: 32px;
    line-height: 38px;
  }

  .kalt-components-slider__tabs {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 188px));
    margin-bottom: 30px;
    max-width: 388px;
    padding: 0 20px;
  }

  .kalt-components-slider__tab:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 188px;
    width: 100%;
  }


  .kalt-components-slider__card {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .kalt-components-slider__copy {
    gap: 34px;
    padding: 30px 20px;
  }

  .kalt-components-slider__copy-inner {
    gap: 13px;
    max-width: none;
  }

  .kalt-components-slider__title {
    font-size: 26px;
    line-height: 32px;
  }

  .kalt-components-slider__media {
    margin-top: 30px;
  }
  .kalt-components-slider__stage {
        padding: 0 20px 55px;
    }

  .kalt-components-slider__media,
  .kalt-components-slider__image,
  .kalt-components-slider__image--placeholder {
    aspect-ratio: 1 / 1;
  }

  button.kalt-components-slider__arrow--prev {
    left: calc(50% - 41px);
  }

  button.kalt-components-slider__arrow--next {
    right: calc(50% - 41px);
  }
}
