/* ---------- Blog ---------- */
     .blog-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
        margin-top: 20px;
      }
  
      .blog-header {
        text-align: center;
        margin-bottom: 50px;
        margin-top: 10px;
      }
  
      .blog-header h1 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 10px;
      }
  
      .blog-header p {
        font-size: 1rem;
        color: #555;
      }
  
      .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
      }
  
      .blog-card {
        background: white;
        border-radius: 16px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        overflow: hidden;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        display: flex;
        flex-direction: column;
      }
  
      .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 18px rgba(0,0,0,0.12);
      }
  
      .blog-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
      }
  
      .blog-card-content {
        flex: 1;
        padding: 20px;
        display: flex;
        flex-direction: column;
      }
  
      .blog-card-content h2 {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 10px;
      }
  
      .blog-card-content p {
        flex: 1;
        color: #555;
        line-height: 1.5;
        margin-bottom: 15px;
      }
  
      .read-more {
        text-decoration: none;
        color: #d35400;
        font-weight: 600;
        align-self: flex-start;
      }
  
      .read-more:hover {
        text-decoration: underline;
      }
  
      @media (max-width: 768px) {
        nav.navbar {
          flex-direction: column;
          gap: 0.5rem;
        }
  
        nav.navbar ul {
          flex-wrap: wrap;
          justify-content: center;
          gap: 1rem;
        }
  
        .blog-header h1 {
          font-size: 1.8rem;
        }
  
        .blog-card img {
          height: 180px;
        }
      }
  
      @media (max-width: 480px) {
        .blog-container {
          padding: 40px 16px;
        }
  
        .blog-header p {
          font-size: 0.95rem;
        }
  
        .blog-card-content h2 {
          font-size: 1.2rem;
        }
  
        .blog-card-content p {
          font-size: 0.95rem;
        }
      }

      /* ---------- Artikel ---------- */
    .post-header {
        position: relative;
        width: 100%;
        height: 350px;
        overflow: hidden;
      }
  
      .post-header img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.9);
      }
  
      .post-content {
        max-width: 800px;
        margin: -80px auto 60px;
        background: white;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        padding: 40px 30px;
        position: relative;
        z-index: 2;
      }
  
      .post-content h1 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 20px;
      }
  
      .post-meta {
        color: #777;
        font-size: 0.9rem;
        margin-bottom: 30px;
      }
  
      .post-content p {
        line-height: 1.7;
        margin-bottom: 1.2em;
        color: #444;
      }
  
      .post-content h2 {
        font-size: 1.4rem;
        margin-top: 1.8em;
        margin-bottom: 0.8em;
        font-weight: 600;
      }
  
      .back-link {
        display: inline-block;
        margin-top: 30px;
        text-decoration: none;
        color: #d35400;
        font-weight: 600;
      }
  
      .back-link:hover {
        text-decoration: underline;
      }
  