.list {
    padding: 0;
    margin: 0;
    padding-left: 18px;
}

.list *:last-child {
    margin-bottom: 0;
}

.list--medium {
    font-size: 18px;
}

.list--small {
    font-size: 16px;
}

.list--smallest {
    font-size: 14px;
}

.list__item {
    font-size: inherit;
    line-height: 1.5;
    position: relative;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 8px;
}

.list__item * {
    font-size: inherit;
}

.list__item--disc:before {
    display: inline-block;
    content: "";
    position: absolute;
    top: .5em;
    left: -18px;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    background: #242424;
}

.list.white-text .list__item--disc:before {
    background: #ffffff;
}

.list__item--num {
    list-style: decimal;
    list-style-type: decimal;
}

.list__item--num::marker {
    font-weight: 600;
}

.list .list {
    margin-top: 24px;
    margin-bottom: 12px;
}

.list .list:last-child {
    margin-bottom: 0;
}