.vgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 1rem; }
.vc {
  background: var(--bg2); border-radius: 12px; border: 1px solid var(--border);
  padding: 1.4rem; text-align: center; transition: transform 0.22s, border-color 0.22s;
}
.vc:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.vav {
  width: 60px; height: 60px; border-radius: 50%;
  margin: 0 auto 0.7rem; display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.vav.o { background: var(--orange-dim); }
.vav.b { background: var(--blue-dim); }
.vav.g { background: var(--green-dim); }
.vc h3 { font-family: var(--font-head); font-size: 0.92rem; font-weight: 700; margin-bottom: 0.2rem; color: var(--text); }
.vrole {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 0.25rem; color: var(--text-faint);
  line-height: 1.35;
  min-height: 2.7em; /* Platz für 2 Zeilen */
  display: flex; align-items: center; justify-content: center;
}
.vname { font-size: 0.82rem; color: var(--text-muted); }
.vhas { font-size: 0.72rem; color: var(--text-faint); margin-top: 0.15rem; font-style: italic; }

.vmitglied {
  background: var(--bg2); border-radius: 14px; padding: 2rem;
  border: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start;
}
@media(max-width:620px) { .vmitglied { grid-template-columns: 1fr; } }
.vmitglied h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.9rem; color: var(--text); }
.vlist { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.4rem; }
.vlist li { font-size: 0.86rem; color: var(--text-muted); padding-left: 1.25rem; position: relative; line-height: 1.5; }
.vlist li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.vbtn {
  display: inline-block; padding: 0.65rem 1.4rem;
  background: var(--orange); color: white; text-decoration: none;
  border-radius: 8px; font-family: var(--font-body); font-size: 0.84rem;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.vbtn:hover { background: #d4620a; transform: translateY(-1px); }

.vverband-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.vverband {
  flex: 1 1 160px;
  max-width: 200px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1rem 1.2rem;
  text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.vverband:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
}
.vverband-logo {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  padding: 0.9rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: box-shadow 0.22s;
}
.vverband:hover .vverband-logo {
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.vverband-logo img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
}
/* Fallback abbreviation shown when image fails to load */
.vverband-logo img + .vverband-fallback { display: none; }
.vverband-logo img[src=""] ~ .vverband-fallback,
.vverband-fallback {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.vverband-name {
  font-size: 0.73rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.45;
}
@media(max-width:500px) {
  .vverband-grid { justify-content: center; }
  .vverband { max-width: 160px; }
}

/* ── Ausschuss Hierarchie ─────────────────────────────────────────────────── */
.vsub-btn {
  margin-top: 0.65rem;
  display: inline-flex; align-items: center; gap: 0.25rem;
  background: none;
  border: none;
  padding: 0.22rem 0;
  color: inherit;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.18s;
}
.vsub-btn:hover { opacity: 1; }
.vsub-arrow { display: inline-block; transition: transform 0.2s; }
.vsub-btn[aria-expanded="true"] .vsub-arrow { transform: rotate(90deg); }

.vsub-panel {
  grid-column: 1 / -1;
  padding: 0.9rem 1rem 0.75rem;
  background: var(--bg2);
  border-radius: 12px;
  border-left: 3px solid var(--orange);
  animation: vsub-open 0.2s ease;
}
@keyframes vsub-open {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}
.vsub-panel-label {
  font-size: 0.65rem; color: var(--text-faint);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.vsub-panel-label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}
.vsub-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
.vc.vsub { padding: 1rem; opacity: 0.82; }
.vc.vsub:hover { opacity: 1; }
.vc.vsub h3 { font-size: 0.84rem; }
.vc.vsub .vrole { font-size: 0.63rem; }

a.vanfahrt { cursor: pointer; }
a.vanfahrt:hover { border-color: var(--orange); }
a.vanfahrt:hover .vname { color: var(--orange); }

.vinfo-box {
  background: var(--orange-dim); border-radius: 12px;
  border-left: 3px solid var(--orange); padding: 1.2rem 1.4rem;
}
.vinfo-box h4 { font-family: var(--font-head); font-size: 0.92rem; font-weight: 700; color: var(--orange); margin-bottom: 0.4rem; }
.vinfo-box p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
