/* Ministry-Detail (geteilt) — „Was wir tun"-Doppelspalte.
   Spiegelt zefabe.css, damit alle Ministry-Detailseiten dieselbe Struktur nutzen
   können, ohne die ZeFaBe-Datei anzufassen. Nur vorhandene Tokens. */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(40px, 6vw, 96px);
  border-top: 1px solid var(--line-onW);
}
.what-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-onW);
}
.what-item .eyebrow { margin-top: 4px; }
.what-item__title {
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.what-item__desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 6px 0 0;
  max-width: 420px;
}
@media (max-width: 760px) {
  .what-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Projekt-Tiles – „Projekte dieses Ministries" als dezent
   gruppierte Kacheln (nur diese Liste; Gebets-/Material-Zeilen
   bleiben unberührt, weil eigener Modifier).
   ============================================================ */
.list-rows--tiles { gap: 14px; }
.list-row--tile {
  border: 2px solid color-mix(in srgb, var(--blue) 22%, var(--line));
  border-radius: var(--r-4);
  padding: 20px 22px;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              border-color .18s var(--ease), opacity .18s var(--ease);
}
/* Basis-Dimmen (.list-row:hover) für Kacheln neutralisieren … */
.list-row--tile:hover { opacity: 1; }
/* … alle Projekte sind klickbar → beim Hover leicht anheben + Rahmen betonen. */
a.list-row--tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-m);
  border-color: color-mix(in srgb, var(--blue) 48%, var(--line));
}
/* Inaktive Projekte (In Vorbereitung / Archiv): Inhalt dezent ausgegraut,
   gleicher Kachel-Rahmen wie aktive (gruppiert sauber), weiter anklickbar. */
.list-row--tile.is-muted { background: color-mix(in srgb, var(--muted) 6%, transparent); }
.list-row--tile.is-muted .list-row__lead,
.list-row--tile.is-muted .list-row__title { color: var(--muted); }
.list-row--tile.is-muted .list-row__meta { color: var(--muted-sof); }
.list-row--tile.is-muted:hover .list-row__title { color: var(--ink); }
@media (max-width: 560px) {
  .list-row--tile { padding: 18px 16px; }
}

/* ============================================================
   Sticky In-Page-Jumpnav – Anker-Ziele unter Header + Leiste
   (--jump-offset wird von DetailJumpNav live gesetzt; Fallback 128px)
   ============================================================ */
.jump-target { scroll-margin-top: var(--jump-offset, 128px); }
