:root { --primary: #C2A385; --dark: #2D3436; --light: #F9F7F2; --white: #ffffff; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', sans-serif; background: var(--light); color: var(--dark); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }
header { background: #fff; border-bottom: 4px solid var(--primary); padding: 15px 0; }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 800; text-decoration: none; color: var(--dark); }
.nav-links a { margin-left: 15px; text-decoration: none; color: var(--dark); font-weight: 600; font-size: 14px; }
.post-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.post-card { background: #fff; border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.post-img { width: 100%; height: 160px; object-fit: cover; }
.post-content { padding: 15px; flex-grow: 1; }
.cat-tag { font-size: 10px; color: var(--primary); font-weight: bold; text-transform: uppercase; display: block; margin-bottom: 5px; }
.post-content h2 { font-size: 15px; height: 45px; overflow: hidden; margin-bottom: 10px; }
.read-more-btn { background: var(--primary); color: #fff; text-align: center; padding: 8px; border-radius: 6px; font-weight: bold; font-size: 12px; }
.post-detail-box { background: #fff; padding: 30px; margin: 30px auto; border-radius: 15px; max-width: 900px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.detail-img { width: 100%; border-radius: 10px; margin: 20px 0; }
.entry-content { font-size: 18px; line-height: 1.8; }
footer { background: #fff; padding: 40px 0; text-align: center; margin-top: 50px; border-top: 1px solid #eee; }
.footer-links a { margin: 0 10px; text-decoration: none; color: var(--dark); font-size: 13px; }
@media (max-width: 1000px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } .nav-links { display: none; } }