/* =============================================
   CS Ausgangslage Block
   Prefix: .re-cs-
   ============================================= */

/* ── Shared Section Styles ── */
.re-cs-section {
  padding: 40px 16px;
}

.re-cs-section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 8px;
}

.re-cs-section-label {
  font-size: clamp(10px, 2vw, 11px);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--re-dark, #203749);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.re-cs-section-label::before {
  content: '';
  display: inline-block;
  width: clamp(12px, 3vw, 20px);
  height: 2px;
  background: var(--re-dark, #203749);
}

.re-cs-section h2 {
  font-family: "Mark-Bold", sans-serif;
  font-size: clamp(20px, 5vw, 34px);
  font-weight: 700;
  color: var(--re-dark, #203749);
  line-height: 1.2;
  margin-bottom: 10px;
}

.re-cs-section h2 em {
  font-style: normal;
  color: #4AF7B0;
}

/* ── Ausgangslage specific ── */
.re-cs-ausgangslage-wrap {
  --re-dark:   #203749;
  --re-white:  #ffffff;
  --re-muted:  #4f5963;
  --re-teal:   #4AF7B0;
}

.re-cs-ausgangslage {
  background: var(--re-white);
  padding-bottom: 40px;
}

.re-cs-ausgangslage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.re-cs-challenge-text {
  font-size: clamp(13px, 3vw, 15px);
  color: var(--re-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ── Bullet list ── */
.re-cs-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.re-cs-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(12px, 2.8vw, 14px);
  color: var(--re-muted);
  line-height: 1.5;
}

.re-cs-bullet-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--re-teal);
  border-radius: 2px;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ── Ziel Card ── */
.re-cs-ziel-card {
  background: #203749;
  border-radius: 6px;
  padding: clamp(24px, 5vw, 42px);
  height: 100%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.re-cs-ziel-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.re-cs-ziel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(32, 55, 73, 0.92) 0%,
    rgba(32, 55, 73, 0.84) 55%,
    rgba(32, 55, 73, 0.92) 100%
  );
  z-index: 1;
}

.re-cs-ziel-card-content {
  position: relative;
  z-index: 2;
  min-height: 100%;
}

.re-cs-ziel-card h3 {
  font-family: "Mark-Bold", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.re-cs-ziel-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.re-cs-ziel-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.re-cs-ziel-num {
  font-family: "Mark-Heavy", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #4AF7B0;
  white-space: nowrap;
}

.re-cs-ziel-txt {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════════ */

@media (min-width: 568px) {
  .re-cs-section { padding: 52px 20px; }
  .re-cs-section-inner { padding: 0 12px; }
}

@media (min-width: 768px) {
  .re-cs-section { padding: 60px 30px; }
  .re-cs-section-inner { padding: 0 20px; }
  .re-cs-ausgangslage-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .re-cs-challenge-text {
    font-size: clamp(14px, 2.5vw, 15px);
    margin-bottom: 20px;
  }
  .re-cs-bullet-list { gap: 10px; }
}

@media (min-width: 1024px) {
  .re-cs-section { padding: 70px 40px; }
  .re-cs-section-inner { padding: 0; }
  .re-cs-ausgangslage-grid { gap: 40px; }
}

@media (min-width: 1200px) {
  .re-cs-section { padding: 78px 60px; }
  .re-cs-ausgangslage-grid { gap: 48px; }
  .re-cs-ausgangslage { padding-bottom: 80px; }
}
