/* ==========================================
   Team Hero
========================================== */

.team-hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  align-items: center;
  padding: 140px 0 180px;
  background-image: url("../map-hero.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.team-hero .container {
  position: relative;
  z-index: 2;
  transform: translateY(-40px);
}

.team-hero h1 {
  max-width: 900px;
  font-size: clamp(3.2rem, 5vw, 5rem);
  line-height: 0.95;
  margin-bottom: 32px;
}

.team-hero .lead-text {
  max-width: 700px;
  margin-top: 40px;
  font-size: 1.35rem;
  line-height: 1.8;
  font-weight: 400;
  color: #23314d;
}

.team-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.22);
  pointer-events: none;
}


/* ==========================================
   TEAM GRID
========================================== */

.team-grid {
  max-width: 1120px;
  margin: 20px auto 100px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.team-grid {
    position: relative;
    z-index: 5;
    margin-top: -120px;
}


/* ==========================================
   TEAM CARD
========================================== */

.team-card {
    background: #fff;
    border-radius: 32px;
    padding: 35px;

    box-shadow:
        0 12px 35px rgba(0,0,0,0.08);

    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
}


/* ==========================================
   FOTO
========================================== */

.team-photo {
    width: 170px;
    height: 170px;

    object-fit: cover;

    border-radius: 28px;
    border: 4px solid var(--teal);

    display: block;
    margin: 0 auto 24px;
}


/* ==========================================
   REGION
========================================== */

.team-region {
    display: inline-block;

    padding: 8px 16px;
    border-radius: 999px;

    background: #e8f7f6;

    color: var(--teal);

    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;

    text-transform: uppercase;

    margin-bottom: 18px;
}


/* ==========================================
   NAME
========================================== */

.team-card h3 {
    font-size: 2rem;
    line-height: 1.1;

    color: var(--blue);

    margin-bottom: 8px;
}


/* ==========================================
   ROLLE
========================================== */

.team-role {
    color: #4f5968;
    font-weight: 600;

    margin-bottom: 25px;
}


/* ==========================================
   VORSTELLUNG
========================================== */

.team-about {
    color: #5d6675;
    line-height: 1.8;

    margin-bottom: 30px;
}


/* ==========================================
   KONTAKT
========================================== */

.team-contact {
    border-top: 1px solid #e5e7eb;

    padding-top: 20px;
}

.team-contact p {
    margin: 10px 0;
    line-height: 1.6;
}

.team-contact strong {
    color: var(--blue);
}

.team-hero .lead-text {
  max-width: 700px;
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 500;
  color: #23314d;
}