  .content {
      font-family: 'Inter', sans-serif;
      background-color: #f8f9fa;
  }

  .blog-post-section {
      padding: 50px 0;
  }

  .blog-post-title {
      font-size: 2.8rem;
      font-weight: bold;
      margin-bottom: 20px;
      color: #343a40;
  }

  .blog-post-meta {
      font-size: 0.9rem;
      color: #6c757d;
      margin-bottom: 30px;
  }

  .blog-post-image {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 30px;
  }

  .blog-post-content {
      line-height: 1.8;
      font-size: 1.1rem;
      color: #343a40;
  }

  .comments-section {
      margin-top: 60px;
      padding-top: 40px;
      border-top: 1px solid #dee2e6;
  }

  .comment-card {
      background-color: #ffffff;
      border: 1px solid #e9ecef;
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 20px;
  }

  .comment-author {
      font-weight: bold;
      color: #007bff;
  }

  .comment-date {
      font-size: 0.85rem;
      color: #6c757d;
  }

  .back-to-blog-button {
      margin-top: 40px;
  }

  .gallery-thumb {
      width: 100%;
      height: 140px;
      object-fit: cover;
      display: block;
      transition: transform .28s ease, box-shadow .28s ease, filter .28s ease;
      will-change: transform;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
  }

  /* Ensure figure container clips the scaled image */
  .blog-post-section .figure.mb-0 {
      overflow: hidden;
      border-radius: .5rem;
  }

  .blog-post-section .figure.mb-0 .gallery-thumb:hover,
  .blog-post-section .figure.mb-0 .gallery-thumb:focus {
      transform: scale(1.06);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
      filter: saturate(1.05);
      outline: 2px solid rgba(255, 255, 255, 0.35);
  }

  .blog-post-section .figure.mb-0 a {
      display: block;
      cursor: zoom-in;
  }

  @media (max-width: 768px) {
      .blog-post-title {
          font-size: 2rem;
      }

      .blog-post-image {
          height: 250px;
      }

      .blog-post-content {
          font-size: 1rem;
      }

      .gallery-thumb {
          height: 110px;
      }
  }