/**
 * Article Teaser
 */

.article-teaser {
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  background: var(--color-white);
  display: flex;
  height: 100%;
  color: var(--color-neutral-dark);
  flex-direction: column;
  max-width: 307px;
}
.article-teaser:hover {
  text-decoration: none;
}
.article-teaser__content {
  padding: 1rem 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.article-teaser__date {
  color: var(--color-primary);
  margin: 0;
}
.article-teaser__title {
  margin: 0.5rem 0;
  font-size: var(--title-s);
}
.article-teaser__text {
  font-size: var(--text-m);
  font-weight: 500;
}
.article-teaser__more-wrapper {
  margin-top: auto;
  padding: 1.5rem 2rem 2rem;
  display: flex;
}
.article-teaser__more {
  transition: 0.1s;
  display: inline-block;
  text-indent: -999px;
  overflow: hidden;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  background-color: var(--color-primary-xlight);
  background-image: url("../../images/teaser/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
}
.article-teaser:hover .article-teaser__more {
  background-color: var(--color-primary-dark);
  background-image: url("../../images/teaser/arrow-white.svg");
}

/**
 * Extended
 */


@media all and (min-width: 500px) {
  .article-teaser--extended {
    max-width: 652px;
  }
}
