/**
 * Category filter bar — horizontal strip below the header.
 *
 * @package Khronicles
 */

/* ── Bar layout ─────────────────────────────────────────────────────── */

.khr-category-bar {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;          /* Firefox */
    padding: 10px 0;
}

.khr-category-bar::-webkit-scrollbar {
    display: none;                  /* Chrome / Safari */
}

.khr-category-bar-list {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

/* ── Individual items ───────────────────────────────────────────────── */

.khr-category-bar-item {
    flex: 0 0 auto;
}

.khr-category-bar-link {
    display: inline-block;
    padding: 6px 16px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: #ccc;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 20px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.khr-category-bar-link:hover {
    color: #fff;
    background: #444;
    border-color: #666;
    text-decoration: none;
}

.khr-category-bar-link.khr-category-bar-active {
    color: #fff;
    background: #c0392b;
    border-color: #c0392b;
}

.khr-category-bar-link.khr-category-bar-active:hover {
    background: #e74c3c;
    border-color: #e74c3c;
}

/* ── Responsive ─────────────────────────────────────────────────────── */

@media (max-width: 600px) {
    .khr-category-bar {
        padding: 8px 0;
    }

    .khr-category-bar-link {
        padding: 5px 12px;
        font-size: 12px;
    }
}
