.news.-latest {
  padding: 0 40px;
  position: relative;

  --swiper-navigation-sides-offset: 0;
  --swiper-navigation-color: rgb(var(--c-neutral-darker));

  & .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), .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 {
    height: 0;
    transition: height 0.3s ease;
    overflow: hidden;
  }

  & .article__image {
    position: relative;
    overflow: hidden;
    margin-bottom: 9rem;

    &::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-light));
      border-radius: 25px;
      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-3);
    color: rgb(var(--c-primary));
  }
}

.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-primary));
  }

  .news.-latest .article:hover {
    & .article__image::after {
      opacity: 1;
    }

    & .article__footer {
      height: 30px;
    }

    & .gallery__image {
      transform: scale(1.05);
      filter: blur(3px);
    }
  }
}

.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;
}

.article__footer {
  display: flex;
  gap: 0.5rem;
}

.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;
}

.article__date::after {
  content: "|";
  margin-left: 0.2rem;
}

.article__teaser {
  margin-bottom: 1rem;
}

/* newsticker */
.news.-offers,
.news.-ticker {
  grid-column: span 5;
}

.news.-ticker {
  display: grid;

  background: rgb(var(--c-primary-light));
  border-top: 1px solid rgb(var(--c-neutral-lightest));
}

.ticker__header {
  display: none;
}

.ticker__items {
  display: inline-flex;
  white-space: nowrap;
  line-height: 50px;
  gap: 4rem;
  animation: marquee 15s linear infinite;
  padding-left: 100%;
}

@media (hover: hover) {
  .ticker__items:hover {
    animation-play-state: paused;
  }
}

.ticker__marquee {
  width: 100%;
  line-height: 50px;
  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-darker));
}

.news .ticker__item a:hover {
  color: rgb(var(--c-neutral-lightest));
}

.news .ticker__item a.nolink {
  cursor: default;
}

/* =============================================================================
   Media Queries
   ========================================================================== */

@media (min-width: 400px) {
  .news.-ticker {
    grid-template-columns: 125px 1fr;
  }

  .ticker__header {
    display: block;
    color: rgb(var(--c-neutral-lightest));
    background-color: rgb(var(--c-neutral-darker));
    padding: 0 0.5rem;
    text-align: center;
    height: 50px;
    line-height: 50px;
    font-family: var(--f-family-3);
    font-size: var(--f-size-l-1);
  }

  [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: 640px) {
  .news.-latest {
    & .swiper-slide {
      width: 50%;
    }
  }
}

@media (min-width: 800px) {
  .news.-ticker {
    grid-template-columns: 160px 1fr;
  }

  .news.-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: var(--g-gap);

    & .f3-widget-paginator {
      grid-column: span 2;
    }
  }
}

@media (min-width: 1024px) {
  .news.-latest {
    & .swiper-slide {
      width: 33.33%;
    }
  }
}

@media (min-width: 1280px) {
  .news.-latest {
    & .swiper-slide {
      width: 25%;
    }
  }

  .content__right .news.-latest {
    & .swiper-slide {
      width: 33.33%;
    }
  }
}

@media (min-width: 1580px) {
  .news.-latest {
    padding: 0 60px;
    margin-right: -60px;
    margin-left: -60px;

    & .article__image {
      height: 226px;
    }
  }
}