/*
Theme Name: Bharat Freelancer
Text Domain: bharat-freelancer
Version: 1.0
*/

:root { --max: 1200px; --text: #1d2433; --muted: #5f6b7a; --brand: #0b5cab; }
* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, sans-serif; color: var(--text); line-height: 1.6; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }
.site-header, .site-footer { padding: 20px 0; border-bottom: 1px solid #e7eaf0; }
.site-footer { border-top: 1px solid #e7eaf0; border-bottom: 0; margin-top: 40px; }
.site-branding { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
nav ul { list-style: none; display: flex; gap: 16px; margin: 0; padding: 0; flex-wrap: wrap; }
.hero { padding: 80px 0; background: #f6f8fb; }
.grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card { padding: 20px; border: 1px solid #e7eaf0; border-radius: 10px; background: #fff; }
.content { padding: 40px 0; }
h1, h2, h3 { line-height: 1.2; }
.post-meta { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }