.hero {
  position: relative;
  padding: 88px var(--px);
  background: var(--bg-page);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  /* minmax(0,…): lange Wörter in der H1 dürfen die Spalte nicht
     über den Viewport hinaus aufdehnen */
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 64px;
  align-items: center;
}

.breadcrumb {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--at-red); }
.breadcrumb .sep { color: var(--border-strong); }

.hero h1 {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--text-primary);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero h1 .blue { color: var(--at-blue); }
.hero h1 .red  { color: var(--at-red); }

.hero h2, .hero .hero-subtitle {
  font-size: 20px;
  line-height: 1.35;
  color: var(--at-blue);
  font-weight: 400;
  margin-bottom: 16px;
  max-width: 36ch;
}

.hero p.lede { margin-bottom: 32px; }

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.hero-meta-item {
  font-size: 12px;
  color: var(--text-secondary);
}

.hero-meta-item strong {
  display: block;
  font-size: 24px;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 2px;
}

/* Grafik-Element */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 5/4;
  max-width: 560px;
  margin: 0 auto;
}

.hero-visual-image {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image-note {
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

.vp-big, .vp-sm {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.vp-big { width: 64%; height: 80%; left: 0; background: var(--at-blue); }
.vp-sm  { width: 48%; height: 60%; left: 44%; background: var(--at-red); mix-blend-mode: multiply; }

@media (prefers-color-scheme: dark) {
  .vp-sm { mix-blend-mode: screen; }
}

.vp-text {
  position: absolute;
  left: 9%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 3;
  line-height: .95;
}

.vp-text .h {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.vp-text .s {
  font-size: clamp(12px, 1.5vw, 17px);
  font-weight: 600;
  margin-top: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
  opacity: .9;
}

.vp-tag {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 4;
  background: var(--bg-page);
  border: 1px solid var(--border);
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vp-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--at-blue); }

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .hero-visual { max-width: 400px; }
}

@media (max-width: 600px) {
  .hero { padding: 56px var(--px-sm); }
  .hero-meta { gap: 20px; }
  .hero-visual { max-width: 100%; }
  .hero-visual-image { border-radius: 18px; }
  .vp-tag {
    right: 12px;
    top: 12px;
    max-width: calc(100% - 24px);
  }
}
