/* ===== Section pill ===== */
/* ===== Section pill ===== */
.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 6px 14px;
    margin-bottom: 24px;
    border-radius: 9999px;

    background: #fff;
    /* white background */
    border: 1px solid #e5e7eb;
    /* thin light grey border */

    font-size: 14px;
    font-weight: 600;
    color: #423dfc;
    /* purple text */
    line-height: 1;

    user-select: none;
    /* not selectable */
    cursor: default;
    /* not clickable */

    /* Soft shadow */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08),
        0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Icon inside pill */
.section-pill .pill-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: inline-block;
    filter: brightness(0) saturate(100%) invert(22%) sepia(93%) saturate(6863%) hue-rotate(242deg) brightness(92%) contrast(98%);
    /* forces external SVG to purple if needed */
}