/* ---------------------------------
   VORSTAND
---------------------------------- */

.vorstandBox {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Karten */
.vorstandBox  > div {
  width: calc(50% - 1rem);
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;  
  box-shadow: var(--box-shadow);
}

.vorstandBox .vorstand-thumb {
  display: flex;
  flex-wrap: wrap;
  width: 133px;
  aspect-ratio: 2 / 3;
}

.vorstandBox .vorstand-thumb a {
  line-height: 0;
}

.vorstandBox .vorstand-thumb img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 2 / 3;
}

.vorstandBox .vorstand-daten {
  width: calc(100% - 133px);
  padding: 1rem;
}

.vorstandBox .vorstand-daten p {
  margin: 0;
}

.vorstandBox .vorstand-daten p:first-child {
  font-weight: 500;
}

.vorstandBox .vorstand-daten a[href^="mailto:"] {
  word-wrap: break-word;   
  hyphens: auto;   
}

/* ---------------------------------
   RESPONSIVE BREAKPOINTS
---------------------------------- */

@media screen and (max-width: 950px) {
.vorstandBox > div {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;  
  box-shadow: var(--box-shadow);
}
}

