/* latest */
.news.-latest {
  grid-column: span 5;
}

.news.-latest .article__text {
  background: rgb(var(--c-neutral-lighter));
  padding: 2rem;
}

.news.-latest .article__image {
  padding-bottom: 120px;
}

.news.-latest .article__teaser {
  display: none;
  color: rgb(var(--c-neutral-dark));
}

.no-touch .article__link:hover .article__teaser {
  display: block;
}

.news.-latest .article__image::after {
  opacity: 0;
  content: '';
  background-color: rgba(var(--c-primary), 0.6);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease 0s;
  -webkit-transition: opacity 0.3s ease 0s;
  -moz-transition: opacity 0.3s ease 0s;
}

.no-touch .news.-latest .article__link:hover .article__image::after {
  opacity: 1;
}

.news.-latest .article__text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.slider__iteminner {
  position: relative;
}

.tabs__content .news.-latest > .grid__main {
  margin-left: -4vw;
  margin-right: -4vw;
}

.content__bottom > .frame:nth-child(odd) .news.-latest .article__text,
.content > .frame:nth-child(2n) .news.-latest .article__text {
  background: rgb(var(--c-neutral-lightest));
}

.news.-latest .grid__main {
  display: grid;
}

.news.-latest .article__more {
  margin-top: 0;
}

.news.-latest .article__teaser {
  margin: 1rem 0;
}

/* list */
.news.-list .article {
  margin-bottom: 3rem;
}

/* general */
.article__more {
  display: block;
  margin-top: 1rem;
  color: rgb(var(--c-secondary));
  font-weight: var(--f-weight-sb);
}

.article__footer {
  padding-top: var(--g-gap-s);
  border-top: 1px solid rgb(var(--c-neutral-lighter));
}

.media__item {
  margin-bottom: var(--g-gap);
}

.media__item:last-child {
  margin-bottom: 0;
}

.media__image {
  position: relative;
  overflow: hidden;
}

.paginator__previous a::after {
  content: '\f053';
  font-family: 'FaLight', sans-serif;;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  height: auto;
  line-height: normal;
  vertical-align: baseline;
  font-size: var(--f-size);
}

.paginator__next a::after {
  content: '\f054';
  font-family: 'FaLight', sans-serif;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  height: auto;
  line-height: normal;
  vertical-align: baseline;
  font-size: var(--f-size);
}

.paginator__item {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px 5px 0;
  background: rgb(var(--c-neutral-lighter));
}

.paginator__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: rgb(var(--c-neutral-dark));
  font-weight: var(--f-weight-n);
}

.paginator__list {
  display: flex;
  flex-wrap: wrap;
}

.no-touch .paginator__item:hover,
.paginator__item.-current {
  background: rgb(var(--c-primary));
  color: rgb(var(--c-neutral-lightest));
}

.no-touch .paginator__item:hover a {
  color: rgb(var(--c-neutral-lightest));
}

.article__backlink .font__button::before {
  content: '\f323';
  font-family: "FaSolid", sans-serif;
  font-size: var(--f-size-s-1);
  margin-right: 0.4rem;
}

.article__backlink .font__button::after {
  display: none;
}

/* newsticker */
.news.-ticker {
  grid-column: span 5;
}

.news.-ticker > div {
  display: block;
}

.ticker__news {
  padding: 0;
  background: rgb(var(--c-primary));
  height: 60px;
  line-height: 60px;
}

.ticker__title a {
  margin-right: 3em;
  white-space: nowrap;
  font-weight: var(--f-weight-b);
  color: rgb(var(--c-neutral-lightest));
}

.ticker__item:not(:last-child) a::after {
  content: '|';
  padding-left: 3em;
}

.ticker__title a.nolink {
  cursor: default;
}

.tickercontainer {
  width: 100%;
  height: 60px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.tickercontainer .mask {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
}

.ticker__inner {
  position: relative;
  left: 100%;
  margin: 0;
  padding: 0;
  display: flex;
}

.ticker__inner .ticker__item {
  float: left;
  margin: 0;
  padding: 0;
}

.news.-ticker .ticker__item {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}

/* =============================================================================
   Media Queries
   ========================================================================== */

@media (min-width: 640px) {
  [data-ce-columns="6"] .gallery__item {
    grid-column: span 4;
  }

  .news.-single .article__media,
  .news.-list .article__image {
    grid-column: span 4;
  }

  .news.-single .article__extra,
  .news.-single .article__text,
  .news.-list .article.-withimage .article__text {
    grid-column: span 8;
  }
}

@media (min-width: 1580px) {
  .t3ddy .news.-latest > .grid__main {
    grid-template-columns: 0 50px 1440px 50px 0;
    margin-left: -50px;
    margin-right: -50px;
  }
}