.delvoz-lexique {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ── Catégorie ── */
.delvoz-lexique__categorie {
    overflow: visible;
}

.delvoz-lexique__categorie-titre {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    cursor: pointer;
    list-style: none;
    border-bottom: 2px solid #D8EDFF;
    font-family: var(--e-global-typography-0233d0b-font-family), Poppins;
    font-size: var(--e-global-typography-0233d0b-font-size);
    font-weight: var(--e-global-typography-0233d0b-font-weight);
    color: var(--e-global-color-a03721f);
    user-select: none;
    margin-bottom: 16px;
}

.delvoz-lexique__categorie-titre::-webkit-details-marker {
    display: none;
}

.delvoz-lexique__chevron {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.delvoz-lexique__categorie[open] .delvoz-lexique__chevron {
    transform: rotate(-180deg);
}

/* ── Grille ── */
.delvoz-lexique__grille {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* ── Carte ── */
.delvoz-lexique__entree {
    background: #fff;
    border: 1px solid #D8EDFF;
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: box-shadow 0.2s ease;
}

.delvoz-lexique__entree:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.delvoz-lexique__terme {
    font-family: var(--e-global-typography-657802b-font-family), Poppins;
    font-size: var(--e-global-typography-657802b-font-size);
    font-weight: var(--e-global-typography-657802b-font-weight);
    color: var(--e-global-color-a03721f);
    margin: 0;
}

.delvoz-lexique__definition {
    font-family: var(--e-global-typography-text-font-family), Poppins;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    color: var(--e-global-color-a03721f);
    opacity: 0.65;
    margin: 0;
}

@media (max-width: 768px) {
    .delvoz-lexique__grille {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .delvoz-lexique__grille {
        grid-template-columns: 1fr;
    }
}