/*
@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;
}
*/
body,
html {
  --heading-margin-bottom: 40px;
  --h1-font-size: 70px;
  --h1-line-height: 1.2;
  --h1-font-weight: 800;
  --h1-text-transform: none;
  --h2-font-size: 38px;
  --h2-font-weight: 800;
  --h2-text-transform: none;
  --h3-font-size: 30px;
  --h3-line-height: 1.2;
  --h3-font-weight: 800;
  --h3-text-transform: none;
}
@media (max-width: 1024px) {
  body,
html {
    --h1-font-size: 50px;
    --h2-font-size: 30px;
    --h3-font-size: 24px;
  }
}
@media (max-width: 580px) {
  body,
html {
    --h1-font-size: 40px;
    --h3-font-size: 20px;
  }
}