/*
@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;
}
*/
.ba-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--card-bg);
  border: 1px solid var(--rule-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.ba-buehne {
  position: relative;
  flex: 1 1 auto;
  aspect-ratio: 4/3;
  background: #edebe2;
}

.ba-schicht {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-bild {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.ba-platzhalter {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  font-family: var(--mono-font);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  color: var(--text-color-muted);
  background: #edebe2;
}

.ba-schicht-vorher {
  z-index: 1;
}

.ba-badge {
  position: absolute;
  top: 12px;
  padding: 4px 8px;
  border-radius: 3px;
  font-family: var(--mono-font);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  pointer-events: none;
}

.ba-badge-vorher {
  left: 12px;
  background: var(--text-color);
}

.ba-badge-nachher {
  right: 12px;
  z-index: 2;
  background: var(--primary-color);
}

.ba-linie {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  z-index: 2;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.ba-knopf {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: var(--white);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}
.ba-knopf::before, .ba-knopf::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 4.5px solid transparent;
  border-bottom: 4.5px solid transparent;
}
.ba-knopf::before {
  border-right: 5.5px solid var(--text-color);
}
.ba-knopf::after {
  border-left: 5.5px solid var(--text-color);
}

.ba-regler {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 100%;
  height: 56px;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
}

.ba-regler:focus-visible ~ .ba-knopf {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
}

.ba-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  padding: 14px 18px;
  border-top: 1px solid var(--rule-hairline);
  font-family: var(--mono-font);
  font-size: 12.5px;
  line-height: 20px;
  color: var(--text-color-muted);
}

.ba-ort {
  font-weight: 600;
  color: var(--text-color);
}

.ba-preis {
  font-weight: 600;
  color: var(--primary-color-dark);
}

/*# sourceMappingURL=before-after.css.map*/