/* ============================================
   SPLIT-SECTIONS — 2 Spalten (Bild + Text)
   ============================================ */

/* Gemeinsames 2-Spalten-Grid */
.bio-dark-inner,
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--grid-max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.about-section { background: var(--white); }

/* Text-Panels: gemeinsamer Flex-Stack */
.adrenalin-content,
.bio-dark-text,
.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ============================================
   ADRENALIN — Bild links | Text rechts (full-width wie Hero)
   ============================================ */

.adrenalin-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-height));
  overflow: hidden;
  position: relative;
}

/* Item 5: "34,2" als Hintergrund-Typografie */
.adrenalin-bg-number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4%;
  font-family: var(--font-primary);
  font-size: clamp(7rem, 22vw, 20rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(0, 0, 0, 0.045);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

.adrenalin-image { position: relative; z-index: 1; }
.adrenalin-content { position: relative; z-index: 1; }

/* Linke Spalte: Bild */
.adrenalin-image {
  overflow: hidden;
  background: var(--hero-bg-right);
}

.adrenalin-image img { object-position: top center; }

/* Rechte Spalte: Text */
.adrenalin-content {
  background: var(--white);
  padding: 64px clamp(40px, 10vw, 144px) 64px clamp(32px, 9vw, 128px);
}

.adrenalin-headline {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.1;
  margin-bottom: 8px;
  padding-bottom: 0.15em;
}

.adrenalin-subline {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--black);
  margin-top: 0;
  margin-bottom: 16px;
}

.adrenalin-text {
  font-size: var(--text-sm);
  color: var(--gray-text);
  line-height: var(--text-sm-line);
  margin-bottom: 16px;
}

.adrenalin-text:last-of-type {
  margin-bottom: 32px;
}

/* ============================================
   BIO DARK — Text links | Video rechts
   ============================================ */

.bio-dark-section {
  background: var(--black);
  min-height: 420px;
}

/* Linke Spalte: Text */
.bio-dark-text {
  padding: 80px 56px 80px 0;
  gap: 28px;
}


.bio-dark-bold {
  font-weight: 600;
  color: var(--white);
  position: relative;
  z-index: 0;
  padding-top: 0.9em;
}

.bio-dark-bold::before {
  content: '\201C';
  position: absolute;
  left: -0.20em;
  top: -0.1em;
  font-family: var(--font-primary);
  font-size: 8em;
  font-style: normal;
  line-height: 0.75;
  z-index: -1;
  opacity: 0.45;
  pointer-events: none;
}

.bio-dark-bold::after {
  content: '\201C';
}

.card .bio-dark-bold { margin-bottom: 0.75em; }

/* Rechte Spalte: Video */
.bio-dark-video {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 80px 56px;
}

/* ============================================
   ABOUT — Text links | Video rechts
   ============================================ */

/* Linke Spalte: Text */
.about-text {
  padding: 80px 64px 80px 0;
}

.about-heading {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--gray-text);
  line-height: 1.4;
  margin-bottom: 24px;
}

.about-body {
  font-size: var(--text-sm);
  color: var(--gray-text);
  line-height: var(--text-sm-line);
}

.about-attribution {
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--gray-text);
  text-align: right;
  margin-top: 8px;
}

.about-text .btn-black { margin-top: 32px; }

/* Rechte Spalte: Video */
.about-video {
  display: flex;
  align-items: center;
  padding: 80px 0 80px 40px;
}

.about-video .video-embed-wrapper {
  width: 100%;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .adrenalin-section,
  .bio-dark-inner,
  .about-section { grid-template-columns: 1fr; }

  .adrenalin-section {
    height: auto;
  }

  .bio-dark-inner,
  .about-section { padding: 0 24px; }

  .adrenalin-image {
    height: 50vh;
    min-height: auto;
  }
  .adrenalin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .adrenalin-content { padding: 24px 24px 32px; justify-content: flex-start; }
  .adrenalin-content [class*="btn-"] { margin-top: auto; }

  .bio-dark-video {
    order: 1;
    padding: 24px 0 0;
  }

  .bio-dark-text {
    order: 2;
    padding: 40px 0;
  }

  .about-video {
    order: 1;
    padding: 24px 0 0;
  }

  .about-text {
    order: 2;
    padding: 40px 0;
  }
}
