.news.-latest {
  padding: 0 40px;
  position: relative;
  grid-column: span 5;

  --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;
  }

  & .headline.-small {
    margin-bottom: 0;
  }

  & img {
    height: 400px;
    object-fit: cover;
    max-width: 100%;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
  }

  & .article__image::before {
    content: "\f054";
    font-family: "FaLight";
    font-size: var(--f-size-l-4);
    line-height: 50px;
    width: 50px;
    color: rgb(var(--c-neutral-lightest), 0.6);
    background-color: rgb(var(--c-primary), 0.6);
    border-radius: 50%;
    position: absolute;
    top: 30%;
    margin-top: -25px;
    left: 50%;
    margin-left: -25px;
    text-shadow: 0 0 30px rgb(var(--c-neutral-darkest));
    opacity: 0;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    display: flex;
    justify-content: center;
  }

  & .grid__main.swiper {
    position: relative;
  }

  & .swiper-slide {
    border-radius: var(--b-radius);
    overflow: hidden;
    position: relative;
  }

  & .article__text .headline a {
    color: rgb(var(--c-secondary));
    font-family: var(--f-family);
    font-weight: var(--f-weight-sb);
  }

  & .article__text {
    background-color: rgb(var(--c-neutral-lightest));
    padding: 1.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    transition: height ease 0.5s;
    flex-direction: column;
  }

  & .article__text {
    font-family: var(--f-family);
    font-weight: var(--f-weight-n);
  }

  & .article__teaser {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease all;
  }

  & .grid__main {
    display: grid;
  }

  & .article__infos {
    display: flex;
    margin-top: 1rem;
    gap: var(--g-gap-s);
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease all;
  }

  & .article__more::after {
    content: "\f054";
    font-family: "FaRegular", sans-serif;
    color: rgb(var(--c-primary));
    font-size: var(--f-size-s-2);
    left: 0;
    position: relative;
  }
}

.grid__main .news.-latest.grid__main {
  margin-left: -4%;
  margin-right: -4%;
}

@media (hover: hover) {
  .news.-latest .article:hover .gallery__image {
    transform: scale(1.05);
  }

  .news.-latest .swiper-slide:hover .article__text {
    background-color: rgba(var(--c-neutral-lightest));
    color: rgb(var(--c-secondary));
    flex-direction: column;
    display: flex;
  }

  .news.-latest .swiper-slide:hover .article__teaser {
    max-height: 200px;
    margin-top: 1rem;
  }

  .news.-latest .swiper-slide:hover .article__infos {
    max-height: 50px;
    margin-top: 1.5rem;
  }

  .news.-latest .swiper-slide:hover .article__image img {
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
    -ms-filter: blur(3px);
    filter: blur(3px);
  }

  .news.-latest .article__more:hover::after {
    color: rgb(var(--c-neutral-dark));
  }
}

/* list */

.news.-list .article {
  margin-bottom: 3rem;
}

.news.-list .headline.-small {
  font-size: var(--f-size-l-3);
}

.news.-list .article__infos {
  display: flex;
  margin-top: 1rem;
  gap: var(--g-gap-s);
}

.news.-list .article__more::after {
  content: "\f054";
  font-family: "FaRegular", sans-serif;
  color: rgb(var(--c-primary));
  font-size: var(--f-size-s-2);
  left: 0;
  position: relative;
}

@media (hover: hover) {
  .news.-list .article__more:hover::after {
    color: rgb(var(--c-neutral-dark));
  }
}

.article__more {
  display: block;
}

.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;
}

/* =============================================================================
   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 .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: block;

    & .f3-widget-paginator {
      grid-column: span 2;
    }
  }
}

@media (min-width: 1024px) {
  .news.-latest {
    & .swiper-slide {
      width: calc(33.33% - 13px);
    }
  }

  @media (hover: hover) {
    .news.-latest .swiper-slide:hover .article__image::after,
    .news.-latest .swiper-slide:hover .article__image::before {
      opacity: 1;
      z-index: 10;
    }
  }
}

@media (min-width: 1580px) {
  .news.-latest {
    padding: 0 60px;
    margin-right: -60px;
    margin-left: -60px;

    & .article__image {
      height: 310px;
    }
  }
}
