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

.re-cs-strategie-wrap {
  --re-dark:   #203749;
  --re-teal:   #4AF7B0;
  --re-muted:  #4f5963;
  --re-bg:     #f3f4f5;
  --re-pillar: #f0f0f0;
}

.re-cs-strategie {
  background: #ffffff;
}

/* Center label, headline, lead */
.re-cs-strategie-label {
  justify-content: center;
}

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

.re-cs-strategie-h2 em {
  font-style: normal;
  color: var(--re-teal);
}

.re-cs-strategie .re-cs-section-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(13px, 3vw, 16px);
  color: var(--re-muted);
  line-height: 1.6;
  font-weight: 300;
  max-width: 640px;
  margin-bottom: 24px;
}

/* ── Pillars grid ── */
.re-cs-strategy-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 10px 0 32px;
}

.re-cs-pillar {
  background: #f0f0f0;
  border: 0;
  border-radius: 0;
  padding: 60px 18px 18px;
  margin-top: 30px;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.re-cs-pillar:hover {
  box-shadow: 0 8px 16px rgba(32, 55, 73, 0.08);
}

/* ── Pillar number circle ── */
.re-cs-pillar-num {
  border: 2px solid #4AF7B0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 8px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.re-cs-pillar-num span {
  background-color: #4AF7B0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Mark-Heavy", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

/* Connector line below circle */
.re-cs-pillar-num::before,
.re-cs-pillar-num::after {
  content: '';
  position: absolute;
  left: 50%;
  display: inline-block;
}

.re-cs-pillar-num::before {
  background-color: #4AF7B0;
  bottom: -20px;
  width: 2px;
  height: 20px;
  margin-left: -1px;
}

.re-cs-pillar-num::after {
  background-color: #f0f0f0;
  width: 12px;
  height: 8px;
  bottom: -2px;
  margin-left: -12px;
}

.re-cs-pillar h3 {
  font-family: "Mark-Bold", sans-serif;
  font-size: clamp(16px, 4vw, 24px);
  font-weight: 700;
  color: var(--re-dark);
  line-height: 1.3;
  text-align: left;
  margin-bottom: 10px;
}

.re-cs-pillar p {
  font-size: clamp(13px, 3vw, 18px);
  color: var(--re-muted);
  line-height: 1.5;
}

/* ── Impact label ── */
.re-cs-pillar-impact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  font-size: clamp(9px, 2vw, 11px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--re-dark);
}

.re-cs-pillar-impact::before {
  content: '';
  width: 10px;
  height: 2px;
  background: var(--re-dark);
}

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

@media (min-width: 568px) {
  .re-cs-strategy-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .re-cs-pillar {
    padding: 80px 20px 20px;
    margin-top: 40px;
  }
  .re-cs-pillar-num {
    width: 80px;
    height: 80px;
    padding: 10px;
    top: -40px;
  }
  .re-cs-pillar-num span { font-size: 28px; }
  .re-cs-pillar-num::before { bottom: -28px; height: 28px; }
  .re-cs-pillar-num::after { width: 13px; height: 9px; bottom: -2px; margin-left: -14px; }
}

@media (min-width: 1000px) {
  .re-cs-strategy-pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .re-cs-pillar {
    padding: 106px 24px 24px;
    margin-top: 53px;
  }
  .re-cs-pillar-num {
    width: 106px;
    height: 106px;
    padding: 12px;
    top: -53px;
  }
  .re-cs-pillar-num span { font-size: 36px; }
  .re-cs-pillar-num::before { bottom: -34px; height: 34px; }
  .re-cs-pillar-num::after { width: 15px; height: 10px; margin-left: -16px; }
  .re-cs-pillar h3 { font-size: 24px; }
  .re-cs-pillar p { font-size: 18px; }
}

@media (min-width: 1200px) {
  .re-cs-strategy-pillars { margin: 10px 0 42px; }
}
