/*
@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;
}
*/
html,
body {
  --p-font-family: var(--primary-font);
  --p-font-size: 17px;
  --p-font-weight: 400;
  --p-line-height: 1.6;
  --p-color: var(--text-color-muted);
  --p-margin: 0;
  --paragraph-not-last-margin-bottom: var(--space-sm);
}

p.eyebrow {
  --p-font-family: var(--mono-font);
  --p-font-size: 12.5px;
  --p-font-weight: 500;
  --p-line-height: 1.6;
  --p-color: var(--text-color-muted);
  text-transform: uppercase;
  letter-spacing: 1.75px;
}

p.lead {
  --p-font-size: 16.5px;
  --p-line-height: 1.6;
  --p-color: var(--text-color-muted);
}

p.meta {
  --p-font-family: var(--mono-font);
  --p-font-size: 12.5px;
  --p-color: var(--text-color-faint);
  --p-line-height: 1.6;
}

p.meta.footnote {
  --p-font-size: 12px;
  margin-top: 14px;
  text-transform: none;
  letter-spacing: normal;
}

p.meta.footnote.sand {
  --p-color: var(--secondary-color-text);
  margin-top: 16px;
}

.paragraph-container.section-intro-container {
  --paragraph-not-last-margin-bottom: 34px;
}
.paragraph-container.section-intro-container p.lead {
  max-width: 638px;
}

.paragraph-container.intro-tight-container {
  --paragraph-not-last-margin-bottom: 30px;
}

p a:not([class]) {
  font-weight: 600;
  color: var(--primary-color-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
p a:not([class]):hover {
  color: var(--primary-color);
}

p.section-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-top: var(--space-md);
  --p-font-size: 15.5px;
  --p-font-weight: 600;
  --p-line-height: 1.6;
}
p.section-footer a {
  color: var(--primary-color-dark);
  text-decoration: none;
}
p.section-footer a:hover {
  text-decoration: underline;
}
p.section-footer .hinweis {
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--secondary-color-text);
}

@media (max-width: 768px) {
  p.lead {
    --p-font-size: 17px;
  }
  p.eyebrow {
    letter-spacing: 1.2px;
  }
}

/*# sourceMappingURL=paragraph.css.map*/