/**
 * Module: article_list
 */

/* ============================================
   LIST
   ============================================ */

.t1-list {
    margin: 1.5rem 0;
}

.t1-list__title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 0.75rem;
}

.t1-list__list {
    margin: 0;
    padding-left: 1.5rem;
}

.t1-list__item {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--ink);
}

.t1-list__item:last-child {
    margin-bottom: 0;
}

/* Nested lists */
.t1-list__sublist {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Bullet style */
.t1-list--bullet {
    list-style-type: disc;
}

.t1-list--bullet .t1-list__sublist {
    list-style-type: circle;
}

.t1-list--bullet .t1-list__sublist .t1-list__sublist {
    list-style-type: square;
}

/* Number style */
.t1-list--number {
    list-style-type: decimal;
}

/* Alpha uppercase */
.t1-list--alpha-upper {
    list-style-type: upper-alpha;
}

/* Alpha lowercase */
.t1-list--alpha-lower {
    list-style-type: lower-alpha;
}

/* Roman numerals */
.t1-list--roman {
    list-style-type: upper-roman;
}

.t1-list--roman .t1-list__sublist {
    list-style-type: lower-roman;
}

/* Marker color */
.t1-list__item::marker {
    color: var(--jade);
}

/* Compact spacing */
.t1-list--compact .t1-list__item {
    margin-bottom: 0.25rem;
}

.t1-list--compact .t1-list__sublist {
    margin-top: 0.25rem;
}