.vorstand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.vorstandskarte {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.vorstandskarte-bild {
  width: 40%;
  min-width: 40%;
}

.vorstandskarte-bild img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
}

.vorstandskarte-name {
  font-weight: bold;
  margin: 0 0 4px;
}

.vorstandskarte-rolle {
  font-style: italic;
  margin: 0;
}

@media (max-width: 600px) {
  .vorstand-grid {
    grid-template-columns: 1fr;
  }
}
