@charset "UTF-8";
.news-teaser {
  border: solid 1px #ccc;
  display: flex;
  flex-direction: column;
  max-width: 452px;
  height: 430px;
  justify-content: space-between;
}
.news-teaser__image {
  overflow: hidden;
  height: 45%;
  flex-shrink: 0;
}
.news-teaser__image img {
  display: block;
  transform: scale(1, 1);
  transform-origin: center;
  transition: 0.75s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-teaser__body {
  margin-bottom: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-teaser__content {
  height: 55%;
  padding: 16px;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: space-between;
  color: #555;
}
.news-teaser__title {
  font-size: 100%;
  margin-bottom: 12.8px;
  line-height: 1.2;
  color: #000;
}
.news-teaser__footer {
  border-top: solid 1px #ccc;
  padding-top: 20px;
  margin-top: auto;
}
.news-teaser__footer a {
  float: right;
  color: #e94347;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
}
.news-teaser__footer a::after {
  content: "❯";
  margin-left: 5px;
  line-height: 0;
  font-weight: normal;
}
.news-teaser__footer a:hover {
  color: #c8171c;
}
.news-teaser__footer a.focus-visible {
  outline: none;
  box-shadow: 0 0 1px 1px #e94347;
}
.news-teaser:hover img {
  transform: scale(1.1, 1.1);
}
.news-teaser.lt-sm .news-teaser__image {
  height: 40%;
}
.news-teaser.lt-sm .news-teaser__content {
  height: 60%;
}

/*# sourceMappingURL=news-teaser.css.map */
