.news.-latest {
  padding: 0 40px;
  position: relative;

  --swiper-navigation-sides-offset: 0;
  --swiper-navigation-color: rgb(var(--c-neutral-lightest));

  & .swiper-slide {
    height: auto;
    width: 100%;
  }

  & .article {
    background: rgb(var(--c-neutral-lightest));
    height: calc(100% - 20px);
    box-shadow: 3px 3px 7px 0 rgba(var(--c-neutral-darkest), 0.1);
    margin: 10px;
    position: relative;
  }

  & .article__text {
    box-sizing: border-box;
    padding: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgb(var(--c-neutral-lightest));
  }

  & .article__footer {
    display: none;
  }

  & .article__image {
    position: relative;
    overflow: hidden;
    margin-bottom: 6rem;

    &::after {
      font-family: "FaLight";
      content: "\f054";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 50px;
      height: 50px;
      text-align: center;
      line-height: 50px;
      font-size: 30px;
      background: rgb(var(--c-primary), 0.8);
      color: rgb(var(--c-neutral-lightest));
      opacity: 0;
      transition: opacity 0.3s ease;
    }
  }

  & .gallery__image {
    transition: all 0.4s ease;
  }

  & h3 {
    font-family: var(--f-family);
    color: rgb(var(--c-primary));
    text-transform: uppercase;
    font-size: var(--f-size-l-1);
  }

  & .headline.-small {
    margin-bottom: 0;
  }

  & .article__teaser p {
    color: rgb(var(--c-neutral-darker));
  }

  & .swiper-button-prev {
    left: 3.6rem;
    background-color: rgb(var(--c-primary), 0.8);
    padding: 2rem 1.5rem;
    top: 40%;
  }

  & .swiper-button-next {
    right: 3.6rem;
    background-color: rgb(var(--c-primary), 0.8);
    padding: 2rem 1.5rem;
    top: 40%;
  }
}

.content__right .news.-latest {
  & .article__image {
    margin-bottom: 6rem;
  }

  & h3 {
    font-size: var(--f-size-l-1);
  }
}

@media (hover: hover) {
  .news.-latest .swiper-button-next:hover,
  .news.-latest .swiper-button-prev:hover {
    --swiper-navigation-color: rgb(var(--c-neutral-lightest));
  }

  .news.-latest .article:hover {
    & .article__image::after {
      opacity: 1;
    }

    & .article__footer {
      height: 120px;
    }

    & .gallery__image {
      transform: scale(1.05);
      filter: blur(3px);
    }
  }

  .news.-latest .swiper-button-prev:hover,
  .news.-latest .swiper-button-next:hover {
    background-color: rgb(var(--c-secondary), 0.8);
  }
}

.news.-latest .grid__main {
  display: grid;
}

.grid__main .news.-latest.grid__main {
  margin-left: -4%;
  margin-right: -4%;
}

.news.-list .article {
  margin-bottom: 3rem;
}

.article__more {
  display: block;
  margin-top: 1rem;
}

.article__footer {
  padding-top: var(--g-gap-s);
}

.media__item {
  margin-bottom: var(--g-gap);
}

.media__item:last-child {
  margin-bottom: 0;
}

.media__image {
  position: relative;
  overflow: hidden;
}

.article__backlink .font__button::before {
  content: "\f323";
  font-family: "FaRegular", sans-serif;
  font-size: var(--f-size-s-2);
  margin-right: 0.4rem;
}

/* newsticker */
.news.-ticker {
  grid-column: span 5;
}

.news.-ticker {
  display: grid;
  background: rgb(var(--c-primary));
  border-top: 1px solid rgb(var(--c-neutral-lightest));
}

.ticker__header {
  display: none;
}

.ticker__items {
  display: inline-flex;
  white-space: nowrap;
  line-height: 45px;
  animation: marquee 15s linear infinite;
  padding-left: 100%;
}

@media (hover: hover) {
  .ticker__items:hover {
    animation-play-state: paused;
  }
}

.ticker__marquee {
  width: 100%;
  line-height: 45px;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}

.news .ticker__item a {
  margin-right: 6em;
  white-space: nowrap;
  color: rgb(var(--c-neutral-lightest));
}

.news .ticker__item a:hover {
  color: rgb(var(--c-neutral-lightest));
}

.news .ticker__item a.nolink {
  cursor: default;
}

/* =============================================================================
   Media Queries
   ========================================================================== */

@media (min-width: 400px) {
  [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;
  }

  .news.-ticker {
    grid-template-columns: 125px 1fr;
  }

  .ticker__header {
    display: block;
    color: rgb(var(--c-neutral-lightest));
    background-color: rgb(var(--c-secondary));
    padding: 0 0.5rem;
    text-align: center;
    text-transform: uppercase;
    height: 45px;
    line-height: 45px;
    font-family: var(--f-family-3);
    font-size: var(--f-size-l-1);
  }
}

@media (min-width: 640px) {
  .news.-latest {
    & .swiper-slide {
      margin-right: 20px;
      width: calc(50% - 10px);
    }

    & .article__footer {
      display: block;
      height: 0;
      transition: height 0.3s ease;
      overflow: hidden;
    }

    & .swiper-button-prev {
      left: 3.4rem;
    }

    & .swiper-button-next {
      right: 3.4rem;
    }
  }
}

@media (min-width: 800px) {
  .news.-list {
    display: block;

    & .f3-widget-paginator {
      grid-column: span 2;
    }
  }

  .news.-ticker {
    grid-template-columns: 160px 1fr;
  }
}

@media (min-width: 1024px) {
  .news.-latest {
    & .swiper-slide {
      width: calc(33.33% - 13px);
    }

    & .swiper-button-prev {
      left: 3.3rem;
    }

    & .swiper-button-next {
      right: 3.3rem;
    }
  }
}

@media (min-width: 1580px) {
  .news.-latest {
    padding: 0 60px;
    margin-right: -60px;
    margin-left: -60px;

    & .article__image {
      height: 310px;
    }

    & .swiper-button-prev {
      left: 4.4rem;
    }

    & .swiper-button-next {
      right: 4.4rem;
    }
  }
}
