/**
**  Official Font sizes
------------------------------- */
/**
** Line-heights
------------------------------- */
:host([variant=default]) {
  font-family: Frutiger-Light, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  font-weight: 400;
  display: block;
  font-size: var(--ux-text-font-size-normal);
  line-height: var(--ux-text-line-height-normal);
  margin-block-start: 1em;
  margin-block-end: 1em;
}
@media (min-width: 1440px) {
  :host([variant=default]) {
    font-size: 16px;
    line-height: 1.6;
  }
}

:host([variant=title]) {
  font-family: Frutiger-Roman, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  font-weight: 400;
  font-size: 20px;
}

:host([variant=teaser]) {
  font-family: Frutiger-Bold, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  font-weight: 400;
  color: #131313;
  font-size: 18px;
  line-height: 26px;
}
@media only screen and (width >= 1024px) {
  :host([variant=teaser]) {
    font-size: 20px;
  }
}

:host([strong]) {
  font-family: Frutiger-Bold, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  font-weight: 400;
  color: #393939;
}

:host([light]) {
  font-family: Frutiger-Light, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  font-weight: 400;
}

:host([big]) {
  font-size: 23px;
}

:host([variant=tiny]) {
  font-size: 13px;
  line-height: 1.6;
}