.accordeon-cpt {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 24px auto;
    padding: 0;
    list-style: none;
    border: 1px solid #d8dee9;
    border-radius: 8px;
    background: #ffffff;
    color: #1f2937;
}

.accordeon-cpt__title {
    position: relative;
    margin: 0;
    padding: 16px 48px 16px 18px;
    list-style: none;
    border-bottom: 1px solid #e5e7eb;
    background: #f8fafc;
    color: #111827;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease;
}

.accordeon-cpt__title::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 24px;
    height: 24px;
    line-height: 22px;
    text-align: center;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    transform: translateY(-50%);
}

.accordeon-cpt__title:hover,
.accordeon-cpt__title:focus {
    background: #eef2f7;
    outline: none;
}

.accordeon-cpt__title--active {
    background: #1f2937;
    color: #ffffff;
}

.accordeon-cpt__title--active::after {
    content: "-";
    border-color: #ffffff;
}

.accordeon-cpt__panel {
    box-sizing: border-box;
    margin: 0;
    padding: 0 18px;
    list-style: none;
    overflow: hidden;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
}

.accordeon-cpt__panel--open {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.accordeon-cpt__panel--open[data-image-position="droite"] {
    justify-content: space-between;
}

.accordeon-cpt__content-image {
    width: var(--accordeon-cpt-image-width, 64px);
    height: var(--accordeon-cpt-image-height, 64px);
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 6px;
}

.accordeon-cpt__content {
    flex: 1 1 auto;
    margin: 0;
    padding: 0 0 0 20px;
    list-style: disc;
}

.accordeon-cpt__content--no-bullets {
    padding-left: 0;
    list-style: none;
}

.accordeon-cpt__content-item {
    margin: 0 0 8px;
    padding: 0;
    color: #374151;
    line-height: 1.6;
}

.accordeon-cpt__content-item:last-child {
    margin-bottom: 0;
}

.accordeon-cpt > li:last-child {
    border-bottom: 0;
}