/* ── fuehrung.css ── Styles für die Führungsseite ── */

.page-header {
    padding-top: 130px;
    padding-bottom: 40px;
    text-align: center;
  }
  
  .page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 8vw, 96px);
    line-height: 0.92;
    letter-spacing: 5px;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0,0,0,0.8);
    margin-top: 10px;
  }
  
  .fuehrung-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 28px 110px;
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  
  .fuehrung-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .fuehrung-card--chief {
    box-shadow: 0 0 40px rgba(255,140,0,0.15) !important;
  }
  
  /* Chief: Bild links, Text rechts */
  .fuehrung-inner {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 36px;
    align-items: flex-start;
  }
  
  /* Stellvertreter: alles untereinander */
  .fuehrung-inner--small {
    flex-direction: column;
    gap: 16px;
  }
  
  /* ── Bild-Bereich Chief (links) ── */
  .fuehrung-avatar-wrap--chief {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
  }
  
  .fuehrung-card-image--chief {
    width: 180px;
  }
  
  .fuehrung-card-image--chief .fuehrung-img {
    width: 180px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255,140,0,0.4);
    display: block;
  }
  
  .fuehrung-img-placeholder--chief {
    width: 180px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px dashed rgba(255,255,255,0.1);
  }
  
  /* ── Bild-Bereich Stellvertreter (oben, volle Breite) ── */
  .fuehrung-card-image--sub {
    margin: -40px -40px 0 -40px;
    width: calc(100% + 80px);
  }
  
  .fuehrung-card-image--sub .fuehrung-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    display: block;
  }
  
  .fuehrung-img-placeholder--sub {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    background: rgba(255,255,255,0.03);
    border-radius: 20px 20px 0 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  
  /* ── Rang-Badges ── */
  .fuehrung-rang-badge {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    padding: 6px 20px;
    border-radius: 100px;
    background: var(--orange);
    color: #000;
    white-space: nowrap;
  }
  
  .fuehrung-rang-badge--under {
    background: rgba(255,140,0,0.15);
    color: var(--orange);
    border: 1px solid rgba(255,140,0,0.5);
  }
  
  .fuehrung-rang-badge--captain {
    background: rgba(100,180,255,0.12);
    color: #80c8ff;
    border: 1px solid rgba(100,180,255,0.4);
  }
  
  /* ── Info-Bereich ── */
  .fuehrung-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .fuehrung-meta {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
  }
  
  .fuehrung-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    letter-spacing: 4px;
    color: #fff;
    line-height: 1;
  }
  
  .fuehrung-card--chief .fuehrung-name {
    font-size: 52px;
  }
  
  .fuehrung-zitat {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 16px;
    color: rgba(255,140,0,0.75);
    padding-left: 16px;
    border-left: 3px solid rgba(255,140,0,0.4);
    line-height: 1.5;
    margin: 4px 0;
  }
  
  .fuehrung-bio {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px !important;
    font-weight: 500;
    color: rgba(255,255,255,0.7) !important;
    line-height: 1.65 !important;
    opacity: 1 !important;
  }
  
  .fuehrung-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
  }
  
  .fuehrung-tag {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    text-transform: uppercase;
  }
  
  .fuehrung-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  @media (max-width: 900px) {
    .fuehrung-grid { grid-template-columns: 1fr; }
    .fuehrung-inner { flex-direction: column; }
  }
  
  @media (max-width: 640px) {
    .page-header { padding-top: 100px; }
    .fuehrung-main { padding: 20px 16px 80px; }
    .fuehrung-name { font-size: 32px; }
    .fuehrung-card--chief .fuehrung-name { font-size: 40px; }
  }