/*
  Blog Page Styles
*/

  .blog-post-content {
          max-width: 75%;
          margin: 0 auto;
          font-size: 1.125rem;
          line-height: 1.8;
          color: #2c3e50;
        }

        .blog-post-content h2 {
          font-size: 2.25rem;
          font-weight: 700;
          margin-top: 3rem;
          margin-bottom: 1.5rem;
          color: #1a202c;
          border-left: 4px solid #3b82f6;
          padding-left: 1.5rem;
        }

        .blog-post-content h3 {
          font-size: 1.5rem;
          font-weight: 600;
          margin-top: 2.5rem;
          margin-bottom: 1rem;
          color: #2d3748;
          display: flex;
          align-items: center;
          gap: 0.75rem;
        }

        .blog-post-content h3::before {
          content: "→";
          color: #3b82f6;
          font-weight: 700;
          font-size: 1.25rem;
        }

        .blog-post-content p {
          margin-bottom: 1.5rem;
          text-align: justify;
        }

        .blog-post-content .subheading {
          font-size: 1.25rem;
          line-height: 1.9;
          color: #4a5568;
          background: linear-gradient(to right, #f0f9ff, #e0f2fe);
          padding: 2rem;
          border-radius: 12px;
          margin-bottom: 3rem;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .blog-post-content strong {
          color: #5f5f5f;
          font-weight: 600;
        }

        .blog-post-content em {
          color: #6366f1;
          font-style: italic;
        }

        .blog-post-content sup a {
          color: #3b82f6;
          text-decoration: none;
          font-weight: 500;
          transition: color 0.2s;
        }

        .blog-post-content sup a:hover {
          color: #1e40af;
          text-decoration: underline;
        }

        .blog-post-content .muted {
          background: #f8fafc;
          padding: 1.5rem;
          border-radius: 8px;
          border-left: 4px solid #10b981;
          color: #475569;
          font-style: italic;
          margin-top: 3rem;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .refs {
          max-width: 75%;
          margin: 4rem auto 0;
          padding-top: 3rem;
          border-top: 3px solid #e5e7eb;
        }

        .refs h2 {
          font-size: 1.875rem;
          font-weight: 700;
          margin-bottom: 2rem;
          color: #1a202c;
        }

        .refs ol {
          list-style: none;
          counter-reset: ref-counter;
          padding-left: 0;
        }

        .refs ol li {
          counter-increment: ref-counter;
          margin-bottom: 1.5rem;
          padding-left: 3rem;
          position: relative;
          font-size: 0.95rem;
          line-height: 1.7;
          color: #4b5563;
        }

        .refs ol li::before {
          content: "[" counter(ref-counter) "]";
          position: absolute;
          left: 0;
          font-weight: 700;
          color: #3b82f6;
          background: #eff6ff;
          padding: 0.25rem 0.5rem;
          border-radius: 4px;
        }

        .refs ol li em {
          color: #374151;
          font-weight: 500;
        }

        .refs ol li a {
          color: #3b82f6;
          text-decoration: none;
          word-break: break-all;
          transition: color 0.2s;
        }

        .refs ol li a:hover {
          color: #1e40af;
          text-decoration: underline;
        }

        @media (max-width: 768px) {
          .blog-post-content {
            font-size: 1rem;
          }

          .blog-post-content h2 {
            font-size: 1.75rem;
          }

          .blog-post-content h3 {
            font-size: 1.25rem;
          }

          .blog-post-content .subheading {
            font-size: 1.1rem;
            padding: 1.5rem;
          }
        }
