.blog-section {
    padding: 3rem 1rem;
    background-color: #fefefe;
  }
  
  .blog-title {
    text-align: center;
    font-size: 2rem;
    color: #5d009b;
    margin-bottom: 2rem;
  }
  
  .blog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 320px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeUp 0.8s ease forwards;
  }
  
  .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
  
  .blog-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
  }
  
  .blog-content {
    padding: 1rem;
  }
  
  .blog-content time {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.5rem;
  }
  
  .blog-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0.5rem 0;
  }
  
  .blog-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
  }
  
  .blog-content a {
    font-weight: bold;
    color: #d6004c;
    text-decoration: none;
  }
  
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  