/*
@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 {
  --p-color: #555;
  --p-strong-color: var(--text-color);
  --p-font-size: 20px;
  --p-font-weight: 300;
  --p-line-height: 1.5;
  --paragraph-not-last-margin-bottom: var(--p-font-size);
}
@media (max-width: 580px) {
  body,
html {
    --p-font-size: 18px;
  }
}
body p strong,
html p strong {
  font-weight: 600;
  line-height: 1.7;
}