/* ===== GLOBAL ===== */
.about {
  font-family: "Montserrat", sans-serif;
}

/* ===== HEADER ===== */

.about-header {
  padding: 120px 20px 60px;
  background: #edeff4;
  text-align: center;
}

.about-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about-header p {
  color: #666;
  font-size: 1rem;
}


/* ===== SECTION ===== */
.team-section {
  padding: 100px 20px;
  background: white;
}

.team-section.alt {
  background: #f7f9fc;
}

/* ===== HEADLINE ===== */
.team-section h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.9rem;
  font-weight: 600;
  position: relative;
}

/* rote Linie (dein Stil) */
.team-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c40000;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* ===== ROWS ===== */
.team-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* LEITUNG */
.team-row.top {
  margin-bottom: 60px;
}

/* ===== CARD ===== */
.team-card {
  background: white;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;

  width: 240px;

  border: 1px solid #eee;

  transition: all 0.35s ease;
}

/* Hover – moderner */
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

/* ===== LEITUNG HIGHLIGHT ===== */
.team-row.top .team-card {
  border: 1px solid #eee;
}

/* ===== IMAGE ===== */
.team-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;

  margin-bottom: 15px;

  border: 3px solid #f1f1f1;
  transition: 0.3s;
}

/* Hover Bild */
.team-card:hover img {
  transform: scale(1.05);
  border-color: #c40000;
}

/* ===== TEXT ===== */
.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: 600;
  color: #222;
}

.team-card p {
  font-size: 0.9rem;
  color: #777;
}

/* ===== CONTAINER ===== */
.container.center {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

  .about-header {
    padding: 120px 20px 80px;
  }

  .about-header h1 {
    font-size: 2.2rem;
  }

  .team-section {
    padding: 70px 20px;
  }

  .team-section h2 {
    font-size: 1.5rem;
  }

  .team-card {
    width: 100%;
    max-width: 300px;
  }

}

.email-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 12px;

  padding: 8px 14px;

  background: #c40000;
  color: white;
  text-decoration: none;

  border-radius: 20px;
  font-size: 0.85rem;

  transition: all 0.3s ease;
}

.email-btn:hover {
  background: #a00000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(196,0,0,0.3);
}