/* ============================================================
   SECTION 10: SICHERHEIT, DIE ZUR METHODE GEHÖRT
   Keine Cards — sachliche Dokumentation, reine Typografie.
   ============================================================ */

.safety {
  background-color: var(--background-secondary);
  padding-block: var(--section-padding-y);
}

/* ── Zweispaltig: Headline links, Blocks rechts ── */
.safety-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(48px, 7vw, 104px);
  align-items: start;
}

/* ── Linke Spalte ── */
.safety-header {
  position: sticky;
  top: clamp(80px, 10vw, 112px);
}

.safety-headline {
  font-size: var(--font-section-headline);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

/* ── Rechte Spalte: Blocks ── */
.safety-blocks {
  display: flex;
  flex-direction: column;
}

/* ── Einzelner Block ── */
.safety-block {
  padding-block: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--border-subtle);
}

.safety-block:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.safety-block-inner {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: baseline;
}

.safety-block-label {
  font-size: var(--font-caption);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding-top: 2px;
}

.safety-block-body {
  font-size: var(--font-body);
  line-height: 1.68;
  color: var(--text-secondary);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .safety-layout {
    grid-template-columns: 1fr;
  }

  .safety-header {
    position: static;
  }
}

@media (max-width: 540px) {
  .safety-block-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
