/* ── LEISTUNGEN ───────────────────────────────── */

/* 3-column layout: image | text | tags */
.leistung-block {
  display: grid; grid-template-columns: 40% 1fr;
  gap: 0; align-items: stretch;
  border-bottom: 1px solid var(--line);
  min-height: 480px;
}
.leistung-block:nth-child(even) {
  direction: rtl; /* Bild rechts bei geraden Blöcken */
}
.leistung-block:nth-child(even) > * {
  direction: ltr;
}

/* Bild-Bereich */
.leistung-img {
  background-size: cover;
  background-position: center;
  background-color: var(--cream-d);
  min-height: 400px;
}

/* Text-Bereich */
.leistung-content {
  padding: 4rem 5vw;
  display: flex; flex-direction: column; justify-content: center;
}

.leistung-num-large {
  font-family: var(--ff-d); font-size: 5rem; font-weight: 300;
  color: var(--cream-d); line-height: 1; display: block; margin-bottom: -1rem;
}
.leistung-block:nth-child(even) .leistung-num-large { color: var(--cream); }
.leistung-block:nth-child(even) .leistung-content { background: var(--cream-d); }

.leistung-h {
  font-family: var(--ff-d); font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  font-weight: 400; line-height: 1.15; color: var(--ink); margin-bottom: 0.4rem;
}
.leistung-sub {
  font-family: var(--ff-d); font-style: italic;
  font-size: 1.15rem; color: var(--stone); margin-bottom: 2rem;
}
.leistung-body {
  font-size: 1.2rem; font-weight: 300;
  line-height: 1.9; color: var(--stone); margin-bottom: 2.5rem;
}
.leistung-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  font-size: 1.08rem; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--stone); border: 1px solid var(--line);
  padding: 0.4rem 0.85rem;
}

/* Für wen */
.fuer-wen {
  background: var(--cream-d); padding: 6rem 5vw;
  border-bottom: 1px solid var(--line);
}

/* Responsive */
@media (max-width: 900px) {
  .leistung-block {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .leistung-block:nth-child(even) {
    direction: ltr;
  }
  .leistung-img {
    min-height: 280px;
  }
  .leistung-content {
    padding: 3rem 1.5rem;
  }
}
