
    :root {
        --primary-color: #0074cc;
        --text-color: #333;
        --accent-color: #f2c6c3;
        --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: var(--font-main); color: var(--text-color); line-height: 1.6; }
    header { padding: 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #eee; }
    .logo { height: 60px; }
    nav ul { list-style: none; display: flex; gap: 20px; }
    nav a { text-decoration: none; color: #000; font-weight: 500; font-size: 14px; }
    .hero { height: 400px; background: #ddd url('/assets/montaggio_banner.jpg') center/cover no-repeat; display: flex; align-items: center; justify-content: center; }
    .container { max-width: 1100px; margin: 40px auto; padding: 0 20px; }
    .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
    .post-card { border: 1px solid #eee; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
    .post-image { height: 200px; background: #eee; display: flex; align-items: center; justify-content: center; overflow: hidden; }
    .post-image img { width: 100%; height: 100%; object-fit: cover; }
    .post-content { padding: 20px; }
    footer { text-align: center; padding: 40px; background: #f9f9f9; margin-top: 50px; font-size: 14px; }
    @media (max-width: 768px) { nav ul { display: none; } }
