* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Inter", sans-serif; background: #f9fafb; color: #111827; }
.navbar { background: white; border-bottom: 1px solid #e5e7eb; height: 64px; position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.navbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { text-decoration: none; font-size: 22px; font-weight: 800; color: #2563eb; }
.logo span { color: #f97316; font-size: 14px; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { text-decoration: none; color: #374151; font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: #2563eb; }
.btn { background: #2563eb !important; color: white !important; padding: 8px 18px; border-radius: 10px; font-weight: 600 !important; }
.hero { background: linear-gradient(135deg, #1e40af, #2563eb); color: white; padding: 48px 20px; text-align: center; }
.hero h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.hero p { color: #bfdbfe; }
.container { max-width: 1200px; margin: 0 auto; padding: 40px 24px; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card { background: white; border-radius: 16px; overflow: hidden; border: 1px solid #e5e7eb; transition: box-shadow 0.2s, transform 0.2s; }
.card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }
.card img { width: 100%; height: 180px; object-fit: cover; }
.card-body { padding: 16px; }
.card-date { font-size: 11px; color: #9ca3af; margin-bottom: 6px; }
.card-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.card-title a { text-decoration: none; color: #111827; }
.card-title a:hover { color: #2563eb; }
.card-excerpt { font-size: 13px; color: #6b7280; line-height: 1.6; margin-bottom: 12px; }
.read-more { background: #eff6ff; color: #2563eb; padding: 6px 14px; border-radius: 8px; font-size: 12px; font-weight: 600; text-decoration: none; display: inline-block; }
.read-more:hover { background: #dbeafe; }
.single { background: white; border-radius: 16px; padding: 48px; border: 1px solid #e5e7eb; max-width: 100%; }
.single img.featured { width: 100%; border-radius: 12px; margin-bottom: 24px; }
.single h1 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.meta { color: #9ca3af; font-size: 13px; margin-bottom: 24px; }
.content { font-size: 16px; line-height: 1.8; color: #374151; }
.content p { margin-bottom: 16px; }
.content h2 { font-size: 22px; font-weight: 700; margin: 24px 0 12px; }
.content img { max-width: 100%; border-radius: 8px; }
.back { display: inline-flex; align-items: center; gap: 6px; color: #2563eb; text-decoration: none; font-size: 14px; font-weight: 500; margin-bottom: 24px; }
.back:hover { text-decoration: underline; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.pagination a, .pagination span { padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; text-decoration: none; border: 1px solid #e5e7eb; color: #374151; }
.pagination a:hover { background: #eff6ff; border-color: #2563eb; color: #2563eb; }
.pagination .current { background: #2563eb; color: white; border-color: #2563eb; }
footer { background: #1e293b; color: #94a3b8; padding: 40px 20px; text-align: center; margin-top: 60px; }
footer a { color: #60a5fa; text-decoration: none; }
.footer-logo { font-size: 24px; font-weight: 800; color: white; margin-bottom: 8px; }
@media (max-width: 1024px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .grid { grid-template-columns: repeat(2, 1fr); } .nav-links { gap: 12px; } }
@media (max-width: 480px) { .grid { grid-template-columns: 1fr; } .hero h1 { font-size: 24px; } .single { padding: 20px; } }