.news.-latest {
  position: relative;
  --swiper-navigation-sides-offset: 0;

  & .swiper-slide {
    height: auto;
    width: 100%;
  }

  & .article {
    background: rgb(var(--c-neutral-lightest));
  }

  & .article__text {
    padding: 2.5rem 2rem;
  }

  & h3 {
    font-size: var(--f-size-l-1);
  }

  & .article__image {
    position: relative;
    overflow: hidden;
  }

  & .gallery__image {
    transition: all 0.4s ease;
  }

  & .swiper-wrapper {
    margin-left: 0.25rem;
  }

  & .swiper-buttons-wrap {
    position: absolute;
    bottom: calc(-3rem - 18px);
    right: 4%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: inherit;
    top: initial;
  }

  & .swiper-button-next {
    right: 0;
  }

  & .swiper-button-prev {
    right: 30px;
    left: inherit;
  }

  & .swiper-button-next.swiper-button-disabled,
  & .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
  }

  & .swiper-button-next.swiper-button-disabled svg path,
  & .swiper-button-prev.swiper-button-disabled svg path {
    fill: #706f6f;
  }

  & .swiper-button-next:after,
  & .swiper-button-prev:after {
    display: none;
  }

  & .swiper-button-next svg,
  & .swiper-button-prev svg {
    height: 26px;
  }

  & article {
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 1px 1px 4px 1px rgba(var(--c-neutral-darkest), 0.1);
    -moz-box-shadow: 1px 1px 4px 1px rgba(var(--c-neutral-darkest), 0.1);
    -o-box-shadow: 1px 1px 4px 1px rgba(var(--c-neutral-darkest), 0.1);
    box-shadow: 1px 1px 4px 1px rgba(var(--c-neutral-darkest), 0.1);
    height: 100%;
  }

  & .article__image {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 140px;
    z-index: 5;
    overflow: hidden;
    transition: height 0.6s ease,
    opacity 0.4s ease;
  }

  & .article__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    filter: grayscale(0%);
    transition: transform 0.8s ease,
    filter 0.8s ease;
  }

  & .article__text {
    position: relative;
    z-index: 10;
    padding: 2rem 1.5rem calc(2rem + 140px) 1.5rem;
  }

  & .grid__main {
    display: grid;
  }
}

@media (hover: hover) {
  .news.-latest .article:hover .gallery__image {
    transform: scale(1.05);
  }
}

.page.-main .grid__col.-w70 .grid__main.frame-type-news_pi1 {
  padding: 0 0 3rem;
}

.grid__main .news.-latest.grid__main {
  margin-left: -4%;
  margin-right: -4%;
}

.news-list-category {
  color: rgb(var(--c-neutral-dark));
}

.news.-list {
  & .article {
    position: relative;
    padding: 2rem 1.5rem calc(2rem + 140px) 1.5rem;
    -webkit-box-shadow: 1px 1px 4px 1px rgba(var(--c-neutral-darkest), 0.1);
    -moz-box-shadow: 1px 1px 4px 1px rgba(var(--c-neutral-darkest), 0.1);
    -o-box-shadow: 1px 1px 4px 1px rgba(var(--c-neutral-darkest), 0.1);
    box-shadow: 1px 1px 4px 1px rgba(var(--c-neutral-darkest), 0.1);
  }

  & .article__image {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 140px;
    z-index: 5;
    overflow: hidden;
  }
}

.article__more {
  display: block;
  margin-top: 1rem;
}

.article__footer {
  padding-top: var(--g-gap-s);
  border-top: 1px solid rgb(var(--c-neutral-lighter));
}

.special_title {
  position: relative;
  display: inline-block;
  font-size: clamp(16px, 4vw, 24px);
  font-weight: var(--f-weight-ebl);
  line-height: 1;
  color: rgb(var(--c-primary));
  z-index: 1;
  margin-bottom: 0.5rem;
}

.special_title::before {
  content: "";
  position: absolute;
  inset-inline: -0.5em;
  bottom: -0.1em;
  height: 0.6em;
  background: rgb(var(--c-neutral-light));
  transform: skew(-45deg);
  z-index: -2;
}

