.product-teaser {
  cursor: pointer;
}

.product-teaser.swiper-slide {
  width: fit-content;
  height: auto;
  align-self: stretch;
}

.product-teaser__content {
  display: flex;
  width: 100%;
  max-width: 288px;
  height: 100%;
  align-self: stretch;
  padding: 10px;
  flex-direction: column;
  align-items: center;

  border-radius: 20px;
  background: var(--color-primary--2);
  color: var(--color-neutral--1);
}

.product-teaser__image img {
  border-radius: 15px;
}

.product-teaser__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  align-self: stretch;
}


.product-teaser__texts {
  display: flex;
  padding: 10px;
  flex-direction: column;
  gap: 6px;
  align-self: stretch;
}

.product-teaser__title {
  font-size: 19px;
  font-weight: 600;
  line-height: 140%; /* 26.6px */
}

.product-teaser__separator {
  height: 1px;
  width: 100%;
  background-color: #C4C4C4;
}

.product-teaser__description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  align-self: stretch;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 21px */
  overflow: hidden;
}

.product-teaser__link {
  display: flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid var(--color-secondary--1);
  width: fit-content;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  margin-left: 7px;
}

.product-teaser__link:hover {
  background-color: var(--color-secondary--1);
  color: var(--color-white);
}

.product-teaser__learn-more {
  display: none;
}


@media all and (min-width:1024px) {
  .product-teaser__content {
    max-width: 336px;
  }
}
