.vorstand-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr 1.7fr;
  gap: 1rem;
  align-items: start;
  margin: 0 auto 2rem auto;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(107,142,35,0.06);
  padding: 2rem 1rem 1.5rem 1rem;
}

.vorstand-grid .grid-header {
  font-weight: bold;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #6b8e23;
  font-size: 1.07rem;
}

.vorstand-grid .grid-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid #eee;
  font-size: 1.03rem;
}

.vorstand-grid .grid-item a {
  color: #2e7d32;
  text-decoration: underline;
  word-break: break-all;
}

.vorstand-grid .grid-item a:hover {
  color: #ff9800;
}

@media (max-width: 800px) {
  .vorstand-grid {
    grid-template-columns: 1fr 1fr;
  }
  .vorstand-grid .grid-header,
  .vorstand-grid .grid-item {
    border-bottom: none;
    padding: 0.4rem 0;
  }
}

@media (max-width: 500px) {
  .vorstand-grid {
    grid-template-columns: 1fr;
    padding: 1rem 0.2rem;
  }
}
@media (max-width: 500px) {
  .vorstand-grid {
    display: block;
    padding: 1rem 0.2rem;
    box-shadow: none;
  }
  .vorstand-grid .grid-header {
    display: none;
  }
  .vorstand-grid .grid-item {
    display: block;
    width: 100%;
    border: none;
    margin-bottom: 0.25rem;
    padding: 0.18rem 0.6rem;
    font-size: 1.08rem;
    background: none;
  }
  /* Jede "Zeile" als Box */
  .vorstand-grid .grid-item:nth-child(5),
  .vorstand-grid .grid-item:nth-child(9),
  .vorstand-grid .grid-item:nth-child(13),
  .vorstand-grid .grid-item:nth-child(17),
  .vorstand-grid .grid-item:nth-child(21),
  .vorstand-grid .grid-item:nth-child(25),
  .vorstand-grid .grid-item:nth-child(29) {
    margin-top: 1.2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(86,107,47,0.08);
    padding-top: 1rem;
    padding-bottom: 1rem;
    border: 1.5px solid var(--green-light);
  }
  /* Zwischenüberschriften für jede Info einfügen */
  .vorstand-grid .grid-item::before {
    font-size: 0.94em;
    font-weight: 600;
    color: var(--green-medium);
    display: block;
    margin-bottom: 0.08em;
  }
  /* Amt */
  .vorstand-grid .grid-item:nth-child(5)::before,
  .vorstand-grid .grid-item:nth-child(9)::before,
  .vorstand-grid .grid-item:nth-child(13)::before,
  .vorstand-grid .grid-item:nth-child(17)::before,
  .vorstand-grid .grid-item:nth-child(21)::before,
  .vorstand-grid .grid-item:nth-child(25)::before,
  .vorstand-grid .grid-item:nth-child(29)::before {
    content: "Amt / Bereich";
  }
  /* Vertreter */
  .vorstand-grid .grid-item:nth-child(6)::before,
  .vorstand-grid .grid-item:nth-child(10)::before,
  .vorstand-grid .grid-item:nth-child(14)::before,
  .vorstand-grid .grid-item:nth-child(18)::before,
  .vorstand-grid .grid-item:nth-child(22)::before,
  .vorstand-grid .grid-item:nth-child(26)::before,
  .vorstand-grid .grid-item:nth-child(30)::before {
    content: "Vertreter";
  }
  /* Stellvertreter */
  .vorstand-grid .grid-item:nth-child(7)::before,
  .vorstand-grid .grid-item:nth-child(11)::before,
  .vorstand-grid .grid-item:nth-child(15)::before,
  .vorstand-grid .grid-item:nth-child(19)::before,
  .vorstand-grid .grid-item:nth-child(23)::before,
  .vorstand-grid .grid-item:nth-child(27)::before,
  .vorstand-grid .grid-item:nth-child(31)::before {
    content: "Stellvertreter";
  }
  /* E-Mail */
  .vorstand-grid .grid-item:nth-child(8)::before,
  .vorstand-grid .grid-item:nth-child(12)::before,
  .vorstand-grid .grid-item:nth-child(16)::before,
  .vorstand-grid .grid-item:nth-child(20)::before,
  .vorstand-grid .grid-item:nth-child(24)::before,
  .vorstand-grid .grid-item:nth-child(28)::before,
  .vorstand-grid .grid-item:nth-child(32)::before {
    content: "E-Mail";
  }
}
