/*
@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: var(--text-color);
  --p-font-size: 18px;
  --p-line-height: 1.4;
  --paragraph-not-last-margin-bottom: 25px;
}
@media (max-width: 1024px) {
  body,
html {
    --p-font-size: 16px;
  }
}
body .wp-block-group.alignwide > .wp-block-group__inner-container > .container,
html .wp-block-group.alignwide > .wp-block-group__inner-container > .container {
  --container-margin-left: 0;
  --container-margin-right: 0;
}
body .h3-style.contact-phone,
body .h3-style.contact-mail,
html .h3-style.contact-phone,
html .h3-style.contact-mail {
  padding-left: 50px;
  position: relative;
}
body .h3-style.contact-phone:before,
body .h3-style.contact-mail:before,
html .h3-style.contact-phone:before,
html .h3-style.contact-mail:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: var(--font-awesome-font);
  color: var(--text-color);
  font-size: var(--h3-font-size);
}
body .h3-style.contact-phone::before,
html .h3-style.contact-phone::before {
  content: "\f095";
}
body .h3-style.contact-mail::before,
html .h3-style.contact-mail::before {
  content: "\f0e0";
}