.news-teaser {
  display: flex;
  max-width: 300px;
  min-height: 370px;
  flex-direction: column;
  align-items: center;
  border-radius: 3px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  background-color: #fff;
}
.news-teaser:hover {
  text-decoration: none;
}
.news-teaser:hover .news-teaser__title {
  text-decoration: underline;
}
.news-teaser__content {
  padding: 0.5rem 1rem 61px 1rem;
}
.news-teaser__date {
  color: var(--color-primary--1);
  font-size: 13px;
  font-weight: 700;
}
.news-teaser__link {
  position: absolute;
  right: 0;
  bottom: 0;
}
.news-teaser__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 14px;
  line-height: 150%;
}
.news-teaser__text p {
  font-size: 14px;
  line-height: 150%;
  margin: 0;
}
.news-teaser__link span {
  background-color: var(--color-primary--1);
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border-radius: 60px 0 0 0;
  padding: 21px 10px 11px 20px;
  border-bottom-right-radius: 3px;
}
.news-teaser__link span::after {
  content: '';
  width: 25px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('../../images/arrow_white.svg');
  display: inline-block;
}


.news-teaser img {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

@media all and (min-width : 955px) {
    .news-teaser {
      max-width: 372px;
      min-height: 442px;
    }
}
