.list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list > li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.list > li:not(:first-child) {
    margin-top: 16px;
}

.list > li > .list__icon {
    width: 16px;
    position: relative;
    height: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.list--events {
    font-weight: bold;
}