.droits-hero {
    text-align: center;
    padding: 3rem 1.5rem 2rem;
    max-width: 760px;
    margin: 0 auto;
}

.droits-hero-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.droits-hero-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.droits-hero h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.droits-hero p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ── Layout ── */
.droits-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

/* ── Section ── */
.droits-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.droits-section-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.1rem 1.4rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.droits-section-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.droits-section-icon svg {
    width: 19px;
    height: 19px;
}

.droits-section-icon.blue   { background: rgba(74,144,226,0.12); }
.droits-section-icon.blue svg   { stroke: var(--primary); }
.droits-section-icon.green  { background: rgba(74,222,128,0.12); }
.droits-section-icon.green svg  { stroke: #4ade80; }
.droits-section-icon.red    { background: rgba(248,113,113,0.12); }
.droits-section-icon.red svg    { stroke: #f87171; }
.droits-section-icon.amber  { background: rgba(251,191,36,0.12); }
.droits-section-icon.amber svg  { stroke: #fbbf24; }
.droits-section-icon.purple { background: rgba(167,139,250,0.12); }
.droits-section-icon.purple svg { stroke: #a78bfa; }
.droits-section-icon.teal   { background: rgba(45,212,191,0.12); }
.droits-section-icon.teal svg   { stroke: #2dd4bf; }

.droits-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.droits-section-body {
    padding: 1.25rem 1.4rem;
}

.droits-section-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.droits-section-body p:last-child { margin-bottom: 0; }

.droits-section-body ul,
.droits-section-body ol {
    padding-left: 1.3rem;
    margin: 0.5rem 0;
}

.droits-section-body li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 0.3rem;
}

.droits-section-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.droits-alert {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    border-radius: 8px;
    padding: 0.85rem 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    line-height: 1.6;
}

.droits-alert.warn {
    background: rgba(251, 191, 36, 0.07);
    border: 1px solid rgba(251, 191, 36, 0.25);
    color: var(--text-secondary);
}

.droits-alert.danger {
    background: rgba(248, 113, 113, 0.07);
    border: 1px solid rgba(248, 113, 113, 0.25);
    color: var(--text-secondary);
}

.droits-alert.info {
    background: rgba(74, 144, 226, 0.07);
    border: 1px solid rgba(74, 144, 226, 0.2);
    color: var(--text-secondary);
}

/* ── Meta footer ── */
.droits-meta {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    padding-bottom: 2rem;
}

.droits-meta strong { color: var(--text-primary); }
