/* Styles partagés des pages guide (cluster « plan de traitement »).
   Couleurs issues de la palette de marque définie dans site-shared.css. */

.guide-byline { display: flex; align-items: center; gap: .7rem; margin: 1rem 0 0; }
.guide-byline img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.guide-byline span { font-size: .92rem; color: rgba(255, 255, 255, 0.8); }

.guide-toc { margin: 0 0 1.5rem; padding: 1.25rem 1.5rem; background: var(--color-surface-secondary); border-radius: 14px; }
.guide-toc p { margin: 0 0 .6rem; font-weight: 600; }
.guide-toc ul { margin: 0; padding-left: 1.1rem; }
.guide-toc li { margin: .25rem 0; }

.guide-figure { margin: 1.75rem 0; }
.guide-figure img { width: 100%; height: auto; border-radius: 14px; box-shadow: 0 10px 40px rgba(23, 40, 48, .12); }
.guide-figure figcaption { margin-top: .6rem; font-size: .88rem; color: var(--color-text-muted); text-align: center; }

.guide-example { margin: 1.5rem 0; padding: 1.25rem 1.5rem; background: var(--color-surface-secondary); border-radius: 14px; }
.guide-example h3 { margin-top: 0; }

.guide-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .98rem; }
.guide-table th, .guide-table td { text-align: left; padding: .7rem .8rem; border-bottom: 1px solid var(--color-border); vertical-align: top; }
.guide-table th { background: var(--color-surface-secondary); }

.guide-steps { counter-reset: step; list-style: none; padding-left: 0; }
.guide-steps li { position: relative; padding-left: 2.6rem; margin: 1.1rem 0; }
.guide-steps li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 0; width: 1.8rem; height: 1.8rem; border-radius: 50%; background: var(--color-primary); color: var(--color-white); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: .95rem; }

.guide-pull { margin: 1.75rem 0; padding-left: 1.1rem; border-left: 3px solid var(--color-primary); font-size: 1.15rem; font-weight: 600; line-height: 1.45; }

.guide-related { margin: 1.75rem 0; padding: 1.1rem 1.4rem; background: var(--color-primary-pastel); border-radius: 14px; }
.guide-related a { font-weight: 600; }

.guide-cta { margin: 2.5rem 0 .5rem; padding: 1.75rem; text-align: center; background: var(--surface-accent-soft); border: 1px solid var(--color-primary-pastel); border-radius: 18px; }
.guide-cta h2 { margin-top: 0; }
.guide-cta-btn { display: inline-block; margin-top: .75rem; padding: .85rem 1.6rem; border-radius: 999px; background: var(--color-primary); color: var(--color-white); font-weight: 600; text-decoration: none; transition: background .15s ease; }
.guide-cta-btn:hover { background: var(--color-primary-dark); }
.guide-cta-note { margin: .75rem 0 0; font-size: .9rem; color: var(--color-text-secondary); }

.guide-disclaimer { margin-top: 2rem; font-size: .9rem; color: var(--color-text-muted); }
