/*
@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 {
  --button-font-size: var(--p-font-size);
  --button-line-height: 1.2;
  --button-font-weight: 700;
  --button-border-radius: 0;
  --button-background-color: var(--primary-color);
  --button-border: none;
  --button-padding: 15px 50px;
  --buttons-margin-left: auto;
  --buttons-margin-right: auto;
  --button-transition: none;
}
body .wp-block-button,
html .wp-block-button {
  font-weight: 700;
}
@media (max-width: 580px) {
  body,
html {
    --button-padding: 10px 40px;
  }
}
body .button-container:hover,
html .button-container:hover {
  --button-color: var(--primary-color);
  --button-background-color: #000;
}