/*
  Teamseite. Allgemeine Styles in custom.css / index.css.
*/

.team-kopf {
  max-width: 45rem;
  margin-bottom: 3rem;
}
.team-kicker {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-accent);
  margin-bottom: .4rem;
}
.team-kopf h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15em;
  margin-bottom: .75rem;
}
.team-lead {
  font-size: 1.35rem;
  line-height: 1.45em;
  color: var(--color-text);
}

.team-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin: 0;
}
.team-member {
  list-style: none;
}
.team-foto {
  aspect-ratio: 6 / 7;
  background: var(--color-light);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.team-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Einheitlicher Look: alle Teambilder in Schwarz-Weiss.
     Kaschiert unterschiedliche Bildqualitäten, wirkt editorial. */
  filter: grayscale(1) contrast(1.02);
}
.team-foto-ph {
  color: #c9c4ba;
  font-size: 2.5rem;
}
.team-info h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .15rem;
}
.team-rolle {
  color: var(--color-accent);
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: .5rem;
}
.team-qual {
  color: var(--color-text-grey);
  font-size: .9rem;
  line-height: 1.5em;
}
.team-web {
  margin-top: .4rem;
  font-size: .9rem;
}
.team-web a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}
.team-web a:hover { text-decoration: underline; }

@media screen and (min-width: 40rem) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (min-width: 60rem) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
