﻿/* ===== CATEGORY PAGE ===== */

.category-hero {
    margin-bottom: 2rem;
}

.category-hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 0.65rem;
}

.category-hero-title {
    display: inline-block;
    margin: 0;
    padding: 0.45rem 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    border: 1px solid var(--accent-purple, #7c3aed);
    line-height: 1.35;
}

.category-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
    justify-content: flex-end;
    flex: 1;
    min-width: 0;
}

.category-hero-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.category-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.category-column {
    min-width: 0;
}

.category-search-list {
    max-width: 720px;
}

.category-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.category-pagination a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.category-pagination a:hover {
    opacity: 0.75;
}

.category-page-disabled {
    font-size: 0.95rem;
    color: var(--text-muted);
    opacity: 0.45;
    user-select: none;
}

@media (max-width: 900px) {
    .category-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .category-hero-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-hero-tags {
        justify-content: flex-start;
    }
}
