/* VentiaCaeli Blog Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #faf8f5; color: #2d2a24; line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Header */
.blog-header {
    background: #fff; border-bottom: 1px solid #e8e4de; position: sticky; top: 0; z-index: 100;
}
.blog-header-inner {
    max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between;
    align-items: center; padding: 12px 24px;
}
.blog-header .logo { font-size: 1.2rem; font-weight: 700; color: #6b7a5b; text-decoration: none; }
.blog-header nav { display: flex; gap: 20px; }
.blog-header nav a { color: #7a7368; text-decoration: none; font-size: 0.9rem; font-weight: 500; }
.blog-header nav a:hover, .blog-header nav a.active { color: #6b7a5b; }

/* Hero */
.blog-hero {
    background: linear-gradient(135deg, #e8ede4, #d4ddd0);
    padding: 48px 24px; text-align: center;
}
.blog-hero h1 { font-size: 2rem; color: #2d2a24; margin-bottom: 6px; }
.blog-hero p { color: #7a7368; font-size: 1.05rem; }

/* Article List */
.blog-list { max-width: 780px; margin: 0 auto; padding: 32px 24px; display: flex; flex-direction: column; gap: 16px; }
.blog-card {
    display: block; background: #fff; border-radius: 12px; border: 1px solid #e8e4de;
    padding: 20px 24px; text-decoration: none; color: inherit;
    transition: all 0.2s;
}
.blog-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); border-color: #c8d4c0; }
.blog-card-cat { font-size: 0.75rem; color: #8b9a7b; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.blog-card h2 { font-size: 1.15rem; margin: 4px 0 8px; color: #2d2a24; }
.blog-card p { font-size: 0.9rem; color: #7a7368; }
.blog-card-meta { display: flex; gap: 16px; margin-top: 10px; font-size: 0.8rem; color: #aca498; }
.blog-card .empty { text-align: center; color: #aca498; padding: 40px 0; }

/* Footer */
.blog-footer {
    text-align: center; padding: 32px 24px; color: #7a7368; font-size: 0.8rem;
    border-top: 1px solid #e8e4de; max-width: 780px; margin: 0 auto;
}
.blog-footer a { color: #6b7a5b; text-decoration: none; }
.blog-footer a:hover { text-decoration: underline; }
