/* Aktuelles – responsive Umsetzung nach der gelieferten Gestaltung */

.news-page {
  background: #090a09;
}

.news-page .nav {
  background: #090a09;
}

.news-page .nav nav {
  gap: 16px;
}

.news-page .nav nav a {
  padding-inline: 4px;
}

.news-hero {
  min-height: 680px;
  padding: 170px 5.75vw 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: url('aktuelles/titelbild.webp') center 42% / cover no-repeat;
}

.news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .02));
}

.news-hero::after {
  content: "";
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, .27);
  border-radius: 50%;
  position: absolute;
  right: -115px;
  top: 125px;
}

.news-hero .eyebrow {
  color: #fff;
  position: relative;
  z-index: 1;
}

.news-hero h1 {
  margin: 80px 0 0;
  color: #fff;
  font-family: hoefler-text, Georgia, serif;
  font-size: clamp(82px, 13vw, 205px);
  font-weight: 400;
  letter-spacing: .045em;
  line-height: .78;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.campaign {
  background: #f1f1ee;
}

.campaign-intro {
  min-height: 390px;
  padding: 72px 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
  overflow: hidden;
  background: #e51b23;
  color: #fff;
  position: relative;
}

.campaign-client {
  display: block;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.campaign-intro h2 {
  margin: 0;
  color: #fff;
  font-family: hoefler-text, Georgia, serif;
  font-size: clamp(54px, 7vw, 110px);
  font-weight: 400;
  line-height: .88;
}

.campaign-badge {
  width: min(31vw, 350px);
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 18px 22px rgba(102, 0, 0, .25));
  transform: rotate(-8deg);
}

.campaign-grid {
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 8px;
  background: #f1f1ee;
}

.campaign-image {
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  background: #e7e7e3;
}

.campaign-image.wide {
  grid-column: 1 / -1;
  min-height: 520px;
}

.campaign-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.campaign-pattern {
  min-height: 245px;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  overflow: hidden;
  background: #e51b23;
  color: rgba(255, 255, 255, .16);
  font-family: hoefler-text, Georgia, serif;
  font-size: clamp(80px, 14vw, 220px);
  line-height: 1;
  white-space: nowrap;
}

.news-closing {
  min-height: 360px;
  background:
    radial-gradient(circle at 17% 38%, rgba(255, 255, 255, .1), transparent 24%),
    linear-gradient(135deg, #0d4d06, #42a80e);
}

@media (max-width: 1100px) {
  .news-page .nav nav {
    gap: 9px;
  }

  .news-page .nav nav a {
    font-size: 13px;
    padding-inline: 2px;
  }

  .news-hero {
    min-height: 590px;
  }

  .campaign-image {
    min-height: 320px;
  }

  .campaign-image.wide {
    min-height: 430px;
  }
}

@media (max-width: 760px) {
  .news-page .nav nav a {
    font-size: inherit;
  }

  .news-hero {
    min-height: 510px;
    padding: 125px 6vw 55px;
  }

  .news-hero::after {
    width: 310px;
    height: 310px;
    right: -175px;
    top: 145px;
  }

  .news-hero h1 {
    font-size: clamp(53px, 18vw, 90px);
    letter-spacing: .015em;
  }

  .campaign-intro {
    min-height: 385px;
    padding: 50px 7vw 45px;
    align-items: flex-start;
  }

  .campaign-badge {
    width: 170px;
    margin-right: -45px;
    align-self: flex-end;
  }

  .campaign-grid {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 5px;
  }

  .campaign-image,
  .campaign-image.wide {
    grid-column: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .campaign-image.wide {
    aspect-ratio: 16 / 10;
  }

  .campaign-pattern {
    grid-column: auto;
    min-height: 145px;
  }

  .campaign-pattern span:nth-child(3) {
    display: none;
  }

  .news-closing {
    min-height: 220px;
  }
}

@media (max-width: 480px) {
  .campaign-intro {
    min-height: 420px;
    display: block;
  }

  .campaign-intro h2 {
    font-size: 52px;
  }

  .campaign-badge {
    width: 155px;
    position: absolute;
    right: 12px;
    bottom: 18px;
  }
}
