/* Full image compositions in homepage content; the approved hero stays independent. */
#klima-zentrum-home .kzh-service-card:nth-child(-n + 3) {
  --service-image-ratio: 16 / 9;
}
#klima-zentrum-home .kzh-service-image {
  aspect-ratio: var(--service-image-ratio, 3 / 2);
  background: #f1f4f5;
}
#klima-zentrum-home .kzh-service-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
  transition: none;
}
#klima-zentrum-home .kzh-person-photo > img,
#klima-zentrum-home .kzh-feature-image img,
#klima-zentrum-home .kzhr-why-photos img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
#klima-zentrum-home .kzh-person-photo > img {
  border-radius: 9px 9px 0 0;
}
#klima-zentrum-home .kzh-person-photo figcaption {
  position: static;
  margin: 0;
  border: 0;
  border-radius: 0 0 9px 9px;
  background: #102231;
  backdrop-filter: none;
}
@media (min-width: 701px) and (max-width: 960px) {
  #klima-zentrum-home .kzh-service-card:nth-child(-n + 3) {
    --service-image-ratio: 3 / 2;
  }
}
@media (max-width: 700px) {
  #klima-zentrum-home .kzh-service-image {
    aspect-ratio: auto;
  }
  #klima-zentrum-home .kzh-service-image img {
    height: auto;
  }
}
