/* ==========================================================================
   Säulen — Vier anerkannte Satzungszwecke (Karten)
   --------------------------------------------------------------------------
   Rendert die vier Statutory-Purposes als Grid aus Karten:
   ikonische Darstellung (SVG), Satzungszweck (id) und § n AO (ao_nr).
   ========================================================================== */

.saeulen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-5);
  margin: var(--sp-6) 0;
}

.saeule {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--sp-4);
  padding: var(--sp-4);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 2px rgba(15, 27, 51, 0.05);
}

.saeule__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--c-green-50, #eef7ef);
  color: var(--c-green, #1d7a3a);
}

.saeule__svg {
  width: 32px;
  height: 32px;
}

.saeule__body {
  min-width: 0;
}

.saeule__title {
  margin: 0 0 var(--sp-2);
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--c-heading, #0f1b33);
}

.saeule__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin: 0 0 var(--sp-3);
}

.saeule__tag {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 2px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.saeule__tag--purpose {
  background: #eaf0f8;
  color: #2a4a7a;
}

.saeule__tag--purpose code {
  font-weight: 700;
  background: none;
  padding: 0;
  color: inherit;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
}

.saeule__tag--ao {
  background: #fdf2e3;
  color: #9a5b12;
}

.saeule__text {
  margin: 0;
  color: var(--c-text-soft, #41506b);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 420px) {
  .saeule {
    grid-template-columns: 1fr;
  }
  .saeule__icon {
    width: 48px;
    height: 48px;
  }
  .saeule__svg {
    width: 26px;
    height: 26px;
  }
}
