@charset "UTF-8";
/*
@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;
}
*/
.quote-container {
  --p-font-family: var(--tertiary-font);
  --p-font-size: clamp(1.5rem, 3vw, 2.2rem);
  --p-color: white;
  --p-margin: 0 auto 16px;
  --p-line-height: 1.5;
  --p-font-weight: 400;
  background: var(--primary-color);
  padding: var(--group-padding-top) var(--global-padding);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-container::before {
  content: "“";
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--secondary-font);
  font-size: 15rem;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}
.quote-container blockquote {
  margin: 0;
}
.quote-container cite {
  font-family: var(--primary-font);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1.87px;
  text-transform: uppercase;
}