#footer {
  display: none;
}

/* ===== Kartenbilder ===== */

.card-image img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
}

/* ===== Logo ===== */

.navbar-brand img {
  height: 75px !important;
  width: auto !important;
}

/* ===== Logo + Titel ===== */

.logo-with-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Text neben Logo */

.site-title-text {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

/* ===== Mobile ===== */

@media (max-width: 768px) {
  .site-title-text {
    font-size: 20px;
  }
}

/* ===== Vorstand ===== */

.vorstand-wrapper {
  max-width: 900px;
}

.vorstand-img {
  width: 30%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

.vorstand-table {
  border-collapse: collapse;
}

.vorstand-table td {
  padding: 0.4rem 1rem 0.4rem 0;
  vertical-align: top;
}

/* Mobile */
@media (max-width: 768px) {
  .vorstand-img {
    width: 100%;
  }
}

/* ===== Vorstand Cards (2x2) ===== */

.vorstand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.vorstand-card {
  background: #fff;
  border-top: 6px solid #333;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 2.2rem 1.8rem;
  text-align: center;
}

.vorstand-card .name {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.6rem 0;
}

.vorstand-card .role {
  font-size: 1.2rem;
  opacity: 0.7;
  margin: 0 0 2rem 0;
}

.vorstand-card .details {
  font-size: 1.05rem;
  line-height: 1.7;
  white-space: pre-line;
}

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