.px-product-teaser {
  position: relative;
  max-width: var(--maxWidthBig);
  width: var(--baseWidth);
  margin-left: auto;
  margin-right: auto;
}
.px-product-teaser-inner {
  display: flex;
  gap: 147px;
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 1400px) {
  .px-product-teaser-inner {
    gap: 100px;
  }
}
@media all and (max-width: 1200px) {
  .px-product-teaser-inner {
    gap: 45px;
  }
}
@media all and (max-width: 1024px) {
  .px-product-teaser-inner {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
}
.px-product-teaser-inner .splide__arrow {
  border: 1px solid var(--main-color);
  width: 2.1em;
  height: 2.1em;
  opacity: 1;
  background: none;
}
.px-product-teaser-inner .splide__arrow--prev {
  left: -3em;
}
.px-product-teaser-inner .splide__arrow--next {
  right: -3em;
}
.px-product-teaser-inner .splide__arrow svg {
  fill: var(--main-color);
  width: 1.1em;
  height: 1.1em;
}
@media all and (max-width: 1200px) {
  .px-product-teaser-inner .splide__arrow {
    width: 1.7em;
    height: 1.8em;
  }
  .px-product-teaser-inner .splide__arrow--prev {
    left: -2.2em;
  }
  .px-product-teaser-inner .splide__arrow--next {
    right: -2.2em;
  }
  .px-product-teaser-inner .splide__arrow svg {
    width: 0.8em;
    height: 0.8em;
  }
}
.px-product-teaser .col.content {
  width: 24%;
}
@media all and (max-width: 1400px) {
  .px-product-teaser .col.content {
    width: 28%;
  }
}
@media all and (max-width: 1200px) {
  .px-product-teaser .col.content {
    width: 27%;
  }
}
.px-product-teaser .col.slider {
  flex: 1;
  min-width: 0;
}
@media all and (max-width: 1024px) {
  .px-product-teaser .col.content, .px-product-teaser .col.slider {
    width: 100%;
    flex: 1;
  }
}
.px-product-teaser .teaser-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.px-product-teaser .teaser-item__image {
  height: 157px;
}
@media all and (max-width: 640px) {
  .px-product-teaser .teaser-item__image {
    height: 195px;
  }
}
.px-product-teaser .teaser-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.px-product-teaser .teaser-item__image .image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #f0f0f0;
  border: 1px dashed #ccc;
}
.px-product-teaser .teaser-item__content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  gap: clamp(0.625rem, 0.4560810811rem + 0.8445945946vw, 1.25rem);
}
.px-product-teaser .teaser-item__content .text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.px-product-teaser .teaser-item__content .text .title {
  color: var(--fontColor);
}
.px-product-teaser .teaser-item__content .text .excerpt {
  margin-top: 0;
}
.px-product-teaser .teaser-item__content .teaser-button {
  margin-top: auto;
}
.px-product-teaser .teaser-item__content .teaser-button .borderless-btn {
  color: var(--fontColor);
}
.px-product-teaser .teaser-item__content .teaser-button .borderless-btn:hover {
  color: var(--main-color);
}
.px-product-teaser .splide__pagination {
  margin-top: 30px;
  display: flex;
  padding: 0;
  list-style-type: none;
  position: relative;
}
.px-product-teaser .splide__pagination li {
  flex-grow: 1;
}
.px-product-teaser .splide__pagination__page {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  opacity: 1;
  height: 3px;
  background-color: var(--extraLightGray);
  transition: background-color 0.3s ease;
}
.px-product-teaser .splide__pagination__page.is-active {
  background-color: var(--main-color);
  transform: scale(1);
}

.editor-styles-wrapper .px-product-teaser .splide {
  visibility: visible !important;
}
.editor-styles-wrapper .px-product-teaser .splide .splide__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}