
.ea-pd-wrapped > .ea-pd-original-h2,
.ea-pd-wrapped > * .ea-pd-original-h2 {
    display: none !important;
}
.ea-pd-details {
    background: #FFFFFF;
    border: 1px solid #E6E8F2;
    border-radius: 12px;
    margin: 14px 0;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(13,17,68,0.04);
}
.ea-pd-details > summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    background: #F9FAFC;
    border-bottom: 1px solid transparent;
    color: #0D1144;
    font-family: Manrope, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-weight: 800;
    font-size: 17px;
    line-height: 1.35;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background 0.18s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.ea-pd-details > summary::-webkit-details-marker { display: none; }
.ea-pd-details > summary::marker { content: ''; font-size: 0; }
.ea-pd-details > summary:hover { background: #EFF1F8; }
.ea-pd-details[open] > summary {
    background: #F4F5FA;
    border-bottom-color: #E6E8F2;
}
.ea-pd-summary-text {
    flex: 1 1 auto;
    text-align: left;
}
.ea-pd-summary-chevron {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.28s ease, color 0.18s;
    color: #6B7280;
}
.ea-pd-details[open] > summary .ea-pd-summary-chevron {
    transform: rotate(180deg);
    color: #0D1144;
}
.ea-pd-content {
    padding: 22px;
    animation: ea-pd-fadein 0.32s ease;
}
.ea-pd-content > *:first-child { margin-top: 0; }
@keyframes ea-pd-fadein {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* Mobile compact */
@media (max-width: 768px) {
    .ea-pd-details { margin: 12px 0; }
    .ea-pd-details > summary {
        padding: 15px 16px;
        font-size: 16px;
    }
    .ea-pd-content { padding: 18px 16px; }
}
/* "Tout déplier" power-user CTA */
.ea-pd-expand-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: transparent;
    border: 1px solid #E6E8F2;
    border-radius: 8px;
    color: #6B7280;
    font-family: Manrope, system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin: 16px 0 4px;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
}
.ea-pd-expand-all:hover {
    background: #F4F5FA;
    color: #0D1144;
    border-color: #C7CBD9;
}
