.leadership-section {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #eef3f9;
  --text: #152033;
  --muted: #5b6778;
  --border: rgba(21, 32, 51, 0.08);
  --shadow: 0 14px 40px rgba(16, 24, 40, 0.08);
  --overlay: linear-gradient(180deg, rgba(10, 18, 32, 0.38) 0%, rgba(10, 18, 32, 0.62) 100%);
  --banner-image: url('../images/1536/1024/rheden-001-001-01.jpg');
  background: var(--bg);
  color: var(--text);
}

[data-bs-theme="dark"] .leadership-section {
  --bg: #0b1220;
  --surface: #111a2b;
  --surface-2: #162238;
  --text: #eef2f7;
  --muted: #b5c0d0;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --overlay: linear-gradient(180deg, rgba(5, 10, 20, 0.48) 0%, rgba(5, 10, 20, 0.78) 100%);
  --banner-image: url('../images/1536/1024/rheden-001-001-02.jpg');
}

.leadership-banner {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 62vw, 720px);
  display: flex;
  align-items: center;
  background-image: var(--overlay), var(--banner-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.leadership-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  color: #fff;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.leadership-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leadership-banner h1 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.leadership-banner p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  max-width: 60ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
}

.leadership-cards-wrap {
  margin-top: -2.5rem;
  position: relative;
  z-index: 3;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.leadership-card {
  height: 100%;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
}

.leadership-card .card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 0.85rem;
  background: var(--surface-2);
  font-weight: 700;
  font-size: 1rem;
}

.leadership-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.leadership-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

@media (max-width: 991.98px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .leadership-cards-wrap {
    margin-top: 0;
    padding-top: 1.5rem;
  }

  .leadership-card {
    padding: 1.5rem;
  }
}