article {
  line-height: 1;
  position: relative;
  cursor: pointer;
}
article p {
  margin-bottom: 0;
}
article:hover .text-formatted span {
  text-decoration: underline;
}
article .teaser-image {
  overflow: hidden;
  margin-bottom: 1rem;
}
article .teaser-image img {
  height: auto;
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
article:hover .teaser-image img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
article .field--name-field-editorial-type {
  color: #23a07d;
  font-weight: bold;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
article .field--name-field-editorial-type span {
  color: #000000;
}
article.text-over-image .teaser-content {
  position: absolute;
  bottom: 10%;
  color: #ffffff;
  padding: 0 1rem;
}
article.text-over-image .teaser-content .field--name-field-editorial-type {
  color: #ffffff;
}
article.text-over-image .teaser-content .field--name-field-editorial-type span {
  display: none;
}
article #second-part {
  opacity: 0;
  transition: opacity 0.5s ease-in-out, max-height 0.5s ease-in-out;
  margin-bottom: 0;
  overflow: hidden;
  max-height: 0;
}
article #second-part.expanded {
  opacity: 1;
  transition: opacity 0.5s ease-in-out, max-height 0.5s ease-in-out;
  max-height: 500px;
  margin-bottom: 0;
}
article #ellipsis {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
article #ellipsis.expanded {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 1399px) {
  article #second-part {
    margin-bottom: 0;
    max-height: 0;
  }
}
