
.article-teaser:hover {
  text-decoration: none;
}

.article-teaser__content {
  background-color: var(--tertary);
}
.article-teaser__image {
  max-width: 391px;
  /* max-height: 280px; */
}
.article-teaser__wrapper {
  padding: 2rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  min-height: 250px;
}
.article-teaser__wrapper::after {
  content: '';
  background-image: url('../../images/icons/arrow-rigt-primary.svg');
  width: 63px;
  height: 63px;
  display: block;
  transition: all .1s ease-in-out;
}
.article-teaser:hover .article-teaser__wrapper::after {
  transform: translateX(10px);
}
.article-teaser__title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 140%;
}
@media (min-width: 700px) {
}
