Unser Vorstand
    
      Lernen Sie die Mitglieder unseres Vereinsvorstands kennen.
    

    
      
        
        Stefan Markowski
        1. Vorsitzender
      

      
        
        Christian Sartingen
        Stellvertretender Vorsitzender
      

      
        
        Dominic Stalberg
        Sportwart
      

      
        
        Uwe Habbe
        Kassenwart
      

      
        
        Fynn Skrzypczak
        Jugendwart

.vorstand-section {
  padding: 80px 20px;
  background: #f7f7f7;
}

.vorstand-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.vorstand-container h2 {
  font-size: 38px;
  margin-bottom: 10px;
  color: #222;
}

.vorstand-intro {
  margin-bottom: 50px;
  color: #666;
  font-size: 18px;
}

.vorstand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.vorstand-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.vorstand-card:hover {
  transform: translateY(-5px);
}

.vorstand-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.vorstand-card h3 {
  margin-bottom: 8px;
  color: #222;
}

.vorstand-card .rolle {
  font-weight: bold;
  color: #0073aa;
  margin-bottom: 15px;
}

.vorstand-card p {
  color: #555;
  line-height: 1.6;
}