/**
 * Öffentliche Team-Seite (/unser-team/) – an Premium-Marketing angelehnt
 */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bc-team-page {
  --bc-team-text: #0f172a;
  --bc-team-muted: #64748b;
  --bc-team-border: #e2e8f0;
  --bc-team-surface: #f8fafc;
  --bc-team-primary: #1d4ed8;
  --bc-team-radius: 14px;
  --bc-team-container: min(1160px, 92vw);
}

.bc-team-hero {
  padding: 2.5rem 1rem 3rem;
  background: linear-gradient(180deg, #f1f5f9 0%, #fff 100%);
  border-bottom: 1px solid var(--bc-team-border);
}

.bc-team-hero__inner {
  max-width: var(--bc-team-container);
  margin: 0 auto;
  text-align: center;
}

.bc-team-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--bc-team-text);
}

.bc-team-hero__intro {
  margin: 0 auto;
  max-width: 52ch;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--bc-team-muted);
}

.bc-team-grid-section {
  padding: 3rem 1rem 4.5rem;
  background: #fff;
}

.bc-team-grid-section__inner {
  max-width: var(--bc-team-container);
  margin: 0 auto;
}

.bc-team-grid-section__heading {
  margin: 0 0 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bc-team-text);
  text-align: center;
}

.bc-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .bc-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .bc-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.bc-team-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  background: var(--bc-team-surface);
  border: 1px solid var(--bc-team-border);
  border-radius: var(--bc-team-radius);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.bc-team-card:hover {
  box-shadow: 0 18px 40px -18px rgba(15, 23, 42, 0.15);
  transform: translateY(-2px);
}

.bc-team-card__media {
  aspect-ratio: 4 / 3;
  background: #e2e8f0;
  overflow: hidden;
}

.bc-team-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-team-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #475569;
  background: linear-gradient(145deg, #e2e8f0, #cbd5e1);
}

.bc-team-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
}

.bc-team-card__name {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--bc-team-text);
}

.bc-team-card__role {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bc-team-primary);
}

.bc-team-card__bio {
  margin: 0.25rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--bc-team-muted);
}

.bc-team-empty {
  margin: 0;
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 1rem;
  color: var(--bc-team-muted);
  background: var(--bc-team-surface);
  border: 1px dashed var(--bc-team-border);
  border-radius: var(--bc-team-radius);
}
