/* =====================================================================
   PARCOURS.CSS - Styles propres à parcours.html
   ===================================================================== */

/* ---- Carte étape ---- */
.step-card {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  padding: 1.75rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 30px 55px -30px rgba(0, 41, 77, 0.4); }
.step-card__aside {
  display: flex; flex-direction: row; align-items: center; flex-wrap: wrap; gap: .75rem;
}
.step-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 1rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 24px -12px rgba(0, 41, 77, 0.5);
}
.step-badge {
  font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.35rem;
  color: var(--blue-900); line-height: 1;
}
.step-tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--blue-700); background: var(--blue-50);
  border: 1px solid rgba(0, 87, 168, 0.14);
  padding: .35rem .8rem; border-radius: 9999px;
}
.fait-marquant {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--gold-100); color: var(--gold-700);
  border-left: 3px solid var(--gold-500);
  padding: .7rem 1rem; border-radius: .5rem;
  font-size: .9rem; font-weight: 600; line-height: 1.35;
}
.fait-marquant i { flex-shrink: 0; color: var(--gold-600); }

@media (min-width: 768px) {
  .step-card { grid-template-columns: 15rem 1fr; gap: 2.25rem; align-items: start; }
  .step-card__aside { flex-direction: column; align-items: flex-start; }
  .step-card__aside .step-badge { font-size: 1.75rem; margin-top: .25rem; }
}

/* ---- Cartes acquis ---- */
.acquis-card {
  padding: 2.25rem; text-align: center;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.acquis-card:hover { transform: translateY(-6px); border-color: rgba(212, 160, 23, 0.5); }
.acquis-ic {
  width: 4rem; height: 4rem; border-radius: 1.15rem; margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-hero); color: #fff;
  box-shadow: 0 14px 28px -14px rgba(0, 41, 77, 0.6);
}
