oev-card > [slot="secondary-title"] {
    margin-top: 0;
}

oev-accordion-element-v1 ul,
oev-accordion-element ul,
oev-card-icon-text-v1 ul {
    list-style: none;
    padding-top: 0.5rem;
    padding-left: 0;
    margin: 0 0 0 0.8rem;
}

oev-accordion-element-v1 ul > li,
oev-accordion-element ul > li,
oev-text-content-v1 ul > li {
    padding: .5rem 0;
}

oev-accordion-element-v1 ul > li::before,
/*oev-accordion-element ul > li::before,*/
oev-card-icon-text-v1 ul > li::before {
    color: var(--oev-color-secondary);
    margin-right: var(--oev-margin-right-list-bullet);
    margin-left: var(--oev-margin-left-list-bullet);
    content: "\2022"; //bullet point
    font-size: var(--oev-font-size-list-bullet);
}

oev-accordion-element-v1 ol,
oev-accordion-element ol,
oev-card-icon-text-v1 ol {
    list-style: none;
    padding-top: 0.5rem;
    padding-left: 0;
    margin: 0 0 0 1rem;
    counter-reset: item;
}


oev-accordion-element-v1 ol > li,
oev-accordion-element ol > li,
oev-card-icon-text-v1 ol > li {
    padding: .5rem 0;
}

oev-accordion-element-v1 ol > li::before,
oev-accordion-element ol > li::before,
oev-card-icon-text-v1 ol > li::before {
     color: var(--oev-color-secondary);
     content: counter(item) ".";
     counter-increment: item;
     margin-right: var(--oev-margin-right-list-figure);
     margin-left: var(--oev-margin-left-list-figure);
     overflow-wrap: normal;
 }
