/* =========================================================
   IBL Team-Block – Design-Anpassungen (2024/2025)
   Ergänzt styles-2024.css (wird danach geladen).
   Betrifft nur den Team-Block (.employees-section / .person-card).
   ========================================================= */

/* Name in IBL-Gelb (bisher #1d1d1b) */
.employees-section .person-card figcaption h3 {
  color: #fbba00;
}

/* Die feine Linie unter allen Links liefert bereits das Theme via a:after
   (border-bottom). Sie greift auch auf E-Mail und Telefon – daher hier KEINE
   zusaetzliche text-decoration, sonst entsteht eine doppelte Unterstreichung. */

/* Kontakt-Zeile: E-Mail links, Telefon rechts daneben (eine Zeile).
   Jeder Eintrag als contact-item, damit das eeb-Schloss-Icon bei der
   E-Mail bleibt und nicht in den Spalten-Abstand rutscht. */
.employees-section .person-card figcaption .person-card-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 28px;
}
.employees-section .person-card figcaption .person-card-contact .contact-item {
  display: inline-flex;
  align-items: center;
}

/* Variante ohne Portrait: Karte ist nur die figcaption-Box.
   Oberes Padding leicht angeglichen, damit der Name sauber sitzt. */
.cards-list--no-image .person-card figcaption {
  padding-top: 40px;
}
@media (max-width: 991px) {
  .cards-list--no-image .person-card figcaption {
    padding-top: 24px;
  }
}
