/* =========================
   ÜBERSCHRIFT & INTRO
========================= */
.titel {
  position: sticky;
  top: calc(6vh + 13px); /* Passend zu deinem Liquid-Glass Nav-Trick */
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  padding: 16px 0;
  margin: 0;
  z-index: 1;
  text-align: center;
}

.kunden-section {
  padding: 40px 16px 80px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.kunden-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   KUNDEN GRID & KARTEN
========================= */
.kunden-grid {
  display: grid;
  /* Baut automatisch Spalten: mind. 300px breit */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.kunde-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(210, 105, 30, 0.15); /* Leichter Chocolate-Rand */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kunde-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(210, 105, 30, 0.15);
  border-color: chocolate;
}

/* Header der Karte (Für Logos) */
.kunde-header {
  background: #fdfdfd;
  border-bottom: 1px solid #eee;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px; /* Einheitliche Höhe für alle Logos */
}

.kunde-logo {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

/* Inhalt der Karte (Name & Aufträge) */
.kunde-content {
  padding: 24px;
  flex-grow: 1;
}

.kunde-content h3 {
  font-family: "ArchivoBlack-Regular", sans-serif;
  color: chocolate;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

/* Die Liste der Aufträge */
.auftrag-liste {
  list-style: none;
  padding: 0;
  margin: 0;
}

.auftrag-liste li {
  font-family: "DroidSans", sans-serif;
  color: #444;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  line-height: 1.4;
}

/* Eigener kleiner Aufzählungspunkt im FotoFuchs-Stil */
.auftrag-liste li::before {
  content: "✦"; /* Alternativ: "✔" oder "📸" */
  color: chocolate;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
}

/* =========================
   MOBILE ANSICHT
========================= */
@media (max-width: 768px) {
  .titel {
    top: 87px; /* Gleicher Mobile-Fix wie auf der Fotoseite */
    font-size: 1.8rem;
  }
  
  .kunden-section {
    padding: 24px 16px 64px 16px;
  }
  
  .kunden-grid {
    grid-template-columns: 1fr; /* Karten untereinander */
    gap: 24px;
  }
}