/* Sommaire - Style uniforme du site */
.sommaire {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-left: 4px solid #d4af37;
    border-radius: 4px;
    padding: 16px 20px;
    margin: 15px;
    margin-bottom: 20px;
}

.sommaire p {
    margin: 0 0 12px 0;
    font-size: 1em;
}

.sommaire p b {
    text-decoration: underline;
}

.sommaire ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sommaire li {
    margin: 8px 0;
    padding-left: 0;
    font-size: 0.95em;
    line-height: 1.6;
}

.sommaire li::before {
    content: "→";
    margin-right: 10px;
    color: #666;
}

.sommaire a {
    color: #14402B;
    text-decoration: none;
}

.sommaire a:hover {
    text-decoration: underline;
}

/* Dark mode */
[data-theme="dark"] .sommaire {
    background: #1e1e1e;
    border-color: #333;
    border-left-color: #d4af37;
}

[data-theme="dark"] .sommaire a {
    color: #7dd3a0;
}
