/* ── Gardegruppen-Abschnitte ──────────────────────────────────────────── */
.garde-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.garde-section:last-child { border-bottom: none; }

/* Bild rechts bei gerader Position */
.garde-section.flip { direction: rtl; }
.garde-section.flip > * { direction: ltr; }

@media(max-width: 768px) {
  .garde-section,
  .garde-section.flip { grid-template-columns: 1fr; direction: ltr; }
}

/* ── Bild ─────────────────────────────────────────────────────────────── */
.garde-img-wrap {
  overflow: hidden;
  aspect-ratio: 3/2;
}
.garde-img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.garde-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-faint);
}
.garde-img-placeholder svg { width: 3rem; height: 3rem; opacity: 0.25; }

/* ── Info ─────────────────────────────────────────────────────────────── */
.garde-label {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 0.4rem;
}
.garde-title {
  font-family: var(--font-head); font-size: 1.7rem; font-weight: 800;
  color: var(--text); margin-bottom: 0; line-height: 1.2;
}
.garde-desc {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.75;
  margin-bottom: 1.4rem;
}

/* ── Meta-Kacheln ────────────────────────────────────────────────────── */
.garde-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}
.garde-meta-item {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.75rem 0.9rem;
}
.garde-meta-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.garde-meta-icon svg { width: 1rem; height: 1rem; }
.garde-meta-label {
  font-size: 0.62rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--text-faint); margin-bottom: 0.1rem;
}
.garde-meta-value {
  font-size: 0.85rem; font-weight: 600; color: var(--text);
}

/* ── Titel + Instagram-Icon in einer Zeile ───────────────────────────── */
.garde-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.garde-title-row .garde-title { margin-bottom: 0; }

/* ── Trainer (spans both columns in meta grid) ────────────────────────── */
.garde-meta-trainer {
  grid-column: 1 / -1;
}
.garde-trainer-list { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.3rem; }
.garde-trainer-tag {
  font-size: 0.8rem; font-weight: 600; color: var(--text);
}
