/* ============================================
   NAPPING — Styles page Notre approche
   ============================================ */

.page-head { padding-top: 3rem; padding-bottom: 2.5rem; }

/* ---------- Steps (processus détaillé) ---------- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}
.steps__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 1.4rem;
  position: relative;
  padding-bottom: 2rem;
}
.steps__item:last-child { padding-bottom: 0; }
.steps__item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 13px; top: 28px;
  bottom: 0;
  width: 2px;
  background-image: linear-gradient(var(--line) 50%, transparent 50%);
  background-size: 2px 8px;
}
.steps__marker {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}
.steps__marker .path__dot { position: static; }
.steps__content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.steps__content p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ---------- Included grid ---------- */
.included {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.included h4 { margin-bottom: 0.4rem; font-size: 1rem; }
.included p { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Conditions list ---------- */
.conditions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.conditions-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.conditions-list li:last-child { border-bottom: none; padding-bottom: 0; }
.conditions-list strong {
  font-family: var(--serif);
  color: var(--teal-deep);
  font-size: 1rem;
}
.conditions-list span {
  font-size: 0.9rem;
  color: var(--ink-soft);
}
