/*!*****************************************************************************************************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!../node_modules/postcss-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/content-teaser/content-teaser.scss ***!
  \*****************************************************************************************************************************************************************************************************************/
/** GLOBALS **/
/************
/** VARIABLES
/****************************************/
/*
$grids: (
    'default': $mobile_base,
    'switches': (
        $mobile_switch: $mobile_base,
        $tablet_switch: $tablet_base,
        $max_switch: $max_base
    ),
    'definitions': (
        $mobile_base: (
            'columns': 8,
            'column': 44,
            'gutter': 14,
            'fix': false
        ),
        $tablet_base: (
            'columns': 12,
            'column': 56,
            'gutter': 22,
            'fix': false
        ),
        $max_base: (
            'columns': 12,
            'column': 139,
            'gutter': 54,
            'fix': true
        )
    )
);
*/
/* EASING */
/* Font settings */
/************
/** COLOR VARIABLES
/****************************************/
/* **************************** */
/* Pimcore-editmode used colors */
/* **************************** */
/* **************************** */
/************
/** DEFINITION OF OWN MIXINS
/****************************************/
/* stylelint-disable */
.content-teaser {
  background-color: var(--content-teaser-background-color, white);
  border-radius: var(--border-radius-l);
  box-shadow: var(--box-shadow-l);
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.content-teaser__image {
  border-radius: var(--border-radius-l) var(--border-radius-l) 0 0;
  aspect-ratio: 4/3;
  background-color: var(--content-teaser-image-background-color, #f1f1f1);
  display: block;
  overflow: hidden;
}
.content-teaser__image .image {
  width: 100%;
  max-width: none;
}

.content-teaser__content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (min-width: 1024px) {
  .content-teaser__content {
    padding: 32px;
  }
}

.content-teaser__excerpt {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  flex-grow: 1;
  margin-top: 16px;
}

.content-teaser__headline {
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 400;
  line-height: 120%;
  font-size: 1.5rem;
  color: var(--content-teaser-headline-color);
}
@media only screen and (min-width: 768px) {
  .content-teaser__headline {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .content-teaser__headline {
    font-size: 2.25rem;
  }
}

.content-teaser__action {
  margin-top: 40px;
}

.content-teaser__link {
  display: block;
  text-decoration: none;
  height: 100%;
}
.content-teaser__link:focus-visible {
  outline-offset: 4px;
  outline-color: var(--textlink-foreground-color);
  outline-style: solid;
  outline-width: 2px;
  border-radius: var(--border-radius-l);
}
@media (hover: hover) {
  .content-teaser__link:hover {
    --textlink-foreground-color: var(--textlink-foreground-color-hover);
  }
  .content-teaser__link:hover .textlink svg:last-child {
    transform: translateX(var(--textlink-arrow-translate));
  }
}
