.news.-latest {
  position: relative;
  gap: 2rem;
  display: grid;

  & .article {
    background: rgb(var(--c-neutral-lightest));
    height: 100%;
  }

  & .article__text {
    padding: 2rem 0.5rem;
  }

  & .article__image {
    position: relative;
    overflow: hidden;
  }

  & .gallery__image {
    transition: all 0.4s ease;
  }

  & .article__bodytext {
    color: rgb(var(--c-neutral-dark));
  }

  & .headline.-small {
    margin-bottom: 0;
  }

  & h3 {
    font-family: var(--f-family-2);
  }
}

@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;
  text-transform: uppercase;
  font-family: var(--f-family-3);
  font-size: var(--f-size-l-1);
  border-bottom: 2px solid rgb(var(--c-neutral-darkest));
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5rem;
  position: relative;
  margin-top: auto;
  overflow: hidden;
}

a.article__more {
  color: rgb(var(--c-neutral-darkest));
}

.article__more::before,
.article__more::after {
  position: absolute;
  right: 0;
  font-family: "FaLight", sans-serif;
  font-size: var(--f-size-s-2);
  transition: transform 0.3s ease;
}

.article__more::after {
  content: "\f061";
  color: rgb(var(--c-neutral-dark));
  transform: translateY(0);
}

.article__more::before {
  content: "\f061";
  color: rgb(var(--c-primary));
  transform: translateY(-120%);
}

@media (hover: hover) {
  a.article__more:hover {
    color: rgb(var(--c-primary));
  }

  .article:hover .article__more::after {
    transform: translateY(120%);
  }

  .article:hover .article__more::before {
    transform: translateY(0);
  }
}

.article__teaser {
  font-family: var(--f-family-3);
  font-size: var(--f-size-l-2);
  color: rgb(var(--c-neutral-darkest));
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.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;
}

.news.-single {
  & .headline.-small {
    margin-bottom: 0;
  }
  & .article__backlink {
    border-top: 1px solid rgb(var(--c-neutral-dark), 0.2);
  }

  & .article__backlink {
    padding-top: 1rem;
    text-transform: uppercase;
  }
}

/* =============================================================================
   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.-withimage .article__text {
    grid-column: span 8;
  }
}

@media (min-width: 640px) {
  .news.-latest {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: var(--g-gap-s);
  }

  .news.-latest > * {
    display: flex;
    flex-direction: column;
  }
}

@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;
    }
  }
}

@media (min-width: 1580px) {
  .news.-latest {
    padding: 0 60px;
    margin-right: -60px;
    margin-left: -60px;

    & .article__image {
      height: 310px;
    }
  }
}
