.vorstand_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vorstand_card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
}

.vorstand_card_head {
  background: linear-gradient(
    180deg,
    var(--color-primary),
    #4f46e5
  );
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vorstand_card_head span {
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
}

.vorstand_card_body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.vorstand_name {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.vorstand_role {
  font-size: .9rem;
  font-weight: 500;
}

.vorstand_area {
  font-size: .9rem;
  color: #555;
  margin-bottom: .5rem;
}

.vorstand_contact {
  font-size: .9rem;
  color: var(--color-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.vorstand_contact i {
  font-size: 1rem;
}

.vorstand_contact:hover {
  text-decoration: underline;
}

.vorstand_vacant {
  font-style: italic;
  color: #777;
}

.vorstand_thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




@media (max-width: 992px) {
  .vorstand_grid {
    grid-template-columns: repeat(2, 1fr);
  } 
}

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