/* BLOG HERO */
.blog-hero {
    background: linear-gradient(135deg, #f0ecff 0%, #e8f7f2 50%, #eafff4 100%);
    padding: 80px 0 64px;
  }
  
  .blog-hero-title {
    font-family: 'Nunito', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #2d1f66;
    line-height: 1.2;
    margin: 16px 0 16px;
  }
  
  .blog-hero-text {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
    max-width: 520px;
  }
  
  /* BLOG SECTION */
  .blog-section {
    padding: 64px 0 80px;
    background: white;
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  
  .blog-loading {
    color: #6b7280;
    font-size: 0.95rem;
    grid-column: span 3;
    text-align: center;
    padding: 40px 0;
  }
  
  .blog-card {
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
    background: white;
  }
  
  .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.3);
  }
  
  .blog-card-cover {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }
  
  .blog-card-cover-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(34,197,94,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
  }
  
  .blog-card-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .blog-card-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(139,92,246,0.1), rgba(34,197,94,0.1));
    color: #6d28d9;
    border: 1px solid rgba(139,92,246,0.2);
    width: fit-content;
  }
  
  .blog-card-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    font-weight: 900;
    color: #2d1f66;
    line-height: 1.4;
  }
  
  .blog-card-excerpt {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
  }
  
  .blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
  }
  
  .blog-card-author {
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 600;
  }
  
  .blog-card-date {
    font-size: 0.8rem;
    color: #9ca3af;
  }
  
  .blog-card-lock {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #8B5CF6;
    font-weight: 700;
  }
  
  /* BLOG DETAIL */
  .blog-detail {
    max-width: 1000px;
    margin: 0 auto;
    padding: 48px 24px 80px;
  }
  
  .blog-detail-cover {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 40px;
    display: block;
  }
  
  .blog-detail-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(139,92,246,0.1), rgba(34,197,94,0.1));
    color: #6d28d9;
    border: 1px solid rgba(139,92,246,0.2);
    margin-bottom: 16px;
  }
  
  .blog-detail-title {
    font-family: 'Nunito', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #2d1f66;
    line-height: 1.3;
    margin-bottom: 16px;
  }
  
  .blog-detail-meta {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 32px;
    display: flex;
    gap: 16px;
  }
  
  .blog-detail-content {
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.9;
    column-count: 2;
    column-gap: 48px;
    column-rule: 1px solid rgba(139,92,246,0.15);
    text-align: justify;
  }

  .blog-detail-content h2 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: #2d1f66;
    margin: 24px 0 8px;
    column-span: none;
  }
  
  .blog-detail-content h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: #8B5CF6;
    margin: 18px 0 6px;
  }
  
  .blog-detail-content p {
    margin-bottom: 12px;
  }
  
  .blog-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8B5CF6;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 32px;
    background: none;
    border: none;
    font-family: 'Nunito', sans-serif;
  }
  
  .blog-back-btn:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 900px) {
    .blog-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .blog-loading {
      grid-column: span 2;
    }
  }
  
  @media (max-width: 600px) {
    .blog-grid {
      grid-template-columns: 1fr;
    }
    .blog-loading {
      grid-column: span 1;
    }
    .blog-hero-title {
      font-size: 2rem;
    }
  }