.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #fff, #f7f7f7);
    font-size: 12px;
    color: var(--ink);
    white-space: nowrap;
}

.chip .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ink);
    opacity: .9;
}

.chip .tiny {
    width: 5px;
    height: 5px;
    border-radius: 99px;
    background: var(--ink);
    opacity: .75;
}


.card.accent .chip {
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .9);
}

.card.accent .chip .tiny {
    background: #fff;
    opacity: .9;
}

.section.dark .chip {
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .86);
}