*,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px
    }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: #F3F2EE;
      color: #33343D;
      line-height: 1.7;
      overflow-x: hidden
    }

    img {
      max-width: 100%;
      display: block
    }

    a {
      color: inherit;
      text-decoration: none
    }

    :root {
      --beige: #F3F2EE;
      --beige-2: #E8E5DC;
      --dark: #464754;
      --dark-2: #383944;
      --gold: #B7334E;
      --gold-2: #8A2439;
      --white: #fff;
      --text: #33343D;
      --muted: #7A7870;
      --maxw: 1200px;
      --header-h: 70px;
      --radius: 6px;
      --radius-lg: 16px;
      --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1)
    }

    ::selection {
      background: var(--gold);
      color: #fff
    }

    ::-webkit-scrollbar {
      width: 6px
    }

    ::-webkit-scrollbar-thumb {
      background: var(--gold);
      border-radius: 3px
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      height: var(--header-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(1rem, 4vw, 2.5rem);
      background: rgba(56, 57, 68, 0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08)
    }

    .header-logo img {
      height: 44px;
      width: auto
    }

    .back-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255, 255, 255, 0.75);
      font-size: 0.85rem;
      letter-spacing: 0.04em;
      transition: color var(--transition)
    }

    .back-link:hover {
      color: #fff
    }

    .back-link:hover svg {
      transform: translateX(-3px)
    }

    .back-link svg {
      transition: transform var(--transition)
    }

    .hero {
      min-height: 62vh;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      padding: calc(var(--header-h) + 3rem) clamp(1rem, 4vw, 2.5rem) 4rem;
      background: var(--dark-2)
    }

    .hero-img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      filter: brightness(0.4)
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: var(--maxw);
      width: 100%;
      margin: 0 auto
    }

    .hero-num {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 5rem;
      font-weight: 700;
      line-height: 1;
      color: rgba(183, 51, 78, 0.4);
      margin-bottom: 0.25rem
    }

    .hero-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 0.6rem
    }

    .hero-subtitle {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.55);
      max-width: 580px;
      line-height: 1.6
    }

    .hero-authors {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-top: 1.5rem
    }

    .author-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0
    }

    .author-name {
      color: rgba(255, 255, 255, 0.85);
      font-size: 0.9rem
    }

    .container {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 clamp(1rem, 4vw, 2.5rem)
    }

    .content-grid {
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 4rem;
      padding: 5rem 0 6rem;
      align-items: start
    }

    .content-text p {
      margin-bottom: 1.2rem;
      color: var(--text);
      font-size: 1.05rem;
      line-height: 1.8
    }

    .content-text p:first-child {
      font-size: 1.12rem;

      color: var(--dark)
    }

    .content-aside {
      position: sticky;
      top: calc(var(--header-h) + 2rem)
    }

    .aside-img {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12)
    }

    .aside-img img {
      width: 100%;
      object-fit: cover;
      max-height: 280px
    }

    .aside-meta {
      margin-top: 1.5rem;
      padding: 1.5rem;
      background: #fff;
      border-radius: var(--radius-lg);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06)
    }

    .aside-meta-label {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.25rem;
      margin-top: 0.75rem
    }

    .aside-meta-label:first-child {
      margin-top: 0
    }

    .aside-meta-value {
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--text)
    }

    .tag {
      display: inline-block;
      padding: 0.3rem 0.8rem;
      background: rgba(183, 51, 78, 0.08);
      color: var(--gold);
      border-radius: 100px;
      font-size: 0.72rem;
      font-weight: 600;
      margin-top: 1rem;
      letter-spacing: 0.03em
    }

    .back-section {
      padding: 2.5rem 0 4rem;
      border-top: 1px solid var(--beige-2)
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.8rem 1.75rem;
      border-radius: var(--radius);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: all var(--transition);
      cursor: pointer;
      border: none
    }

    .btn-primary {
      background: var(--gold);
      color: #fff
    }

    .btn-primary:hover {
      background: var(--gold-2);
      transform: translateY(-1px)
    }

    @media(max-width:800px) {
      .content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
      }

      .content-aside {
        position: static
      }

      .hero-num {
        font-size: 3rem
      }
    }

/* ── Autoren-Sektion ─────────────────────────────────────────── */
.authors-section {
  padding: 3rem 0 4rem;
  border-top: 1px solid var(--beige-2);
}
.authors-section-title {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.author-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.author-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.author-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.author-card-info strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.3rem;
  font-family: 'Space Grotesk', sans-serif;
}
.author-card-info p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
