.news.-latest {
  padding: 0 40px;
  position: relative;

  --swiper-navigation-sides-offset: 0;
  --swiper-navigation-color: rgb(var(--c-primary));

  & .swiper-slide {
    height: auto;
    width: 100%;
  }

  & .article {
    background: rgb(var(--c-neutral-lightest));
    height: 100%;
  }

  & .article__text {
    padding: 2.5rem 2rem;
  }

  & .article__image {
    position: relative;
    overflow: hidden;
  }

  & .gallery__image {
    transition: all 0.4s ease;
  }
}

@media (hover: hover) {
  .news.-latest .article:hover .gallery__image {
    transform: scale(1.05);
  }
}

.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);
  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;
}

.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 .font__button::after {
  display: none;
  padding: 0.2rem 1rem;
}

/* newsticker */
.news.-offers,
.news.-ticker {
  grid-column: span 5;
}

.news.-ticker {
  display: grid;
  height: 60px;
  line-height: 60px;
  background: rgb(var(--c-primary));
}

.ticker__header {
  display: none;
}

.ticker__items {
  display: inline-flex;
  white-space: nowrap;
  line-height: 40px;
  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: 60px;
  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;
  font-weight: var(--f-weight-b);
  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) {
  .news.-ticker {
    grid-template-columns: 125px 1fr;
  }

  .ticker__header {
    display: block;
    color: rgb(var(--c-primary));
    background-color: rgb(var(--c-neutral-lightest));
    padding: 0 0.5rem;
    text-align: center;
    height: 50px;
    line-height: 50px;
    margin: 0.35rem 0 0 0.5rem;
    font-family: var(--f-family);
    font-weight: 700;
    font-size: var(--f-size-l-1);
    border-radius: var(--b-radius-s);
    -webkit-border-radius: var(--b-radius-s);
    -moz-border-radius: var(--b-radius-s);
    text-transform: uppercase;
  }
}

@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: 640px) {
  .news.-latest {
    & .swiper-slide {
      margin-right: 20px;
      width: calc(50% - 10px);
    }
  }
}

@media (min-width: 800px) {
  .news.-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: var(--g-gap);

    & .f3-widget-paginator {
      grid-column: span 2;
    }
  }

  .news.-ticker {
    grid-template-columns: 260px 1fr;
  }

  .ticker__header {
    margin: 0.3rem 0 0 4rem;
  }
}

@media (min-width: 1024px) {
  .news.-latest {
    & .swiper-slide {
      width: calc(33.33% - 13px);
    }
  }
}

@media (min-width: 1580px) {
  .news.-latest {
    padding: 0 60px;
    margin-right: -60px;
    margin-left: -60px;

    & .article__image {
      height: 310px;
    }
  }
}