.news.-latest {
  position: relative;

  --swiper-navigation-sides-offset: 0;
  --swiper-navigation-color: rgb(var(--c-primary));

  & .swiper-button-prev,
  & .swiper-button-next {
    position: inherit;
    left: inherit;
    top: inherit;
    right: inherit;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border: 2px solid rgb(var(--c-primary));
    border-radius: var(--b-radius-l);
    text-align: center;
    margin-top: 1rem;
    display: inline-block;
    transition: background-color 0.3s ease;
  }

  & .swiper-button-prev {
    margin-left: calc(49% - 80px);
    margin-right: 2%;
  }

  & .swiper-button-next:after {
    content: '\f061';
    line-height: 80px;
    font-size: 30px;
    font-family: 'FaRegular';
  }

  & .swiper-button-prev:after {
    content: '\f060';
    line-height: 80px;
    font-size: 30px;
    font-family: 'FaRegular';
  }

  & .swiper-slide {
    height: auto;
    width: 100%;
  }

  & .article {
    background: rgb(var(--c-neutral-lighter));
    border-radius: var(--b-radius-l);
    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 {
    & .swiper-button-prev:hover,
    & .swiper-button-next:hover {
      background-color: rgb(var(--c-primary));
      color: rgb(var(--c-neutral-lightest));
    }
  }
}

.news.-list {
  display: grid;
  grid-gap: var(--g-gap);
}

.content > .frame:nth-child(2n) {
  & .news.-latest {
    & .article {
      background: rgb(var(--c-neutral-lightest));
    }
  }
}

@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 {
  background: rgb(var(--c-neutral-lighter));
  border-radius: var(--b-radius-l);
  padding: 2.5rem 2rem;
}

.article__more {
  display: block;
  margin-top: 1rem;
  border-top: 1px solid rgb(var(--c-neutral-light));
  padding-top: 1rem;
  color: rgb(var(--c-neutral-dark));
  text-transform: uppercase;
  font-family: var(--f-family-2);
  font-size: var(--f-size-l-1);

  &::after {
    content: '\f061';
    font-family: 'FaRegular', sans-serif;
    font-size: var(--f-size-s-2);
    margin-left: .5rem;
    vertical-align: text-top;
  }
}

.news.-references {
  & .article__more {
    padding-top: 0;
    border: 0;
    color: rgb(var(--c-blue));
    font-size: var(--f-size);
  }
}
@media (hover:hover) {
  .news.-references {
    & .article__more:hover {
      color: rgb(var(--c-primary));
    }
  }
}


.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: '\f060';
  font-family: "FaRegular", sans-serif;
  font-size: var(--f-size-s-2);
  margin-right: 0.4rem;
}

/* newsticker */
.news.-offers,
.news.-ticker {
  grid-column: span 5;
}

.news.-ticker {
  display: grid;
  background: rgb(var(--c-primary));
}

.ticker__header {
  display: none;
}

.ticker__items {
  display: inline-flex;
  white-space: nowrap;
  line-height: 50px;
  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-lightest));
  font-weight: var(--f-weight-b);
}

.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-yellow));
    padding: 0 0.5rem;
    text-align: center;
    height: 100%;
    line-height: 50px;
    font-family: var(--f-family-2);
    font-weight: var(--f-weight-b);
    font-size: var(--f-size-l-1);
    text-transform: uppercase;
    border-top-right-radius: var(--b-radius);
    border-bottom-right-radius: var(--b-radius);
  }

  [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.-ticker {
    grid-template-columns: 160px 1fr;
  }

  .news.-list {
    grid-template-columns: repeat(2, 1fr);

    & .f3-widget-paginator {
      grid-column: span 2;
    }
  }
}

@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;
    }
  }
}