.bc-aspects {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 4px;
}

.bc-aspect-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #fff;
    cursor: pointer;

    padding: 8px 10px;
    border-radius: 12px;

    font-weight: 700;
    font-size: 13px;
    color: #111;

    transition: background 120ms ease, transform 120ms ease, border-color 120ms ease, opacity 120ms ease;
}

.bc-aspect-btn:hover {
    background: rgba(0, 0, 0, 0.04);
}

.bc-aspect-btn:active {
    transform: translateY(1px);
}

.bc-aspect-btn.is-active {
    border-color: rgba(0, 0, 0, 0.28);
    background: rgba(0, 0, 0, 0.06);
}

.bc-aspect-ic {
    display: inline-flex;
    width: 18px;
    height: 18px;
}

.bc-aspect-svg {
    width: 18px;
    height: 18px;
    display: block;
}

.bc-aspect-text {
    line-height: 1;
    white-space: nowrap;
}

