/* =========================================================
   🔮 Tyshara — Vision Stratégique (refactor v1.0)
   Timeline premium : palette, typographie, ombres harmonisées
   ========================================================= */

/* === Conteneur principal === */
.tyshara-strategie-timeline-horizontale {
  overflow-x: auto;
  padding: var(--space-md) 0;
}

.timeline-wrapper {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  padding-bottom: var(--space-md);
  min-width: 100%;
}

/* === Colonne par mois === */
.mois-group {
  min-width: 280px;
  flex-shrink: 0;
  background: var(--ty-nuage-pastel);
  border: 1px solid var(--ty-beige-lin);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.mois-label {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ty-terre-argile);
  margin-bottom: 0.8rem;
  text-align: center;
  border-bottom: 1px dashed var(--ty-rose-boise);
  padding-bottom: 0.5rem;
}

/* === Liste des objectifs === */
.mois-slider {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-height: 480px;
  overflow-y: auto;
}

/* === Carte Objectif === */
.strategie-card {
  background: #fff;
  border-left: 4px solid var(--ty-sauge-profond);
  padding: 0.8rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  position: relative;
  transition: all 0.2s ease-in-out;
  box-shadow: var(--shadow-xs);
}

.strategie-card.done {
  opacity: 0.7;
  border-left-color: var(--ty-doré-intuition);
}

.strategie-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

/* === Contenu de la carte === */
.strategie-meta strong {
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--ty-terre-argile);
  display: block;
  margin-bottom: 0.2rem;
}

.strategie-details span,
.strategie-details em {
  display: block;
  font-size: 0.85rem;
  color: var(--ty-texte-doux);
}

.strategie-dates {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--ty-texte-gris);
}

.strategie-dates .deadline-urgente {
  color: var(--ty-rouge-profond);
  font-weight: bold;
}

.strategie-actions {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--ty-gris-foncé);
}

.strategie-actions a {
  color: var(--ty-sauge-ocean);
  text-decoration: none;
}

.strategie-actions a:hover {
  text-decoration: underline;
}

/* === État de l’objectif === */
.strategie-etat {
  font-weight: bold;
  display: inline-block;
  margin-bottom: 0.2rem;
  color: var(--ty-violet-cosmos);
}
