.news.-latest {
  grid-column: span 5;
}

.news.-latest .article__text {
  padding: 2rem;
}

.news.-latest .slider__iteminner {
  background: rgb(var(--c-neutral-lighter));
}

.content > .frame:nth-child(2n) .news.-latest .slider__iteminner {
  background: rgb(var(--c-neutral-lightest));
}

.news.-latest .article__image {
  position: relative;
}

.news.-latest .article__image a::after {
  position: absolute;
  color: rgb(var(--c-neutral-lightest));
  top: 50%;
  text-align: center;
  opacity: 0;
  content: "\f061";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  cursor: pointer;
  transition: opacity 0.3s ease 0s;
  -webkit-transition: opacity 0.3s ease 0s;
  -moz-transition: opacity 0.3s ease 0s;
  background-color: rgb(var(--c-primary));
  height: 60px;
  width: 60px;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 34px;
  font-family: 'FaRegular', sans-serif;
}

.news.-latest .article__image a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease 0s;
  -webkit-transition: opacity 0.3s ease 0s;
  -moz-transition: opacity 0.3s ease 0s;
  background: rgba(var(--c-neutral-darkest), 0.6);
  border-bottom: 6px solid rgb(var(--c-primary));
  opacity: 0;
}

.news.-latest .article__image:hover a::before,
.news.-latest .article__image:hover a::after {
  opacity: 1;
}

.news.-latest .grid__main {
  display: grid;
}

.news.-list .article {
  margin-bottom: 3rem;
}

.article__more {
  display: block;
  margin-top: 1rem;
}

.article__more::after {
  content: '\f061';
  font-family: 'FaSolid',sans-serif;
  margin-left: 0.1rem;
}

.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-family: var(--f-family);
}

.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: "FaRegular", sans-serif;
  font-size: var(--f-size-s-2);
  margin-right: 0.4rem;
}

.article__backlink a::after {
  display: none;
}

/* newsticker */
.news.-ticker {
  grid-column: span 5;
}

.news.-ticker > div {
  display: block;
}

.ticker__news {
  padding: 0;
  background: rgb(var(--c-neutral-lightest));
  height: 60px;
  line-height: 60px;
  margin-left: 130px;
}

.ticker__header {
  background: rgb(var(--c-primary));
  color: rgb(var(--c-neutral-lightest));
  padding: 0;
  float: left;
  width: 130px;
  text-align: center;
  height: 60px;
  line-height: 60px;
  font-family: var(--f-family);
  font-weight: var(--f-weight-b);
  font-size: var(--f-size-l-2);
}

.ticker__title a {
  margin-right: 6em;
  white-space: nowrap;
  font-family: var(--f-family);
  font-weight: var(--f-weight-b);
}

.ticker__title a.nolink {
  cursor: default;
}

.tickercontainer { /* the outer div with the black border */
  width: 100%;
  height: 60px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
}

ul.ticker__inner { /* that's your list */
  position: relative;
  left: 100%;
  margin: 0;
  padding: 0;
  display: flex;
}

ul.ticker__inner li {
  float: left; /* important: display inline gives incorrect results when you check for elem's width */
  margin: 0;
  padding: 0;
}

.news.-ticker li {
  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__text {
    grid-column: span 8;
  }
}

@media (min-width: 800px) {
  .ticker__header {
    width: 160px;
  }
  .ticker__news {
    margin-left: 160px;
  }
}