@keyframes anzItemIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
nav.nav-v2 .hamburger {
  display: flex;
}
.anz-shell {
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 4vw, var(--space-7));
}
.nav-overlay {
  position: fixed;
  inset: 0;
  height: 100vh;
  height: 100dvh;
  z-index: 1200;
  background: var(--bg);
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--dur-2) var(--ease-out),
    transform var(--dur-2) var(--ease-out),
    visibility 0s linear var(--dur-2);
}
.nav-overlay.open {
  opacity: 1;
  transform: none;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity var(--dur-3) var(--ease-out),
    transform var(--dur-3) var(--ease-out),
    visibility 0s linear 0s;
}
.nav-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(22, 22, 20, .015)0,
      rgba(22, 22, 20, .015) 1px,
      transparent 1px,
      transparent 3px);
}
.nav-overlay.open .anz-masthead {
  animation: anzItemIn var(--dur-3) var(--ease-out) both;
}
.nav-overlay.open .anz-aufmacher,
.nav-overlay.open .anz-teasers-section {
  animation: anzItemIn var(--dur-3) var(--ease-out) both;
  animation-delay: 70ms;
}
.nav-overlay.open .anz-aufmacher {
  animation-delay: 140ms;
}
.nav-overlay.open .anz-boxes,
.nav-overlay.open .anz-side {
  animation: anzItemIn var(--dur-3) var(--ease-out) both;
  animation-delay: 210ms;
}
.nav-overlay.open .anz-boxes {
  animation-delay: 280ms;
}
.anz-body {
  display: flex;
  flex-direction: column;
  position: static;
  z-index: auto;
  height: auto;
  border-bottom: 0;
}
.anz-masthead {
  order: 1;
  padding-block: var(--space-4);
  text-align: center;
}
.anz-kicker {
  margin-bottom: var(--space-2);
}
.anz-folio-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-hi);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .2);
  flex-shrink: 0;
}
.anz-nameplate {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: min(clamp(2.4rem, 5vw, 4rem), 9vh);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.anz-dateline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--muted);
  text-align: center;
}
.anz-rule {
  margin-top: var(--space-3);
}
.anz-rule-thick {
  height: 2px;
  background: var(--ink);
}
.anz-rule-thin {
  display: none;
}
.anz-teasers-section {
  order: 4;
  border-bottom: 1px solid var(--line);
}
.anz-teasers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
.anz-teaser {
  background: var(--bg);
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 48px;
}
.anz-teaser picture {
  display: block;
  flex-shrink: 0;
}
.anz-teaser-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
}
.anz-teaser-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.anz-teaser-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--ink);
  transition: color var(--dur-2) var(--ease-out);
}
.anz-brief-links a:focus-visible,
.anz-brief-links a:hover,
.anz-teaser:focus-visible .anz-teaser-title,
.anz-teaser:hover .anz-teaser-title {
  color: var(--gold-text);
}
.anz-main-wrap {
  order: 2;
}
.anz-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  padding-block: var(--space-6);
}
.anz-aufmacher,
.anz-aufmacher picture {
  display: block;
}
.anz-aufmacher-kicker {
  margin-bottom: var(--space-2);
}
.anz-aufmacher-headline {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: min(clamp(2.4rem, 4.2vw, 3.6rem), 8vh);
  line-height: var(--lh-display);
  color: var(--ink);
  text-decoration: none;
  text-decoration-color: transparent;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  transition: text-decoration-color var(--dur-2) var(--ease-out);
  margin-bottom: var(--space-4);
}
.anz-aufmacher:focus-visible .anz-aufmacher-headline,
.anz-aufmacher:hover .anz-aufmacher-headline {
  text-decoration-line: underline;
  text-decoration-color: var(--gold);
}
.anz-aufmacher-photo {
  width: 100%;
  height: min(30vh, 340px);
  object-fit: cover;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
}
.anz-caption {
  display: block;
  margin-top: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--muted);
}
.anz-lead,
.anz-more {
  margin-top: var(--space-4);
  font-family: var(--font-body);
}
.anz-lead {
  display: block;
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  max-width: 52ch;
}
.anz-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  font-size: var(--fs-body);
  color: var(--ink);
}
.anz-more-arrow {
  display: inline-block;
  transition: transform var(--dur-2) var(--ease-out);
}
.anz-aufmacher:focus-visible .anz-more-arrow,
.anz-aufmacher:hover .anz-more-arrow {
  transform: translateX(5px);
}
.anz-side {
  display: flex;
  flex-direction: column;
}
.anz-side-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--line);
  min-height: 48px;
}
.anz-headline-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  min-width: 0;
}
.anz-headline-arrow {
  display: inline-block;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-14px);
  color: var(--gold-display);
  flex-shrink: 0;
  transition:
    opacity var(--dur-2) var(--ease-out),
    transform var(--dur-2) var(--ease-out),
    width var(--dur-2) var(--ease-out),
    margin-right var(--dur-2) var(--ease-out);
}
.anz-side-item:focus-visible .anz-headline-arrow,
.anz-side-item:hover .anz-headline-arrow {
  opacity: 1;
  transform: translateX(0);
  width: 1em;
  margin-right: var(--space-2);
}
.anz-side-headline {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: min(clamp(1.6rem, 2.6vw, 2.4rem), 6vh);
  line-height: var(--lh-display);
  text-decoration: none;
  text-decoration-color: transparent;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
  transition: text-decoration-color var(--dur-2) var(--ease-out);
}
.anz-side-headline--md {
  font-size: min(clamp(1.25rem, 2vw, 1.7rem), 4.5vh);
}
.anz-side-item:focus-visible .anz-side-headline,
.anz-side-item:hover .anz-side-headline {
  text-decoration-line: underline;
  text-decoration-color: var(--gold);
}
.anz-side-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
}
.anz-boxes {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.anz-box {
  display: block;
  position: relative;
  padding: var(--space-4);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}
.anz-box:focus-visible,
.anz-box:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}
.anz-box--check {
  border: 2px solid var(--ink);
}
.anz-box-kicker {
  margin-bottom: var(--space-2);
}
.anz-box-headline {
  display: block;
  margin-top: var(--space-1);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  max-width: 70%;
}
.anz-box-arrow {
  display: block;
  margin-top: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--gold-text);
}
.anz-starburst {
  position: absolute;
  top: -16px;
  right: var(--space-3);
  width: 82px;
  height: 82px;
  transform: rotate(-8deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.anz-starburst::after,
.anz-starburst::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-hi);
  border-radius: 6px;
}
.anz-starburst::after {
  transform: rotate(45deg);
}
.anz-starburst-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: .7rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  line-height: 1.1;
}
.anz-box--cta {
  background: var(--ink);
  color: var(--white);
}
.anz-box--cta::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid var(--gold-hi);
  pointer-events: none;
}
.anz-box-cta-text {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
}
.anz-box-cta-text .btn-arrow {
  transition: transform var(--dur-2) var(--ease-out);
}
.anz-box--cta:focus-visible .btn-arrow,
.anz-box--cta:hover .btn-arrow {
  transform: translateX(5px);
}
.anz-brief {
  order: 3;
  border-top: 1px solid var(--line);
}
.anz-brief-inner,
.anz-brief-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.anz-brief-inner {
  padding-block: var(--space-5);
  gap: var(--space-5);
}
.anz-brief-links {
  gap: var(--space-3);
}
.anz-brief-links a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink);
  transition: color var(--dur-2) var(--ease-out);
}
.anz-brief-links .dot {
  color: var(--line-strong);
}
.anz-contact {
  order: 5;
}
.anz-contact-inner {
  padding-block: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.anz-contact-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--ink);
}
.anz-contact-line a:hover {
  color: var(--gold-text);
}
.anz-contact-tag {
  color: var(--gold-display);
}
.anz-contact-legal {
  padding-bottom: var(--space-5);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--muted);
}
@media (prefers-reduced-motion: reduce) {
  .anz-aufmacher,
  .anz-box,
  .anz-box-cta-text .btn-arrow,
  .anz-boxes,
  .anz-headline-arrow,
  .anz-masthead,
  .anz-more-arrow,
  .anz-side,
  .anz-teasers-section,
  .nav-overlay {
    transform: none !important;
  }
}
@media (min-width: 1024px) {
  .anz-masthead {
    order: 1;
  }
  .anz-teasers-section {
    order: 2;
  }
  .anz-main-wrap {
    order: 3;
  }
  .anz-brief {
    order: 4;
  }
  .anz-contact {
    order: 5;
  }
  .anz-teasers {
    grid-template-columns: repeat(4, 1fr);
  }
  .anz-dateline {
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    gap: var(--space-4);
  }
  .anz-date-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
  .anz-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0;
    column-gap: var(--space-6);
    padding-block: var(--space-5);
  }
  .anz-aufmacher {
    grid-column: 1/8;
  }
  .anz-side {
    grid-column: 8/13;
    border-left: 1px solid var(--line);
    padding-left: var(--space-5);
  }
}
.anz-topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.anz-topbar-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-toggle {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: 0 0;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  outline: 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition:
    background var(--dur-2) var(--ease-out),
    color var(--dur-2) var(--ease-out),
    border-color var(--dur-2) var(--ease-out);
}
.menu-toggle:focus-visible,
.menu-toggle:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.burger-box {
  position: relative;
  width: 20px;
  height: 14px;
}
.burger-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition:
    transform var(--dur-2) var(--ease-out),
    opacity var(--dur-2) var(--ease-out),
    top var(--dur-2) var(--ease-out);
}
.burger-bar--top {
  top: 0;
}
.burger-bar--mid {
  top: 6px;
}
.burger-bar--bottom {
  top: 12px;
}
.menu-toggle[aria-expanded=true] .burger-bar--top {
  top: 6px;
  transform: rotate(45deg);
}
.menu-toggle[aria-expanded=true] .burger-bar--mid {
  opacity: 0;
}
.menu-toggle[aria-expanded=true] .burger-bar--bottom {
  top: 6px;
  transform: rotate(-45deg);
}
@media (min-width: 1200px) {
  nav.nav-v2 .nav-inner {
    justify-content: flex-start;
    gap: var(--space-5);
  }
  nav.nav-v2 .nav-logo {
    margin-right: auto;
  }
  nav.nav-v2 .lang-toggle,
  nav.nav-v2 .nav-inner > .btn-primary {
    margin-left: 0;
  }
}
body.nav-open div[data-bytebrise-rag] {
  visibility: hidden;
}
