/* ===============================
   Team Anzeige – stabil + mobilfreundlich
================================ */

.team-container {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Wrapper: links Bild+Buttons, rechts Details */
.team-wrapper {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-sizing: border-box;
}

/* Linke Spalte fixiert: Bild + Buttons */
.team-left {
  width: 260px;
  flex: 0 0 260px;
}

/* Bild einheitlich groß */
.team-image {
  width: 260px;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  background: #f0f0f0;
}

/* Buttons bleiben fest unter dem Bild */
.team-nav {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Buttons */
.team-btn {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  font-size: 20px;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.team-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Rechte Seite: Text */
.team-details {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  line-height: 1.45;
  color: #222;
  box-sizing: border-box;
}

.team-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-bereich {
  font-style: normal;
  font-size: 19px;         
  line-height: 1.5;
  margin-bottom: 14px;
  color: #222;
}

.team-line {
  margin-bottom: 6px;
}

/* Zusatzqualifikationen */
.team-qualification {
  margin: 6px 0 0 0;
  padding-left: 0;
  list-style: none;
}

.team-qualification li {
  display: flex;
  align-items: flex-start;
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 4px;
}

/* Punkt exakt vor dem Text */
.team-qualification li::before {
  content: "•";
  display: inline-block;
  width: 1em;              /* fixiert den Abstand */
  margin-right: 0.2em;     /* minimal, kontrolliert */
  text-align: center;
  flex-shrink: 0;
}

/* ===============================
   Responsive (Mobile)
================================ */
@media (max-width: 768px) {
  .team-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .team-left {
    width: 100%;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .team-image {
    width: 100%;
    max-width: 340px;
    height: 320px;
  }

  .team-nav {
    width: 100%;
    justify-content: center;
    gap: 20px;
  }

  .team-btn {
    font-size: 22px;
    padding: 12px 18px;
    border-radius: 10px;
  }

  .team-details {
    width: 100%;
    margin-top: 12px;
  }
}
/* ===== Typografie-Anpassung ===== */

/* Grundschrift größer */
.team-details {
  font-size: 18px; /* vorher ~15px */
  line-height: 1.5;
}

/* Name proportional mitziehen */
.team-name {
  font-size: 21px;
}

/* Bereich / Verantwortung zusammen */
.team-bereich {
  font-style: italic;
  margin-bottom: 12px;
}

/* Zusatzqualifikationen Block */
.team-zusatz-title {
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 6px;
}

.team-qualification li {
  font-size: 17px;
}
/* =========================================
   FEINSCHLIFF TEXTBLÖCKE – FINAL OVERRIDE
========================================= */

/* Bereich + Verantwortung: nicht kursiv, größer */
.team-details .team-bereich {
  font-style: normal !important;
  font-size: 19px !important;
  line-height: 1.5 !important;
  margin-bottom: 14px !important;
  color: #222 !important;
}

/* Zusatzqualifikationen: bündige Aufzählung */
.team-details .team-qualification {
  margin: 8px 0 0 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
}

.team-details .team-qualification li {
  display: flex !important;
  align-items: flex-start !important;
  font-size: 17px !important;
  line-height: 1.4 !important;
  margin-bottom: 4px !important;
}

/* Punkt exakt vor dem Wort */
.team-details .team-qualification li::before {
  content: "•" !important;
  display: inline-block !important;
  width: 1em !important;
  margin-right: 0.15em !important;
  text-align: center !important;
  flex-shrink: 0 !important;
}
/* ===== Zusatzqualifikationen – FINAL, stabil ===== */

.team-details .team-qualification {
  margin: 8px 0 0 0;
  padding: 0;
  list-style: none;
}

.team-details .team-qualification li {
  display: grid;
  grid-template-columns: 1em auto;
  column-gap: 0.3em;
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 4px;
}

.team-details .team-qualification .bullet {
  text-align: center;
  font-weight: normal;
}

.team-details .team-qualification .text {
  display: block;
}
