
    /* Blog Hero Section (formerly header) */
    .blog-hero {
      background: url('https://images.unsplash.com/photo-1508780709619-79562169bc64?auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
      color: white;
      padding: 4rem 2rem 6rem;
      text-align: center;
      position: relative;
      margin-top: 0;
    }
    .blog-hero::after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      z-index: 0;
    }
    .blog-hero h1, .blog-hero p {
      position: relative;
      z-index: 1;
      margin: 0;
    }
    .blog-hero h1 {
      font-size: 3rem;
    }
    .blog-hero p {
      font-size: 1.2rem;
      margin-top: 1rem;
    }

    .blog-grid {
	      max-width: 1100px;
      margin: 0 auto 2rem;
      padding: 0 1rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .blog-post {
      background: var(--card-bg);
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .blog-post:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }
    .blog-post img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .blog-content {
      padding: 1.5rem;
    }
    .blog-content h2 {
      color: var(--primary);
      margin: 0 0 0.5rem;
      font-size: 1.4rem;
    }
    .blog-content .meta {
      color: var(--gray);
      font-size: 0.85rem;
      margin-bottom: 1rem;
    }
    .blog-content p {
      line-height: 1.6;
      margin: 0;
    }