.teasers {
  margin-top: 2.5rem;
}
.teasers__title {
  text-align: center;
  border-top: none;
  padding-top: 0;
  margin: 2rem 0;
}
.teaser-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -15px;
}
@media screen and (min-width: 70em) {
  .teaser-list {
    margin: 0 -2rem;
  }
}
.teaser-list-item {
  padding: 0 15px 2rem;
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  margin-top: 0;
}
@media screen and (min-width: 35em) {
  .teaser-list-item {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 60em) {
  .teaser-list-item {
    flex-basis: 33.33%;
    max-width: 33.33%;
  }
}
@media screen and (min-width: 70em) {
  .teaser-list-item {
    padding: 0 1.75rem 3.5rem;
  }
}
.teaser-list-item__link {
  background-color: white;
  text-align: center;
  text-decoration: none;
  color: black;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-bottom: none;
}
.teaser-list-item__link:hover,
.teaser-list-item__link:focus {
  color: white;
  background-color: #2B5F46;
}
.teaser-list-item__image {
  margin-top: 0;
  flex: 0 0 auto;
}
.teaser-list-item__content {
  order: 2;
  width: 100%;
  padding: 2rem;
  flex: 0 0 auto;
  font-family: 'Montserrat', "Trebuchet MS", Verdana, sans-serif;
  font-weight: normal;
  font-weight: 400;
}
.teaser-list-item__title {
  text-decoration: underline;
  margin: 0 0 1rem;
  font-family: 'Montserrat', "Trebuchet MS", Verdana, sans-serif;
  font-weight: bold;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  padding-top: 0;
  border-top: none;
}
.teaser-list-item__abstract {
  margin: 0;
  font-family: 'leitura-news-n3', 'leitura-news', 'Georgia', serif;
  font-weight: 400;
}
.teaser-list-item__tags {
  font-size: 1rem;
  margin: 0;
  font-family: 'leitura-news-n3', 'leitura-news', 'Georgia', serif;
  font-weight: 400;
  padding-bottom: 0.7rem;
}
@media screen and (min-width: 60em) {
  .teaser-list-item.Half {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.teaser-list-item.Half .teaser-list-item__content {
  max-width: 22rem;
  margin: 0 auto;
}
@media screen and (min-width: 35em) {
  .teaser-list-item.Full {
    flex-basis: 100%;
    max-width: 100%;
  }
  .teaser-list-item.Full .teaser-list-item__link {
    flex-direction: row;
  }
  .teaser-list-item.Full .teaser-list-item__content,
  .teaser-list-item.Full .teaser-list-item__image {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .teaser-list-item.Full .teaser-list-item__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 2px solid white;
    text-align: left;
  }
  .teaser-list-item.Full .teaser-list-item__image {
    border-right: 2px solid white;
  }
  .teaser-list-item.Full .teaser-list-item__image img {
    object-fit: cover;
    display: block;
    height: 100%;
    width: 100%;
  }
}
@media screen and (min-width: 50em) {
  .teaser-list-item.Full .teaser-list-item__content {
    padding: 1.5rem 3rem;
  }
}
.teaser-list-item--special .teaser-list-item__link {
  background-color: #a2cecf;
}
.teaser-list-item--special .teaser-list-item__link:hover,
.teaser-list-item--special .teaser-list-item__link:focus {
  background-color: #207778;
}
.teaser-list-item--special .teaser-list-item__title {
  font-size: 1.25rem;
  text-transform: uppercase;
}
@media screen and (min-width: 50em) {
  .teaser-list-item--special .teaser-list-item__title {
    font-size: 1.625rem;
  }
}
.teaser-list-item--special .teaser-list-item__abstract {
  font-size: 1.25rem;
  line-height: normal;
}
.teaser-list-item .historic {
  background-color: #2B5F46;
  padding: 3px;
  color: white;
  font-size: 1rem;
  margin-bottom: 5px;
}
.teaser-list.owl-carousel {
  margin: 0 -15px 3rem;
  position: relative;
  width: auto;
}
@media screen and (min-width: 35em) {
  .teaser-list.owl-carousel {
    margin: 0 0 3rem;
  }
}
.teaser-list.owl-carousel .owl-stage-outer {
  margin: 0;
}
.teaser-list.owl-carousel .owl-stage {
  display: flex;
}
.teaser-list.owl-carousel .owl-item {
  margin-top: 0;
  display: flex;
  flex-shrink: 0;
  opacity: .7;
  transform: scale(1, 0.9);
  transition: transform 0.2s ease-in-out;
}
.teaser-list.owl-carousel .owl-item.active {
  opacity: 1;
  transform: scale(1, 1);
}
.teaser-list.owl-carousel .teaser-list-item {
  max-width: none;
  padding: 0;
  width: 100%;
  flex-basis: 100%;
}
.teaser-list.owl-carousel .owl-nav {
  top: 0;
  width: 100%;
}
.teaser-list.owl-carousel .owl-nav .owl-prev,
.teaser-list.owl-carousel .owl-nav .owl-next {
  background-color: #2B5F46;
  color: white;
  position: absolute;
  top: 50%;
  margin-top: -2.5rem;
  height: 5rem;
  width: 2rem;
  text-indent: -999em;
}
@media screen and (min-width: 50em) {
  .teaser-list.owl-carousel .owl-nav .owl-prev,
  .teaser-list.owl-carousel .owl-nav .owl-next {
    margin-top: -3.8rem;
    height: 7.6rem;
    width: 3rem;
  }
}
.teaser-list.owl-carousel .owl-nav .owl-prev:before,
.teaser-list.owl-carousel .owl-nav .owl-next:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(/UI/arrow-left.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 18px;
}
.teaser-list.owl-carousel .owl-nav .owl-prev:hover,
.teaser-list.owl-carousel .owl-nav .owl-next:hover,
.teaser-list.owl-carousel .owl-nav .owl-prev:focus,
.teaser-list.owl-carousel .owl-nav .owl-next:focus {
  background-color: #4d9695;
}
.teaser-list.owl-carousel .owl-nav .owl-prev {
  left: 0;
}
@media screen and (min-width: 50em) {
  .teaser-list.owl-carousel .owl-nav .owl-prev {
    left: -1.5rem;
  }
}
.teaser-list.owl-carousel .owl-nav .owl-next {
  right: 0;
}
@media screen and (min-width: 50em) {
  .teaser-list.owl-carousel .owl-nav .owl-next {
    right: -1.5rem;
  }
}
.teaser-list.owl-carousel .owl-nav .owl-next:before {
  transform: rotate(180deg);
}
.teaser-list.owl-carousel .owl-dots {
  top: -3rem;
  position: relative;
}
.teaser-list.owl-carousel .owl-dots,
.teaser-list.owl-carousel .owl-dot {
  margin-top: 0;
}
.teaser-more {
  text-align: center;
  margin-top: 0;
  margin-bottom: 5rem;
}
.teaser-more__btn {
  background-color: #2B5F46;
  border: none;
  color: white;
  padding: .75rem 1.5rem;
  font-size: 1.5rem;
  font-family: 'Montserrat', "Trebuchet MS", Verdana, sans-serif;
  font-weight: normal;
  font-weight: 400;
  display: inline-block;
}
@media screen and (max-width: 34.9375em) {
  .teaser-more__btn {
    font-size: 1.25rem;
  }
}
.teaser-more__btn:hover,
.teaser-more__btn:focus {
  color: white;
  background-color: #207778;
}
.teaser-more__btn svg {
  fill: white;
  width: 20px;
  height: 14px;
  margin-right: .5rem;
  margin-bottom: .1rem;
}
.teaser-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.teaser-filter-item {
  margin-top: 0;
}
.teaser-filter-item__select-wrapper {
  border: 2px solid #2B5F46;
  display: flex;
  position: relative;
  margin: 0 .75rem 1rem;
}
.teaser-filter-item__select-wrapper:before,
.teaser-filter-item__select-wrapper:after {
  content: "";
  position: absolute;
  right: .75rem;
  width: 1.125rem;
  height: 1rem;
  background-image: url(/UI/icon-arrowDown.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.teaser-filter-item__select-wrapper:before {
  bottom: .25rem;
}
@media screen and (min-width: 50em) {
  .teaser-filter-item__select-wrapper:before {
    bottom: .45rem;
  }
}
.teaser-filter-item__select-wrapper:after {
  top: .25rem;
  transform: rotate(180deg);
}
@media screen and (min-width: 50em) {
  .teaser-filter-item__select-wrapper:after {
    top: .45rem;
  }
}
.teaser-filter-item__select {
  -webkit-appearance: none;
  padding: .5rem 2.5rem .5rem 1rem;
  border: none;
  width: 100%;
  font-family: 'Montserrat', "Trebuchet MS", Verdana, sans-serif;
  font-weight: normal;
  font-weight: 400;
  font-size: 1rem;
  color: #2B5F46;
}
@media screen and (min-width: 50em) {
  .teaser-filter-item__select {
    font-size: 1.25rem;
  }
}
