.teaser {
  background-color: var(--color-primary-x-light);
  border-radius: 20px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: ease all 150ms;
  height: 100%;
  min-width: 250px;
}
.teaser:hover {
  background-color: var(--color-primary--1);
  text-decoration: none;
}
.teaser:hover .teaser__title,
.teaser:hover .teaser__link,
.teaser:hover .teaser__description {
  color: var(--color-white);
}
.teaser__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
h3.teaser__title {
  font-weight: 700;
  font-size: var(--heading-size-s);
  font-family: var(--font--barlow);
  line-height: 140%;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: ease all 150ms;
}
.teaser__image {
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.teaser__image img{
  width: 100%;
  object-fit: cover;
  height: 234px;
}
.teaser__link {
  color: var(--color-secondary--1);
  font-weight: 700;
  font-family: var(--font--barlow);
  font-size: 16px;
  line-height: 160%;
  transition: ease all 150ms;
}
.teaser__description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  transition: ease all 150ms;
}
@media all and (min-width: 1000px){
  .teaser {
    max-width: 458.67px;
  }
  .teaser {
    padding: 2rem;
  }
  .teaser__link {
    font-size: 18px;
  }
}
