/* Basis: Box selbst mittig im Layout halten */
 .custom-team-box {
   display: flex;
   align-items: center;
   justify-content: center;  /* zentriert die Kinder */
   gap: 40px;
   flex-wrap: wrap;
   margin-top: 40px;

   max-width: 100%;         /* Breite begrenzen */
   margin: 40px auto 0;      /* HIER: horizontal zentrieren */
 }
 
 /* Mobile-Optimierung */
 @media (max-width: 768px) {
   .vc_row.custom-team-box {
     gap: 24px !important;
     text-align: center;      /* Text in der Box mittig */
   }
     .vc_row.custom-team-box .team-img   {
       margin: 10px auto;          /* Bild mittig */
   }
   /* Falls der alte Abstand stört – raus damit */
     .vc_row.custom-team-box .team-img img {
       margin-bottom: 0 !important;
   }
     .team-img {
     overflow: hidden;
     width: 1164px;
     height: 1164px;
   }
 }

.team-img {
  overflow: hidden;
  width: 164px;
  height: 164px;
  background-color: #034e7b;
  border: 3px solid #a37c00;
  border-radius: 50%;
  margin-bottom: 20px;
}

.team-img img {
  width: 164px;
  height: 164px;
  object-fit: cover;
}
/*
.custom-team-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e3550;

}
.custom-team-box p {
  font-size: 16px;
  color: #1e3550;
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
*/
.custom-team-box i {
  color: #9ccc1c;
  font-size: 18px;
  min-width: 20px;
}
.custom-team-left {
  display: flex;
  justify-content: flex-end; /* oder center, je nach Abstand */
  align-items: center;
}
