<css>
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #334155;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: #1e293b;
}

.logo span { color: #10b981; }

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li { margin-left: 25px; }

.nav-links a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a.active, .nav-links a:hover { color: #10b981; }

/* Page Title */
.page-title {
    padding: 60px 0;
    text-align: center;
    background: #fff;
}

.page-title h1 {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 10px;
}

/* Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px 20px;
}

/* Post Cards */
.post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.post-card:hover { transform: translateY(-5px); }

.post-image {
    flex: 1;
    min-width: 200px;
    background-size: cover;
    background-position: center;
}

.post-content {
    flex: 2;
    padding: 25px;
}

.category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #10b981;
    display: block;
    margin-bottom: 10px;
}

.post-content h2 a {
    text-decoration: none;
    color: #1e293b;
    font-size: 1.4rem;
    display: block;
    margin-bottom: 10px;
}

.excerpt {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 15px;
}

.post-meta {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Sidebar */
.widget {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.widget h3 { margin-bottom: 15px; font-size: 1.1rem; }

.widget input {
    width: 100%;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
}

.widget ul { list-style: none; }
.widget ul li { margin-bottom: 10px; }
.widget ul li a { text-decoration: none; color: #64748b; transition: 0.2s; }
.widget ul li a:hover { color: #10b981; padding-left: 5px; }

/* Responsive */
@media (max-width: 768px) {
    .content-grid { grid-template-columns: 1fr; }
    .post-card { flex-direction: column; }
    .post-image { height: 200px; }
}

footer {
    text-align: center;
    padding: 40px;
    color: #94a3b8;
}

