@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,400&family=Open+Sans:wght@300;400;500;600;700&display=swap');

        body {
            font-family: 'Open Sans', sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Merriweather', serif;
        }

/* Blog Post Content Styling */
        .blog-content {
            font-size: 1.125rem;
            line-height: 1.8;
            color: #1d1d1f;
        }

.blog-content h1,
        .blog-content h2,
        .blog-content h3,
        .blog-content h4,
        .blog-content h5,
        .blog-content h6 {
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-weight: 700;
            color: #000;
        }

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

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

.blog-content p {
            margin-bottom: 1.5rem;
        }

.blog-content ul,
        .blog-content ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }

.blog-content li {
            margin-bottom: 0.5rem;
        }

.blog-content a {
            color: #c9a961;
            text-decoration: underline;
        }

.blog-content a:hover {
            color: #b8984d;
        }

.blog-content img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 2rem 0;
        }

.blog-content blockquote {
            border-left: 4px solid #c9a961;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #4a4a4a;
        }

.blog-content code {
            background: #f5f5f7;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-family: 'Courier New', monospace;
            font-size: 0.9em;
        }

.blog-content pre {
            background: #1d1d1f;
            color: #f5f5f7;
            padding: 1.5rem;
            border-radius: 8px;
            overflow-x: auto;
            margin: 2rem 0;
        }

.blog-content pre code {
            background: transparent;
            padding: 0;
            color: #f5f5f7;
        }

/* Loading skeleton */
        .skeleton {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }

@keyframes loading {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }

/* Smooth transitions */
        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }

@keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }