
/* ── Section ── */
.cs-section {
  margin: 3rem auto;
  max-width: 1200px;
  padding: 0 1.5rem;
}

.cs-section-label {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1rem;
}

/* ── Card Grid ── */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

/* ── Card: Icon oben, Text darunter ── */
.cs-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.4rem 1.1rem 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cs-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* Leere Platzhalter-Absätze ausblenden */
.cs-card p:empty {
  display: none;
}

.cs-card-icon {
  width: 96px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.cs-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.35;
  margin: 0;
}

.cs-card-text {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* ── CTA Bar ── */
.cs-cta {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cs-cta-text {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

.cs-cta-sub {
  font-size: 13px;
  color: #888;
  margin-top: 3px;
}

.cs-cta-btn {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.cs-cta-btn:hover { background: #333; }


/* ── Responsive ── */

/* Tablet (≤ 900px): 3 Spalten, Icon etwas kleiner */
@media (max-width: 900px) {
  .cs-section { margin: 2rem auto; padding: 0 1.25rem; }
  .cs-section-label { font-size: 1.2rem; }
  .cs-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .cs-card-icon { width: 80px; }
  .cs-card-title { font-size: 14px; }
}

/* Mobil (≤ 600px): 2 Spalten */
@media (max-width: 600px) {
  .cs-section { margin: 1.5rem auto; padding: 0 1rem; }
  .cs-section-label { font-size: 1.05rem; margin-bottom: 0.75rem; }
  .cs-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .cs-card { padding: 1rem 0.75rem; gap: 0.45rem; }
  .cs-card-icon { width: 64px; }
  .cs-card-title { font-size: 13px; }
  .cs-card-text  { font-size: 12px; }
  .cs-cta { flex-direction: column; align-items: flex-start; }
}
