@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;
}
*/
body .buttons-container[sub-blocks="1"],
html .buttons-container[sub-blocks="1"] {
  --button-display: flex;
  --button-padding: 0;
  --button-background-color: transparent;
  --button-border: none;
  --button-color: var(--primary-color);
  --button-border-radius: 0;
  --button-font-family: var(--primary-font);
  --button-font-size: 0.82rem;
  --button-font-weight: 600;
  --button-line-height: 1;
  --button-white-space: nowrap;
  --button-transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --button-height: auto;
  --button-cursor: pointer;
  --button-text-decoration: none;
  --button-appearance: none;
}
body .buttons-container[sub-blocks="1"] .wp-block-button__link,
html .buttons-container[sub-blocks="1"] .wp-block-button__link {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-items: center;
  gap: 4px;
}
body .buttons-container[sub-blocks="1"] .wp-block-button__link::after,
html .buttons-container[sub-blocks="1"] .wp-block-button__link::after {
  content: "→";
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
body .buttons-container[sub-blocks="1"] .wp-block-button__link:hover::after,
html .buttons-container[sub-blocks="1"] .wp-block-button__link:hover::after {
  transform: translateX(4px);
}