/*
@include max($tablet) {
	height: 60px;
}
*/
/*
Beispiel:
@include default_text_specs(
    $css-variable-prepend: "kc-teaser-title",
    $font-weight: 700,
    $line-height: 1,
    $text-align: "center"
);
*/
/*
Beispiel:
@include default_h1_specs(
    $css-variable-prepend: "",
    $font-weight: 700,
    $line-height: 1,
    $text-align: "center"
);
*/
/*
Beispiel:
@include default_h2_specs(
    $css-variable-prepend: "",
    $font-weight: 700,
    $line-height: 1,
    $text-align: "center"
);
*/
/*
Beispiel:
@include css_variable_prepend(
    $property: "font-size",
    $prepend-string: 'kc-teaser-title',
    $default-value: 20px
);
*/
/*
@extend %transition;
*/
/*
@extend %transition-timing;
*/
/*
@include max($tablet) {
	height: 60px;
}
*/
.image-container.bildband-container {
  --image-margin: 0;
  --image-img-height: clamp(220px, 28vw, 400px);
  margin-top: 24px;
  margin-bottom: 8px;
}
.image-container.bildband-container figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.image-container.bildband-container img {
  width: 100%;
  height: clamp(220px, 28vw, 400px);
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.image-container.bildband-container figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  margin: 0;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--weiss);
  background: rgba(8, 31, 68, 0.85);
  padding: 7px 13px;
}

.karte-container .image-container.karte-bild-container {
  --image-margin: 0;
  --image-img-height: 100%;
}
.karte-container .image-container.karte-bild-container figure {
  margin: 0;
}
.karte-container .image-container.karte-bild-container {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy);
}
.karte-container .image-container.karte-bild-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s var(--weich);
}

.karte-container:hover .image-container.karte-bild-container img {
  transform: scale(1.05);
}

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