/* -------------------------------------------------------------------------- */
/* lists and description lists */
dl {
    /* expand line-height for easier reading */
    line-height: 1.4;
}
dl dt {
    font-weight: var(--font-weight-bold);
}
dl dd {
    color: var(--muted-text);
}

dl.aspara {
    /* indent 1st row by 1em; continuing rows by 2em */
    margin-left: 2em;
}

dl.aspara dt {
    float: left;
    margin-right: 0.5em;
    margin-left: -1em; /* Offset so second line aligns correctly */
}

dl.aspara dt::after {
    content: ":";
}

dl.aspara dd {
    margin-left: 0em;
    margin-bottom: 1em;
}



/* mini list with centered custom markers (• or →) */
.list-mini { list-style: none; padding: 0; margin: 0 0 0 0; }
.list-mini li {
    display: grid;
    grid-template-columns: 1.15rem 1fr;  /* marker column + text */
    column-gap: var(--space-2);
    align-items: center;                  /* vertically center marker vs text block */
    margin: var(--space-1) 0;
}

/* default bullet */
.list-mini li::before {
    content: "•";
    justify-self: center;                 /* center bullet in its column */
    font-size: var(--font-size-tiny);     /* smaller bullet */
    line-height: 1;
    color: var(--muted-text);
}

/* arrow item: full-size arrow */
.list-mini li.arrow::before {
    content: "→";
    font-size: var(--font-size-normal);
    /* inherit follows the color of the parent */
    /* currentColor follows closest color property value */
    color: currentColor;
}

/* -------------------------------------------------------------------------- */
/* bullets  */

.bullets {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0 0;
    display: grid;
    gap: var(--space-3);
}
.bullets li strong {
    font-weight: var(--font-weight-medium);
}
