 .blog-post {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1000px;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
  }

  .blog-post h1, .blog-post h2 {
    color: #fdd835;
  }

  .subtitle {
    color: #ccc;
    margin-bottom: 1.5rem;
  }

  .blog-image {
    width: 100%;
    border-radius: 12px;
    margin: 1.5rem 0;
  }

  .image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .image-gallery img {
    width: 30%;
    border-radius: 12px;
  }

  ul, ol {
    margin-left: 1.5rem;
  }

  kbd {
    background-color: #333;
    border-radius: 4px;
    padding: 0.2rem 0.5rem;
    font-family: monospace;
    color: #fdd835;
  }

  @media (max-width: 768px) {
    .image-gallery img {
      width: 100%;
    }
  }