/*
Theme Name: TechHub Pro
Theme URI: https://techhub.news
Author: Senior Frontend Engineer
Description: A professional, fully configurable tech news magazine theme with integrated AI signals and modular homepage.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: techhub-pro
*/

:root {
    --th-primary: #4f46e5;
    --th-primary-hover: #4338ca;
    --th-slate-900: #0f172a;
    --th-slate-400: #94a3b8;
    --th-bg: #f8fafc;
}

body {
    background-color: var(--th-bg);
    color: #334155;
    font-family: 'Inter', sans-serif;
}

.glass-morphism {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Pagination Styling */
.techhub-pagination .page-numbers {
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    margin: 0 0.25rem;
    font-weight: 700;
    font-size: 0.75rem;
}

.techhub-pagination .current {
    background: var(--th-primary);
    color: white;
    border-color: var(--th-primary);
}