/* ── Work Filter Bar ─────────────────────────────────────────────
   Add to work-page.css or enqueue separately.
   ─────────────────────────────────────────────────────────────── */

.work-filter-bar {
    padding: 24px 0 0;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

/* ── Pill rows ─────────────────────────────────────────────────── */
.work-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 16px;
}

.work-filter-pills--sub {
    padding-top: 4px;
    padding-bottom: 20px;
    border-top: 1px dashed #e5e7eb;
}

/* ── Pills ─────────────────────────────────────────────────────── */
.work-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 30px;
    background: #fff;
    color: #374151;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    white-space: nowrap;
    box-sizing: border-box;
    line-height: 1.4;
}

.work-pill:hover {
    border-color: #2877db;
    color: #2877db;
    background: #fff;
}

.work-pill--active {
    background: #2877db;
    border-color: #2877db;
    color: #fff;
}

.work-pill--active:hover {
    background: #1a5cb8;
    border-color: #1a5cb8;
    color: #fff;
}

/* Arrow icon rotates when active */
.work-pill-arrow {
    font-size: 0.75rem;
    transition: transform 0.2s;
}
.work-pill--active .work-pill-arrow {
    transform: rotate(180deg);
}

/* Sub pills — slightly smaller */
.work-pill--sub {
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 500;
    border-color: #e5e7eb;
    color: #6b7280;
}

.work-pill--sub:hover {
    border-color: #2877db;
    color: #2877db;
    background: #fff;
}

.work-pill--sub.work-pill--active {
    background: #1a1a2e;
    border-color: #1a1a2e;
    color: #fff;
}

.work-pill--sub.work-pill--active:hover {
    background: #1a1a2e;
    border-color: #1a1a2e;
    color: #fff;
}

.work-pill-count {
    font-size: 0.72rem;
    opacity: 0.65;
    font-weight: 400;
}

/* ── Responsive ──────────────────────────────────────────────────*/
@media (max-width: 768px) {
    .work-filter-pills {
        gap: 6px;
    }
    .work-pill {
        padding: 6px 14px;
        font-size: 0.82rem;
    }
}