/* ════════════════════════════════════════════════════════════════════════
    PAGE-SPECIFIC: Über uns
    ════════════════════════════════════════════════════════════════════════ */

/* ── Intro section ────────────────────────────────────────────────────── */
.ueber-intro {
  padding: var(--s16) 0 var(--s12);
}

/* ── "Wie wir wirken" feature cards wrapper ───────────────────────────── */
.pillars-section {
  padding: 0 0 var(--s16);
}

.pillars-section .section-headline {
  margin-bottom: var(--s8);
}

/* ── Board section ───────────────────────────────────────────────────── */
.board-section {
  background: var(--bg-warm);
  padding: var(--s16) 0;
  border-top: 1px solid var(--border);
}

.board-section .section-headline {
  margin-bottom: var(--s8);
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 3px;
  background: var(--border);
}

.person-card {
  background: var(--bg-warm);
  padding: var(--s4) var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s1);
  transition: background var(--dur) var(--ease);
}

.person-card:hover {
  background: var(--bg-panel);
}

.person-card__role {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--lit);
}

.person-card__name {
  font-size: var(--text-md);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}

/* Revisor cards — visually lighter, same grid */
.person-card--secondary .person-card__role {
  color: var(--ink-muted);
  opacity: 0.7;
}

.person-card--secondary .person-card__name {
  color: var(--ink-muted);
  font-weight: 600;
}

/* ── Gallery reuse note ──────────────────────────────────────────────── */
/* .gallery-section, .gallery-grid, .gallery-item — all from style.css */

/* ── CTA strip ───────────────────────────────────────────────────────── */
.cta-strip {
  padding: var(--s12) 0;
  border-top: 1px solid var(--border);
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s6);
}

.cta-strip__headline {
  font-size: clamp(var(--text-lg), 2.5vw, var(--text-xl));
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--s2);
}

.cta-strip__desc {
  font-size: var(--text-base);
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 54ch;
}

.cta-strip__actions {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cta-strip__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .cta-strip__actions {
    flex-direction: column;
    width: 100%;
  }
}