.special_title::after {
  content: "";
  position: absolute;
  right: -1.2em;
  bottom: -0.1em;
  width: 0.4em;
  height: 0.6em;
  background: rgb(var(--c-primary));
  transform: skew(-45deg);
  z-index: -1;
}

.news.-top {
  position: relative;

  & article {
    position: relative;
    overflow: hidden;
    height: 100%;
    background-color: rgb(var(--c-neutral-lighter));
    -webkit-box-shadow: 1px 1px 4px 1px rgba(var(--c-neutral-darkest), 0.1);
    -moz-box-shadow: 1px 1px 4px 1px rgba(var(--c-neutral-darkest), 0.1);
    -o-box-shadow: 1px 1px 4px 1px rgba(var(--c-neutral-darkest), 0.1);
    box-shadow: 1px 1px 4px 1px rgba(var(--c-neutral-darkest), 0.1);
  }

  & .article__image {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 200px;
    z-index: 5;
    overflow: hidden;
    transition: height 0.6s ease,
    opacity 0.4s ease;
  }

  & .article__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    filter: grayscale(0%);
    transition: transform 0.8s ease,
    filter 0.8s ease;
  }

  & .article__text {
    position: relative;
    z-index: 10;
    padding: 2rem 1.5rem calc(200px + 2rem) 1.5rem;
  }

  & .special_title::before {
    content: "";
    background: rgb(var(--c-neutral-lightest));
  }
}

@media (hover: hover) {
  .news.-top article:hover .article__text > *:not(a),
  .news.-latest article:hover .article__text > *:not(a) {
    opacity: 0;
  }

  .news.-top article:hover .article__image,
  .news.-latest article:hover .article__image {
    bottom: 0;
    height: 100%;
  }

  .news.-top article:hover .article__image img,
  .news.-latest article:hover .article__image img {
    transform: scale(1.08);
    filter: grayscale(100%);
  }

  .news.-top article:hover .article__text a,
  .news.-latest article:hover .article__text a {
    position: absolute;
    height: 100%;
    left: 0;
    width: 100%;
    top: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 3rem;
    font-weight: var(--f-weight-b);
    z-index: 20;
    opacity: 1;
    color: rgb(var(--c-neutral-lightest));
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: var(--f-size-l-1);
  }

  .news.-top article:hover .article__image::before,
  .news.-latest article:hover .article__image::before {
    content: "";
    position: absolute;
    left: -50px;
    right: -50px;
    bottom: -190px;
    height: 300px;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.6) 30%,
            rgba(0, 0, 0, 0.19) 60%,
            rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
    pointer-events: none;
    filter: blur(35px);
  }
}

.article__text a {
  color: rgb(var(--c-neutral-darkest));
  transition: opacity 0.3s ease;
}

.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-neutral-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;
  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;
  text-decoration: none;
  color: rgb(var(--c-neutral-darker));
  font-weight: var(--f-weight-b);
}

.news .ticker__item a:hover {
  color: rgb(var(--c-primary));
}

.news .ticker__item a.nolink {
  cursor: default;
}

/* =============================================================================
   Media Queries
   ========================================================================== */

@media (min-width: 400px) {
  .news.-single {
    & .article__text {
      grid-column: span 8;
    }

    & .article__media {
      grid-column: span 4;
    }
  }

  .news.-ticker {
    grid-template-columns: 125px 1fr;
  }

  .ticker__header {
    display: block;
    color: rgb(var(--c-neutral-lightest));
    background-color: rgb(var(--c-primary));
    padding: 0 0.5rem;
    text-align: center;
    height: 50px;
    line-height: 55px;
    font-family: var(--f-family-2);
    font-size: var(--f-size-l-1);
    font-weight: var(--f-weight-n);
    text-transform: uppercase;
  }
}

@media (min-width: 640px) {
  .news.-latest {
    padding: 0;

    & .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: 160px 1fr;
  }
}

@media (min-width: 1580px) {
  .news.-latest {
    & .swiper-slide {
      width: calc(33.33% - 13px);
    }

    & article {
      height: 460px;
    }

    & .swiper-buttons-wrap {
      right: calc(50vw - 720px)
    }
  }

  .news.-top {
    & article {
      height: 460px;
    }
  }
}