    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      background: linear-gradient(to right, #f7f7f7, #fdfaf3);
      color: #333;
    }
    .blog-wrapper {
      max-width: 1000px;
      margin: 60px auto;
      padding: 0 20px;
    }
    .blog-title {
      font-size: 2.5em;
      text-align: center;
      margin-bottom: 40px;
      border-bottom: 3px solid #d4af37;
      display: inline-block;
    }
    .blog-post-preview {
      border-left: 4px solid #d4af37;
      padding-left: 15px;
      margin-bottom: 40px;
      background: white;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
      padding: 20px;
      border-radius: 10px;
    }
    .blog-post-preview h2 {
      margin: 0 0 10px;
      font-size: 1.6em;
    }
    .blog-post-preview .date {
      color: #888;
      font-size: 0.9em;
      margin-bottom: 10px;
    }
    .blog-post-preview p {
      margin-bottom: 10px;
    }
    .blog-post-preview a {
      color: #d4af37;
      text-decoration: none;
    }
    .blog-post-preview a:hover {
      text-decoration: underline;
    }
    .blog-hero {
      background: url('/assets/blog-hero.jpg') center/cover no-repeat;
      color: #d4af37;
      text-align: right;
      padding: 80px 20px;
      margin-bottom: 40px;
      font-size: 1.2em;
      text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
    }
    
    @media (max-width: 768px){
        .blog-hero{
            font-size: 0.45rem;
        }
    }