/* ── 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: 1000px;
  margin: 0 auto;
  padding: 20px 28px 110px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.fuehrung-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.fuehrung-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.fuehrung-card {
  padding: 40px !important;
  transition: transform 0.3s ease, border-color 0.3s ease;
  background: rgba(20, 20, 22, 0.4) !important;
  backdrop-filter: blur(10px);
}

.fuehrung-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,140,0,0.2) !important;
}

.fuehrung-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.fuehrung-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.fuehrung-card-image {
  width: 160px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.fuehrung-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(10%);
  transition: filter 0.3s ease;
}

.fuehrung-card:hover .fuehrung-img {
  filter: grayscale(0%);
}

.fuehrung-rang-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 4px 16px;
  border-radius: 100px;
  background: rgba(255,140,0,0.1);
  color: var(--orange);
  border: 1px solid rgba(255,140,0,0.3);
  white-space: nowrap;
}

.fuehrung-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fuehrung-meta {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.fuehrung-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 3px;
  color: #fff;
  line-height: 1;
  margin: -4px 0 0 0;
}

.fuehrung-zitat {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 17px;
  color: var(--orange);
  padding-left: 20px;
  border-left: 2px solid rgba(255,140,0,0.3);
  line-height: 1.5;
  margin: 8px 0;
}

.fuehrung-bio {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.fuehrung-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.fuehrung-tag {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .fuehrung-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .fuehrung-zitat {
    border-left: none;
    border-top: 1px solid rgba(255,140,0,0.2);
    border-bottom: 1px solid rgba(255,140,0,0.2);
    padding: 10px 0;
  }
  .fuehrung-tags {
    justify-content: center;
  }
  .fuehrung-card-image {
    width: 200px;
    height: 250px;
  }
}