/*!*****************************************************************************************************************************************************************************************************************!*\
  !*** 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/product-teaser/product-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 */
.product-teaser {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-teaser__link {
  display: block;
  text-decoration: none;
}
.product-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) {
  .product-teaser__link:hover {
    --textlink-foreground-color: var(--textlink-foreground-color-hover);
  }
  .product-teaser__link:hover svg:last-child {
    transform: translateX(var(--textlink-arrow-translate));
  }
}

.product-teaser__image {
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
  width: 270px;
  height: 270px;
  flex-shrink: 0;
  position: relative;
  padding-top: 10px;
}
.product-teaser__image .eye-catcher {
  position: absolute;
  top: 0;
  right: 24px;
}
@media only screen and (min-width: 768px) {
  .product-teaser__image {
    width: 300px;
    height: 300px;
  }
}

.product-teaser__content {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
  flex-grow: 1;
  justify-content: space-between;
  gap: 16px 0;
}

.product-teaser__copy {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}

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

.product-teaser__subline {
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 1.125rem;
  line-height: 150%;
  color: var(--product-teaser-subline-color, grey);
}

.product-teaser--is-highlight {
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .product-teaser--is-highlight {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 0 16px;
  }
}
.product-teaser--is-highlight .product-teaser__content {
  text-align: center;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .product-teaser--is-highlight .product-teaser__content {
    text-align: left;
  }
}
