/* --- SCOPED CSS POUR ASSURANCES COLLECTIVES --- */

.article_body .article-collectives-wrapper {
    --collect-accent: #0f766e;
    --collect-accent-soft: #ecfdf5;
    --collect-border: #e5e7eb;
    --collect-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    color: #1f2937;
}

/* On utilise les styles de section uniquement dans ce wrapper */
.article_body .article-collectives-wrapper .article-hero-collectives,
.article_body .article-collectives-wrapper section {
    background: #ffffff;
    border: 1px solid var(--collect-border);
    border-radius: 20px;
    box-shadow: var(--collect-shadow);
    padding: 34px 32px;
    margin-bottom: 24px;
}

.article_body .article-collectives-wrapper .eyebrow-collectives {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--collect-accent);
    margin-bottom: 10px;
}

.article_body .article-collectives-wrapper h1 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.article_body .article-collectives-wrapper .key-points-collectives {
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 16px;
    background: var(--collect-accent-soft);
    border-left: 5px solid var(--collect-accent);
}

/* Grille de cartes adaptée (Bootstrap Grid compatible) */
.article_body .article-collectives-wrapper .cards-collectives {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.article_body .article-collectives-wrapper .card-item-collectives {
    padding: 20px;
    border: 1px solid var(--collect-border);
    border-radius: 16px;
    background: #fcfcfd;
}

/* Tableaux */
.article_body .article-collectives-wrapper .custom-table-collectives {
    font-size: 0.95rem;
}

/* Note */
.article_body .article-collectives-wrapper .note-collectives {
    margin-top: 20px;
    padding: 16px 18px;
    border-left: 4px solid var(--collect-accent);
    background: #f8fafc;
    border-radius: 12px;
}
.note {
  margin-top: 20px;
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  background: #f8fafc;
  border-radius: 12px;
}
/* FAQ */
.article_body .article-collectives-wrapper .faq-item-collectives {
    padding: 15px 0;
    border-bottom: 1px solid var(--collect-border);
}

.article_body .article-collectives-wrapper .faq-item-collectives:last-child {
    border-bottom: none;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.steps li {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fcfcfd;
}

/* Responsive */
@media (max-width: 768px) {
    .article_body .article-collectives-wrapper .article-hero-collectives,
    .article_body .article-collectives-wrapper section {
        padding: 24px 20px;
        border-radius: 16px;
    }
}