/* ============================================================
   ZIELE.CSS — Unsere Ziele section
   Vidai AG · vidai.ch
   ============================================================ */

#ziele {
  background: var(--light);
}

.ziele-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ziel-card {
  background: var(--white);
  padding: 36px 32px;
  transition: transform var(--ease), box-shadow var(--ease);
}

.ziel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}

.ziel-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--light);
  line-height: 1;
  margin-bottom: 20px;
  -webkit-text-stroke: 1px var(--stone);
}

.ziel-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
}

.ziel-card p {
  font-size: 15px;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.8;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .ziele-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
