/**
 * hpt-browse.css — /browse.php only. Additive.
 */
.hpt-browse-section { margin: 1.75rem 0 2.25rem; }
.hpt-browse-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.85rem;
}
.hpt-browse-empty { color: var(--fg-muted, #64748b); font-size: 0.9rem; }
.hpt-list-title { font-size: 1.6rem; margin: 0 0 0.4rem; }
.hpt-list-desc { color: var(--fg-muted, #64748b); margin: 0 0 1.2rem; }

.hpt-browse-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.hpt-browse-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: #0f172a;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none !important;
    border: 1px solid rgba(255,255,255,0.08);
    transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}
.hpt-browse-chip:hover {
    background: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15,23,42,0.25);
}
.hpt-browse-chip--tag { background: #1e3a5f; }
.hpt-browse-chip--tag:hover { background: #2c4f7c; }

.hpt-browse-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.4em;
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    font-size: 0.78rem;
    font-weight: 700;
}

@media (max-width: 600px) {
    .hpt-browse-chip { padding: 0.5rem 0.85rem; font-size: 0.86rem; }
}
html[data-theme="dark"] .hpt-browse-chip { background: #1e293b; }
html[data-theme="dark"] .hpt-browse-chip--tag { background: #1e3a5f; }
