

  body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    /* padding: 2rem; */
  }

  .blog-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-top: 95px;
  }

  .blog-header {
    background: linear-gradient(45deg, #6b0f9c, #1e88e5);
    padding: 2rem;
    color: white;
    text-align: center;
  }

  .blog-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
  }

  .blog-content {
    padding: 2rem;
  }

  .blog-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    margin-bottom: 1.5rem;
  }

  .blog-text {
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
  }

  .read-more-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #6b0f9c, #1e88e5);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: transform 0.3s ease;
  }

  .read-more-btn:hover {
    transform: translateY(-3px);
  }

  .likes-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.5rem;
  }

  .like-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
  }

  .likes-count {
    color: #666;
  }



  @media screen and (max-width: 768px) {
    .blog-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
      margin-bottom: 1.5rem;
    }
  }