body { font-family: 'Inter', sans-serif; margin: 0; padding: 20px; background: #fff; }
.container { max-width: 1000px; margin: 0 auto; }

/* Footer */
footer {
    border-top: 1px solid #e2e8f0;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
}

/* Header */
header { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #e11d48; padding-bottom: 20px; margin-bottom: 20px; }
.logo { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: #1a1a1a; }
nav a { margin-left: 20px; text-decoration: none; color: #64748b; font-size: 0.9rem; }

/* Hero */
.hero-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; background: #f1f5f9; padding: 20px; }
.hero-image { height: 300px; }
.hero-content { display: flex; flex-direction: column; justify-content: center; }
.category { color: #e11d48; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; }

/* Grid */
.grid-layout { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 30px; }
.post-card { border: 1px solid #e2e8f0; padding: 15px; }
.sidebar { background: #f8fafc; padding: 15px; }
h1, h3 { font-family: 'Playfair Display', serif; color: #1a1a1a; }
.read-more { display: inline-block; margin-top: 10px; color: #e11d48; text-decoration: none; font-weight: 700; }
