/* =============================================================================
   Pages - Shared Styles (Hero, Filters, Pagination)
   Follows the same pattern as plugins.css: theme-variable-based, no hardcoded colors
   ============================================================================= */

/* Page Hero Section */
.page-header {
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 30%, var(--primary), transparent 70%);
    opacity: 0.08;
    pointer-events: none;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Header (used inside content sections) */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Filters */
.filters {
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.filter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group select,
.filter-group input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--card);
    color: var(--text);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: all 0.3s;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary);
}

.search-group {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    min-width: 250px;
}

.search-group input {
    flex: 1;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
}

.page-info {
    color: var(--text-muted);
    font-weight: 500;
}
