/* Style commun à tous les titres */
.accordion-title,
.accordion-button {
    font-size: 1.125rem; /* équivalent à ~18px */
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    padding: 1rem;
    color: #000;
    background-color: #fff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.13);
}

/* Enlever la flèche pour les titres permanents */
.accordion-title::after {
    display: none !important;
    content: none;
}

/* Pour les boutons pliables : garder la flèche */
.accordion-button::after {
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='currentColor' d='M1.5 5.5L8 12l6.5-6.5'/%3E%3C/svg%3E");
    transform: rotate(0deg);
    transition: transform 0.2s;
}

/* Quand le bouton est ouvert, tourner la flèche */
.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

/* Facultatif : améliorer focus visuel */
.accordion-button:focus {
    background: linear-gradient(268deg, var(--secondary), #000000db);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    color: #fff;
}