/* ============================================================
   Chalet Steps Widget
   ============================================================ */

.csw-wrapper {
  width: 100%;
  padding: 48px 20px;
  box-sizing: border-box;
}

/* ── Titre ── */
.csw-section-title {
  text-align: center;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px;
}

.csw-title-line {
  display: block;
  width: 40px;
  height: 3px;
  background-color: #c0392b;
  border-radius: 2px;
  margin: 0 auto 48px;
}

/* ══════════════════════════════
   Ligne des étapes
══════════════════════════════ */
.csw-steps-row {
  display: flex;
  align-items: center;   /* flèches verticalement centrées */
  justify-content: center;
}

/* ── Carte étape ── */
.csw-step-card {
  background-color: #ffffff;
  border: 1.5px solid #e5e5e0;
  border-radius: 14px;
  padding: 44px 28px 36px;
  text-align: center;
  flex: 1;
  max-width: 300px;
  position: relative;
  align-self: stretch;   /* même hauteur sur toute la ligne */
}

/* Numéro en bulle */
.csw-step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background-color: #c0392b;
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Icône */
.csw-step-icon {
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c0392b;
  font-size: 42px;
  width: 60px;
  height: 60px;
}

.csw-step-icon i   { font-size: inherit; }
.csw-step-icon svg { width: 1em; height: 1em; }

/* Titre étape */
.csw-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px;
}

/* Description */
.csw-step-desc {
  font-size: 0.88rem;
  color: #666666;
  line-height: 1.65;
  margin: 0;
}

/* ── Flèche pointillée ── */
.csw-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: #c0392b;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

/* Tablette portrait */
@media (max-width: 860px) {
  .csw-steps-row {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .csw-step-card {
    max-width: 480px;
    width: 100%;
    align-self: auto;
  }

  /* Flèche tournée vers le bas */
  .csw-arrow {
    transform: rotate(90deg);
    padding: 0;
  }
}

/* Mobile */
@media (max-width: 540px) {
  .csw-wrapper { padding: 36px 16px; }

  .csw-step-card { padding: 36px 20px 28px; }

  .csw-step-title { font-size: 0.95rem; }
  .csw-step-desc  { font-size: 0.85rem; }
}
